This commit is contained in:
Bahru 2025-08-01 00:30:05 +07:00
parent 93b41bfa94
commit e868c152e0
48 changed files with 372 additions and 34 deletions

0
.gitignore vendored Normal file
View file

13
.idea/.idea.lilos-stitcher/.idea/.gitignore generated vendored Normal file
View file

@ -0,0 +1,13 @@
# Default ignored files
/shelf/
/workspace.xml
# Rider ignored files
/contentModel.xml
/.idea.lilos-stitcher.iml
/modules.xml
/projectSettingsUpdater.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

1
.idea/.idea.lilos-stitcher/.idea/.name generated Normal file
View file

@ -0,0 +1 @@
lilos-stitcher

11
.idea/.idea.lilos-stitcher/.idea/aws.xml generated Normal file
View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="accountSettings">
<option name="activeRegion" value="us-east-1" />
<option name="recentlyUsedRegions">
<list>
<option value="us-east-1" />
</list>
</option>
</component>
</project>

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
</project>

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="UserContentModel">
<attachedFolders />
<explicitIncludes />
<explicitExcludes />
</component>
</project>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

View file

@ -1,17 +1,18 @@
using lilos_stitcher;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
namespace LiloStitcher; namespace LiloStitcher;
[ApiController] [ApiController]
[Route( "api/image" )] [Route( "api/image" )]
public sealed class LiloController( LiloStitcher stitcher ) : ControllerBase public sealed class LiloController( lilos_stitcher.LiloStitcher stitcher ) : ControllerBase
{ {
[HttpPost] [HttpPost]
[Route( "generate" )] [Route( "generate" )]
[Produces( "image/png" )] [Produces( "image/png" )]
public async Task<IActionResult> Generate( [FromBody] GenerateRequest payload, CancellationToken ct ) public async Task<IActionResult> Generate( [FromBody] GenerateRequest payload, CancellationToken ct )
{ {
var png = await stitcher.CreateImageAsync( payload, ct ); string path = await stitcher.CreateImageAsync( payload, ct );
return File( png, "image/png" ); return PhysicalFile(path, "image/png", enableRangeProcessing: false);
} }
} }

View file

@ -1,7 +1,7 @@
using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.Caching.Memory;
using NetVips; using NetVips;
namespace LiloStitcher; namespace lilos_stitcher;
public sealed record GenerateRequest( public sealed record GenerateRequest(
string Canvas_Rect, string Canvas_Rect,
@ -60,10 +60,12 @@ public class TileLoader( TileCache cache, string assetDir )
public class LiloStitcher( TileLoader loader ) public class LiloStitcher( TileLoader loader )
{ {
public async Task<byte[]> CreateImageAsync( GenerateRequest req, CancellationToken ct ) public async Task<string> CreateImageAsync( GenerateRequest req, CancellationToken ct )
{ {
(int rowMin, int colMin, int rows, int cols) = ParseCanvas( req.Canvas_Rect ); (int rowMin, int colMin, int rows, int cols) = ParseCanvas( req.Canvas_Rect );
Validate(req.Crop_Offset, nameof(req.Crop_Offset));
Validate(req.Crop_Size, nameof(req.Crop_Size));
double scale = req.Output_Scale; double scale = req.Output_Scale;
if( scale <= 0 || scale > 1 ) if( scale <= 0 || scale > 1 )
throw new ArgumentOutOfRangeException( nameof( req.Output_Scale ) ); throw new ArgumentOutOfRangeException( nameof( req.Output_Scale ) );
@ -82,8 +84,8 @@ public class LiloStitcher( TileLoader loader )
var mosaic = Image.Arrayjoin( tiles.ToArray(), across: cols ); var mosaic = Image.Arrayjoin( tiles.ToArray(), across: cols );
int offsetX = (int)Math.Truncate( req.Output_Scale * mosaic.Width ); int offsetX = (int)Math.Truncate( req.Crop_Offset[0] * mosaic.Width );
int offsetY = (int)Math.Truncate( req.Output_Scale * mosaic.Height ); int offsetY = (int)Math.Truncate( req.Crop_Offset[1] * mosaic.Height );
int restWidth = mosaic.Width - offsetX; int restWidth = mosaic.Width - offsetX;
int restHeight = mosaic.Height - offsetY; int restHeight = mosaic.Height - offsetY;
@ -96,13 +98,9 @@ public class LiloStitcher( TileLoader loader )
var cropped = mosaic.Crop( cropX, cropY, cropWidth, cropHeight ); var cropped = mosaic.Crop( cropX, cropY, cropWidth, cropHeight );
var finalImg = scale < 1.0 ? cropped.Resize( scale ) : cropped; string path = Path.Combine(Path.GetTempPath(), $"mosaic-{Guid.NewGuid():N}.png");
cropped.WriteToFile(path);
string tmp = Path.GetTempFileName() + ".png"; return path;
finalImg.WriteToFile( tmp );
byte[] result = await File.ReadAllBytesAsync( tmp, ct );
File.Delete( tmp );
return result;
} }
private static (int rowMin, int colMin, int rows, int cols) ParseCanvas( string rect ) private static (int rowMin, int colMin, int rows, int cols) ParseCanvas( string rect )

View file

@ -1,19 +1,20 @@
using lilos_stitcher;
var builder = WebApplication.CreateBuilder(args); var builder = WebApplication.CreateBuilder(args);
// Add services to the container. NetVips.NetVips.Init();
// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi NetVips.NetVips.Concurrency = 3;
// builder.Services.AddOpenApi();
builder.Services.AddControllers().AddJsonOptions(options => options.JsonSerializerOptions.PropertyNameCaseInsensitive = true); builder.Services.AddControllers().AddJsonOptions(o => o.JsonSerializerOptions.PropertyNameCaseInsensitive = true);
builder.Services.AddMemoryCache(o => o.SizeLimit = 256 * 1024 * 1024); builder.Services.AddMemoryCache(o => o.SizeLimit = 128L * 1024 * 1024);
builder.Services.AddSingleton<LiloStitcher.TileCache>(); string assetDir = Path.GetFullPath("../tiles1705");
builder.Services.AddSingleton<LiloStitcher.TileLoader>();
builder.Services.AddSingleton<LiloStitcher.LiloStitcher>(); builder.Services.AddSingleton<TileCache>();
builder.Services.AddSingleton(provider => new TileLoader(provider.GetRequiredService<TileCache>(), assetDir));
builder.Services.AddSingleton<lilos_stitcher.LiloStitcher>();
var app = builder.Build(); var app = builder.Build();
app.MapControllers(); app.MapControllers();
app.Run(); app.Run();

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
bin/Debug/net9.0/NetVips.dll Executable file

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View file

@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

BIN
bin/Debug/net9.0/lilos-stitcher Executable file

Binary file not shown.

View file

@ -0,0 +1,182 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v9.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v9.0": {
"lilos-stitcher/1.0.0": {
"dependencies": {
"Microsoft.Extensions.Caching.Memory": "10.0.0-preview.6.25358.103",
"NetVips": "3.1.0",
"NetVips.Native.linux-x64": "8.17.1"
},
"runtime": {
"lilos-stitcher.dll": {}
}
},
"Microsoft.Extensions.Caching.Abstractions/10.0.0-preview.6.25358.103": {
"dependencies": {
"Microsoft.Extensions.Primitives": "10.0.0-preview.6.25358.103"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": {
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.25.35903"
}
}
},
"Microsoft.Extensions.Caching.Memory/10.0.0-preview.6.25358.103": {
"dependencies": {
"Microsoft.Extensions.Caching.Abstractions": "10.0.0-preview.6.25358.103",
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0-preview.6.25358.103",
"Microsoft.Extensions.Logging.Abstractions": "10.0.0-preview.6.25358.103",
"Microsoft.Extensions.Options": "10.0.0-preview.6.25358.103",
"Microsoft.Extensions.Primitives": "10.0.0-preview.6.25358.103"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": {
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.25.35903"
}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0-preview.6.25358.103": {
"runtime": {
"lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.25.35903"
}
}
},
"Microsoft.Extensions.Logging.Abstractions/10.0.0-preview.6.25358.103": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0-preview.6.25358.103",
"System.Diagnostics.DiagnosticSource": "10.0.0-preview.6.25358.103"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.25.35903"
}
}
},
"Microsoft.Extensions.Options/10.0.0-preview.6.25358.103": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0-preview.6.25358.103",
"Microsoft.Extensions.Primitives": "10.0.0-preview.6.25358.103"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Options.dll": {
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.25.35903"
}
}
},
"Microsoft.Extensions.Primitives/10.0.0-preview.6.25358.103": {
"runtime": {
"lib/net9.0/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.25.35903"
}
}
},
"NetVips/3.1.0": {
"runtime": {
"lib/net6.0/NetVips.dll": {
"assemblyVersion": "3.1.0.0",
"fileVersion": "3.1.0.0"
}
}
},
"NetVips.Native.linux-x64/8.17.1": {
"runtimeTargets": {
"runtimes/linux-x64/native/libvips.so.42": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"System.Diagnostics.DiagnosticSource/10.0.0-preview.6.25358.103": {
"runtime": {
"lib/net9.0/System.Diagnostics.DiagnosticSource.dll": {
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.25.35903"
}
}
}
}
},
"libraries": {
"lilos-stitcher/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.Extensions.Caching.Abstractions/10.0.0-preview.6.25358.103": {
"type": "package",
"serviceable": true,
"sha512": "sha512-XueBRYerg0fC13swErWCHB8zJ7feYt5R5Und/CjDy45DIccK7MvGJ2aSrtg+OUvPCUinJYphBaLiarfrLuIWfw==",
"path": "microsoft.extensions.caching.abstractions/10.0.0-preview.6.25358.103",
"hashPath": "microsoft.extensions.caching.abstractions.10.0.0-preview.6.25358.103.nupkg.sha512"
},
"Microsoft.Extensions.Caching.Memory/10.0.0-preview.6.25358.103": {
"type": "package",
"serviceable": true,
"sha512": "sha512-TnEV0E/xlGsAX2zXwdmBVyHcKCAXm7zlOXavdFF7HyHWf0qiReM1ZAvnCDGMERippHxqqUtXC3koZ2uz28UvhQ==",
"path": "microsoft.extensions.caching.memory/10.0.0-preview.6.25358.103",
"hashPath": "microsoft.extensions.caching.memory.10.0.0-preview.6.25358.103.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0-preview.6.25358.103": {
"type": "package",
"serviceable": true,
"sha512": "sha512-XrX5CQwI6dnGvmPJJxf/X1JxhPzRwdKKUf9onJKN+qyqP+wwH9floTgkckGdJxVV+jvnWeUgSJ6MZvQM6WmwSg==",
"path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0-preview.6.25358.103",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.0-preview.6.25358.103.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Abstractions/10.0.0-preview.6.25358.103": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ktG/8xOcrtBL176cYv6mzOL+YRSPySE8hcppHonAXYa8jf3lW/WmxfAUwK0WtUEl7MdYR8mbuEAbSg81crBq5Q==",
"path": "microsoft.extensions.logging.abstractions/10.0.0-preview.6.25358.103",
"hashPath": "microsoft.extensions.logging.abstractions.10.0.0-preview.6.25358.103.nupkg.sha512"
},
"Microsoft.Extensions.Options/10.0.0-preview.6.25358.103": {
"type": "package",
"serviceable": true,
"sha512": "sha512-V3IaV1wPAVpVfDrOK0b4xKZVEHMFlYSL0Wfx6/Tm8bt4ovodorVqHe/EvsogWmsbcj1XhJvFuWXVDuG479i2vw==",
"path": "microsoft.extensions.options/10.0.0-preview.6.25358.103",
"hashPath": "microsoft.extensions.options.10.0.0-preview.6.25358.103.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/10.0.0-preview.6.25358.103": {
"type": "package",
"serviceable": true,
"sha512": "sha512-iSpD+A130hPiq20tbqKGujXtFY1Zc3q/R/AlN3qPpUYwmxEZbybykQ+YpiDzdyoGvo0gp/4vtk/Hqcvkwt53Gw==",
"path": "microsoft.extensions.primitives/10.0.0-preview.6.25358.103",
"hashPath": "microsoft.extensions.primitives.10.0.0-preview.6.25358.103.nupkg.sha512"
},
"NetVips/3.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/8vwrHjZYO8ec2hXtHxzoreA8TGeSUlcbM+EBc951jlhNQ3n6KfjmZSDQ4T3Is2YS/+FPQrAEUnMIXV2IhxRfg==",
"path": "netvips/3.1.0",
"hashPath": "netvips.3.1.0.nupkg.sha512"
},
"NetVips.Native.linux-x64/8.17.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-i5enEqi0SDWKoinxP/cyjq7T4Vo8bDCfvv5Nf5smBdynAj6EuyNxDaZ54inRjcRD2pA8hZV7mW9gI5H/v/Ls2w==",
"path": "netvips.native.linux-x64/8.17.1",
"hashPath": "netvips.native.linux-x64.8.17.1.nupkg.sha512"
},
"System.Diagnostics.DiagnosticSource/10.0.0-preview.6.25358.103": {
"type": "package",
"serviceable": true,
"sha512": "sha512-SmleXl7WsR4hURxBWoTqeCVt8B+doEKMJRev9fxbqdSi5r18kTX/wYqsNePbq/eJeoq3x8UlngVwxwXplYXXfg==",
"path": "system.diagnostics.diagnosticsource/10.0.0-preview.6.25358.103",
"hashPath": "system.diagnostics.diagnosticsource.10.0.0-preview.6.25358.103.nupkg.sha512"
}
}
}

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,19 @@
{
"runtimeOptions": {
"tfm": "net9.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "9.0.0"
},
{
"name": "Microsoft.AspNetCore.App",
"version": "9.0.0"
}
],
"configProperties": {
"System.GC.Server": true,
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

View file

@ -0,0 +1,5 @@
{
"Version": 1,
"ManifestType": "Build",
"Endpoints": []
}

Binary file not shown.

View file

@ -5,13 +5,14 @@
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>lilos_stitcher</RootNamespace> <RootNamespace>lilos_stitcher</RootNamespace>
<LangVersion>preview</LangVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.0-preview.6.25358.103" /> <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.0-preview.6.25358.103" />
<PackageReference Include="NetVips" Version="3.1.0" /> <PackageReference Include="NetVips" Version="3.1.0" />
<PackageReference Include="NetVips.Native.linux-arm64" Version="8.17.1" /> <PackageReference Include="NetVips.Native.linux-arm64" Version="8.17.1" />
<!-- <PackageReference Include="NetVips.Native.linux-x64" Version="8.17.1" /> --> <!-- <PackageReference Include="NetVips.Native.linux-x64" Version="8.17.1" />-->
</ItemGroup> </ItemGroup>

BIN
obj/Debug/net9.0/apphost Executable file

Binary file not shown.

View file

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("lilos-stitcher")] [assembly: System.Reflection.AssemblyCompanyAttribute("lilos-stitcher")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+52e830b4595e0cb251e3dfbdcbc9d19375a383b5")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+93b41bfa9406fe943709d001f302600d189dc829")]
[assembly: System.Reflection.AssemblyProductAttribute("lilos-stitcher")] [assembly: System.Reflection.AssemblyProductAttribute("lilos-stitcher")]
[assembly: System.Reflection.AssemblyTitleAttribute("lilos-stitcher")] [assembly: System.Reflection.AssemblyTitleAttribute("lilos-stitcher")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View file

@ -1 +1 @@
e411f29bb1f176555042f33adf388d33a6de8d142d88cbab7e6e2dd4102f6e62 3dc6c83470f3eadbd02211471dd5a3fe0b626fa41426a0d6d362ecd1724e81db

View file

@ -0,0 +1 @@
613b45ccb9660990d13271b1a0505db6865bd3897a2f4a0d6579f0c78c603672

View file

@ -0,0 +1,39 @@
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/appsettings.Development.json
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/appsettings.json
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/lilos-stitcher.staticwebassets.endpoints.json
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/lilos-stitcher
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/lilos-stitcher.deps.json
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/lilos-stitcher.runtimeconfig.json
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/lilos-stitcher.dll
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/lilos-stitcher.pdb
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/Microsoft.Extensions.Options.dll
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/NetVips.dll
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/System.Diagnostics.DiagnosticSource.dll
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/bin/Debug/net9.0/runtimes/linux-x64/native/libvips.so.42
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/lilos-stitcher.csproj.AssemblyReference.cache
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/lilos-stitcher.GeneratedMSBuildEditorConfig.editorconfig
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/lilos-stitcher.AssemblyInfoInputs.cache
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/lilos-stitcher.AssemblyInfo.cs
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/lilos-stitcher.csproj.CoreCompileInputs.cache
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/lilos-stitcher.MvcApplicationPartsAssemblyInfo.cache
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/scopedcss/bundle/lilos-stitcher.styles.css
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/staticwebassets.build.json
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/staticwebassets.development.json
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/staticwebassets.build.endpoints.json
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/staticwebassets/msbuild.lilos-stitcher.Microsoft.AspNetCore.StaticWebAssets.props
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/staticwebassets/msbuild.lilos-stitcher.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/staticwebassets/msbuild.build.lilos-stitcher.props
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.lilos-stitcher.props
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.lilos-stitcher.props
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/staticwebassets.pack.json
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/lilos-st.76765E0E.Up2Date
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/lilos-stitcher.dll
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/refint/lilos-stitcher.dll
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/lilos-stitcher.pdb
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/lilos-stitcher.genruntimeconfig.cache
/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/Debug/net9.0/ref/lilos-stitcher.dll

Binary file not shown.

View file

@ -0,0 +1 @@
cb59882c55c199cb178155babea6ea543818ebcd764991434b53435bf6eec82f

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,5 @@
{
"Version": 1,
"ManifestType": "Build",
"Endpoints": []
}

View file

@ -0,0 +1,12 @@
{
"Version": 1,
"Hash": "oq4tqB+/i4rWgpvN6rrplq3J0ZkN+Kou7CVCH2kbC4Y=",
"Source": "lilos-stitcher",
"BasePath": "_content/lilos-stitcher",
"Mode": "Default",
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [],
"DiscoveryPatterns": [],
"Assets": [],
"Endpoints": []
}

View file

@ -0,0 +1,4 @@
<Project>
<Import Project="Microsoft.AspNetCore.StaticWebAssetEndpoints.props" />
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
</Project>

View file

@ -0,0 +1,3 @@
<Project>
<Import Project="../build/lilos-stitcher.props" />
</Project>

View file

@ -0,0 +1,3 @@
<Project>
<Import Project="../buildMultiTargeting/lilos-stitcher.props" />
</Project>

View file

@ -0,0 +1 @@
"restore":{"projectUniqueName":"/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/lilos-stitcher.csproj","projectName":"lilos-stitcher","projectPath":"/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/lilos-stitcher.csproj","outputPath":"/home/mbsbahru/Documents/Formulatrix Trivia/stitch-a-ton challenge/lilos-stitcher-aspnet/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"/home/mbsbahru/nuget-local":{},"/usr/lib/dotnet/library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"Microsoft.Extensions.Caching.Memory":{"target":"Package","version":"[10.0.0-preview.6.25358.103, )"},"NetVips":{"target":"Package","version":"[3.1.0, )"},"NetVips.Native.linux-arm64":{"target":"Package","version":"[8.17.1, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/lib/dotnet/sdk/9.0.108/PortableRuntimeIdentifierGraph.json"}}

View file

@ -0,0 +1 @@
17539815751780096

View file

@ -0,0 +1 @@
17539828049734351