diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3fffd79 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ +# Use the official ASP.NET Core runtime as a parent image +FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base +WORKDIR /app +EXPOSE 5000 + +# Use the SDK image to build the app +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +WORKDIR /src +COPY ["douwco.be.csproj", "./"] +RUN dotnet restore "./douwco.be.csproj" +COPY . . +WORKDIR "/src/." +RUN dotnet build "douwco.be.csproj" -c Release -o /app/build + +FROM build AS publish +RUN dotnet publish "douwco.be.csproj" -c Release -o /app/publish + +# Use the runtime image to run the app +FROM base AS final +WORKDIR /app +COPY --from=publish /app/publish . +ENTRYPOINT ["dotnet", "douwco.be.dll"] diff --git a/Program.cs b/Program.cs index 087a26a..7bb285d 100644 --- a/Program.cs +++ b/Program.cs @@ -1,4 +1,5 @@ var builder = WebApplication.CreateBuilder(args); +builder.WebHost.UseUrls("http://*:5000"); var app = builder.Build(); app.UseStaticFiles(); diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json index a5d390a..4e80af1 100644 --- a/Properties/launchSettings.json +++ b/Properties/launchSettings.json @@ -5,16 +5,7 @@ "commandName": "Project", "dotnetRunMessages": true, "launchBrowser": true, - "applicationUrl": "http://localhost:5000;http://*:80", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, - "https": { - "commandName": "Project", - "dotnetRunMessages": true, - "launchBrowser": true, - "applicationUrl": "https://localhost:7206;http://localhost:5102", + "applicationUrl": "http://localhost:5000", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/bin/Debug/net9.0/appsettings.Development.json b/bin/Debug/net8.0/appsettings.Development.json similarity index 93% rename from bin/Debug/net9.0/appsettings.Development.json rename to bin/Debug/net8.0/appsettings.Development.json index ff66ba6..0c208ae 100644 --- a/bin/Debug/net9.0/appsettings.Development.json +++ b/bin/Debug/net8.0/appsettings.Development.json @@ -1,8 +1,8 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -} +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/bin/Debug/net9.0/appsettings.json b/bin/Debug/net8.0/appsettings.json similarity index 94% rename from bin/Debug/net9.0/appsettings.json rename to bin/Debug/net8.0/appsettings.json index 4d56694..10f68b8 100644 --- a/bin/Debug/net9.0/appsettings.json +++ b/bin/Debug/net8.0/appsettings.json @@ -1,9 +1,9 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*" -} +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/bin/Debug/net9.0/douwco.be.deps.json b/bin/Debug/net8.0/douwco.be.deps.json similarity index 81% rename from bin/Debug/net9.0/douwco.be.deps.json rename to bin/Debug/net8.0/douwco.be.deps.json index e14f708..df9d283 100644 --- a/bin/Debug/net9.0/douwco.be.deps.json +++ b/bin/Debug/net8.0/douwco.be.deps.json @@ -1,11 +1,11 @@ { "runtimeTarget": { - "name": ".NETCoreApp,Version=v9.0", + "name": ".NETCoreApp,Version=v8.0", "signature": "" }, "compilationOptions": {}, "targets": { - ".NETCoreApp,Version=v9.0": { + ".NETCoreApp,Version=v8.0": { "douwco.be/1.0.0": { "runtime": { "douwco.be.dll": {} diff --git a/bin/Debug/net8.0/douwco.be.dll b/bin/Debug/net8.0/douwco.be.dll new file mode 100644 index 0000000..ec1148e Binary files /dev/null and b/bin/Debug/net8.0/douwco.be.dll differ diff --git a/bin/Debug/net8.0/douwco.be.exe b/bin/Debug/net8.0/douwco.be.exe new file mode 100644 index 0000000..de6d2ee Binary files /dev/null and b/bin/Debug/net8.0/douwco.be.exe differ diff --git a/bin/Debug/net8.0/douwco.be.pdb b/bin/Debug/net8.0/douwco.be.pdb new file mode 100644 index 0000000..48d73ea Binary files /dev/null and b/bin/Debug/net8.0/douwco.be.pdb differ diff --git a/bin/Debug/net9.0/douwco.be.runtimeconfig.json b/bin/Debug/net8.0/douwco.be.runtimeconfig.json similarity index 81% rename from bin/Debug/net9.0/douwco.be.runtimeconfig.json rename to bin/Debug/net8.0/douwco.be.runtimeconfig.json index 6925b65..5e604c7 100644 --- a/bin/Debug/net9.0/douwco.be.runtimeconfig.json +++ b/bin/Debug/net8.0/douwco.be.runtimeconfig.json @@ -1,14 +1,14 @@ { "runtimeOptions": { - "tfm": "net9.0", + "tfm": "net8.0", "frameworks": [ { "name": "Microsoft.NETCore.App", - "version": "9.0.0" + "version": "8.0.0" }, { "name": "Microsoft.AspNetCore.App", - "version": "9.0.0" + "version": "8.0.0" } ], "configProperties": { diff --git a/bin/Debug/net8.0/douwco.be.staticwebassets.runtime.json b/bin/Debug/net8.0/douwco.be.staticwebassets.runtime.json new file mode 100644 index 0000000..864bf51 --- /dev/null +++ b/bin/Debug/net8.0/douwco.be.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["D:\\Projects\\douwco.be\\wwwroot\\"],"Root":{"Children":{"douwe_ravers.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"douwe_ravers.html"},"Patterns":null},"font":{"Children":{"brass-mono.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"font/brass-mono.woff"},"Patterns":null},"UbuntuMono-Regular.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"font/UbuntuMono-Regular.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"games.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"games.html"},"Patterns":null},"home.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"home.html"},"Patterns":null},"img":{"Children":{"douwco_logo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/douwco_logo.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"portofolio.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"portofolio.html"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"README.md"},"Patterns":null},"script.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"script.js"},"Patterns":null},"style.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"style.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/bin/Debug/net9.0/douwco.be b/bin/Debug/net9.0/douwco.be deleted file mode 100755 index 7d3164b..0000000 Binary files a/bin/Debug/net9.0/douwco.be and /dev/null differ diff --git a/bin/Debug/net9.0/douwco.be.dll b/bin/Debug/net9.0/douwco.be.dll deleted file mode 100644 index 4a12669..0000000 Binary files a/bin/Debug/net9.0/douwco.be.dll and /dev/null differ diff --git a/bin/Debug/net9.0/douwco.be.pdb b/bin/Debug/net9.0/douwco.be.pdb deleted file mode 100644 index 4f0a743..0000000 Binary files a/bin/Debug/net9.0/douwco.be.pdb and /dev/null differ diff --git a/bin/Debug/net9.0/douwco.be.staticwebassets.endpoints.json b/bin/Debug/net9.0/douwco.be.staticwebassets.endpoints.json deleted file mode 100644 index 5d11e42..0000000 --- a/bin/Debug/net9.0/douwco.be.staticwebassets.endpoints.json +++ /dev/null @@ -1,2554 +0,0 @@ -{ - "Version": 1, - "ManifestType": "Build", - "Endpoints": [ - { - "Route": "README.hepb3cduy8.md", - "AssetFile": "README.md.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.018867924528" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "52" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=\"" - }, - { - "Name": "ETag", - "Value": "W/\"WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "hepb3cduy8" - }, - { - "Name": "integrity", - "Value": "sha256-WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=" - }, - { - "Name": "label", - "Value": "README.md" - } - ] - }, - { - "Route": "README.hepb3cduy8.md", - "AssetFile": "README.md", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "32" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "hepb3cduy8" - }, - { - "Name": "integrity", - "Value": "sha256-WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=" - }, - { - "Name": "label", - "Value": "README.md" - } - ] - }, - { - "Route": "README.hepb3cduy8.md.gz", - "AssetFile": "README.md.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "52" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "hepb3cduy8" - }, - { - "Name": "integrity", - "Value": "sha256-qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=" - }, - { - "Name": "label", - "Value": "README.md.gz" - } - ] - }, - { - "Route": "README.md", - "AssetFile": "README.md.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.018867924528" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "52" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=\"" - }, - { - "Name": "ETag", - "Value": "W/\"WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=" - } - ] - }, - { - "Route": "README.md", - "AssetFile": "README.md", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "32" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=" - } - ] - }, - { - "Route": "README.md.gz", - "AssetFile": "README.md.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "52" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=" - } - ] - }, - { - "Route": "douwe_ravers.html", - "AssetFile": "douwe_ravers.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "douwe_ravers.html", - "AssetFile": "douwe_ravers.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "douwe_ravers.html.gz", - "AssetFile": "douwe_ravers.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - } - ] - }, - { - "Route": "douwe_ravers.jzwq7d0l4u.html", - "AssetFile": "douwe_ravers.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - }, - { - "Name": "label", - "Value": "douwe_ravers.html" - } - ] - }, - { - "Route": "douwe_ravers.jzwq7d0l4u.html", - "AssetFile": "douwe_ravers.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - }, - { - "Name": "label", - "Value": "douwe_ravers.html" - } - ] - }, - { - "Route": "douwe_ravers.jzwq7d0l4u.html.gz", - "AssetFile": "douwe_ravers.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - }, - { - "Name": "label", - "Value": "douwe_ravers.html.gz" - } - ] - }, - { - "Route": "font/UbuntuMono-Regular.76cv3e2rew.woff", - "AssetFile": "font/UbuntuMono-Regular.woff", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "106612" - }, - { - "Name": "Content-Type", - "Value": "application/font-woff" - }, - { - "Name": "ETag", - "Value": "\"ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:48:37 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "76cv3e2rew" - }, - { - "Name": "integrity", - "Value": "sha256-ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE=" - }, - { - "Name": "label", - "Value": "font/UbuntuMono-Regular.woff" - } - ] - }, - { - "Route": "font/UbuntuMono-Regular.woff", - "AssetFile": "font/UbuntuMono-Regular.woff", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "106612" - }, - { - "Name": "Content-Type", - "Value": "application/font-woff" - }, - { - "Name": "ETag", - "Value": "\"ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:48:37 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE=" - } - ] - }, - { - "Route": "font/brass-mono.thnfwt3saa.woff", - "AssetFile": "font/brass-mono.woff", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "16088" - }, - { - "Name": "Content-Type", - "Value": "application/font-woff" - }, - { - "Name": "ETag", - "Value": "\"sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:38:59 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "thnfwt3saa" - }, - { - "Name": "integrity", - "Value": "sha256-sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48=" - }, - { - "Name": "label", - "Value": "font/brass-mono.woff" - } - ] - }, - { - "Route": "font/brass-mono.woff", - "AssetFile": "font/brass-mono.woff", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "16088" - }, - { - "Name": "Content-Type", - "Value": "application/font-woff" - }, - { - "Name": "ETag", - "Value": "\"sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:38:59 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48=" - } - ] - }, - { - "Route": "games.html", - "AssetFile": "games.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "games.html", - "AssetFile": "games.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "games.html.gz", - "AssetFile": "games.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - } - ] - }, - { - "Route": "games.jzwq7d0l4u.html", - "AssetFile": "games.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - }, - { - "Name": "label", - "Value": "games.html" - } - ] - }, - { - "Route": "games.jzwq7d0l4u.html", - "AssetFile": "games.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - }, - { - "Name": "label", - "Value": "games.html" - } - ] - }, - { - "Route": "games.jzwq7d0l4u.html.gz", - "AssetFile": "games.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - }, - { - "Name": "label", - "Value": "games.html.gz" - } - ] - }, - { - "Route": "home.html", - "AssetFile": "home.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.002123142251" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "470" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=\"" - }, - { - "Name": "ETag", - "Value": "W/\"6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=" - } - ] - }, - { - "Route": "home.html", - "AssetFile": "home.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "1623" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=" - } - ] - }, - { - "Route": "home.html.gz", - "AssetFile": "home.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "470" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=" - } - ] - }, - { - "Route": "home.m8e4s056it.html", - "AssetFile": "home.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.002123142251" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "470" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=\"" - }, - { - "Name": "ETag", - "Value": "W/\"6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "m8e4s056it" - }, - { - "Name": "integrity", - "Value": "sha256-6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=" - }, - { - "Name": "label", - "Value": "home.html" - } - ] - }, - { - "Route": "home.m8e4s056it.html", - "AssetFile": "home.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "1623" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "m8e4s056it" - }, - { - "Name": "integrity", - "Value": "sha256-6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=" - }, - { - "Name": "label", - "Value": "home.html" - } - ] - }, - { - "Route": "home.m8e4s056it.html.gz", - "AssetFile": "home.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "470" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "m8e4s056it" - }, - { - "Name": "integrity", - "Value": "sha256-x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=" - }, - { - "Name": "label", - "Value": "home.html.gz" - } - ] - }, - { - "Route": "img/douwco_logo.ez53qs9bvq.svg", - "AssetFile": "img/douwco_logo.svg.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.000740192450" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "1350" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=\"" - }, - { - "Name": "ETag", - "Value": "W/\"Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "ez53qs9bvq" - }, - { - "Name": "integrity", - "Value": "sha256-Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=" - }, - { - "Name": "label", - "Value": "img/douwco_logo.svg" - } - ] - }, - { - "Route": "img/douwco_logo.ez53qs9bvq.svg", - "AssetFile": "img/douwco_logo.svg", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "3568" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "ez53qs9bvq" - }, - { - "Name": "integrity", - "Value": "sha256-Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=" - }, - { - "Name": "label", - "Value": "img/douwco_logo.svg" - } - ] - }, - { - "Route": "img/douwco_logo.ez53qs9bvq.svg.gz", - "AssetFile": "img/douwco_logo.svg.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "1350" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "ez53qs9bvq" - }, - { - "Name": "integrity", - "Value": "sha256-xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=" - }, - { - "Name": "label", - "Value": "img/douwco_logo.svg.gz" - } - ] - }, - { - "Route": "img/douwco_logo.svg", - "AssetFile": "img/douwco_logo.svg.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.000740192450" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "1350" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=\"" - }, - { - "Name": "ETag", - "Value": "W/\"Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=" - } - ] - }, - { - "Route": "img/douwco_logo.svg", - "AssetFile": "img/douwco_logo.svg", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=3600, must-revalidate" - }, - { - "Name": "Content-Length", - "Value": "3568" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=" - } - ] - }, - { - "Route": "img/douwco_logo.svg.gz", - "AssetFile": "img/douwco_logo.svg.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "1350" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=" - } - ] - }, - { - "Route": "portofolio.html", - "AssetFile": "portofolio.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "portofolio.html", - "AssetFile": "portofolio.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "portofolio.html.gz", - "AssetFile": "portofolio.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - } - ] - }, - { - "Route": "portofolio.jzwq7d0l4u.html", - "AssetFile": "portofolio.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - }, - { - "Name": "label", - "Value": "portofolio.html" - } - ] - }, - { - "Route": "portofolio.jzwq7d0l4u.html", - "AssetFile": "portofolio.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - }, - { - "Name": "label", - "Value": "portofolio.html" - } - ] - }, - { - "Route": "portofolio.jzwq7d0l4u.html.gz", - "AssetFile": "portofolio.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - }, - { - "Name": "label", - "Value": "portofolio.html.gz" - } - ] - }, - { - "Route": "script.5ipweew5fc.js", - "AssetFile": "script.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "1.000000000000" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "ETag", - "Value": "W/\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "5ipweew5fc" - }, - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - }, - { - "Name": "label", - "Value": "script.js" - } - ] - }, - { - "Route": "script.5ipweew5fc.js", - "AssetFile": "script.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "5ipweew5fc" - }, - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - }, - { - "Name": "label", - "Value": "script.js" - } - ] - }, - { - "Route": "script.5ipweew5fc.js.gz", - "AssetFile": "script.js.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "5ipweew5fc" - }, - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - }, - { - "Name": "label", - "Value": "script.js.gz" - } - ] - }, - { - "Route": "script.js", - "AssetFile": "script.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "1.000000000000" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "ETag", - "Value": "W/\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - } - ] - }, - { - "Route": "script.js", - "AssetFile": "script.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - } - ] - }, - { - "Route": "script.js.gz", - "AssetFile": "script.js.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - } - ] - }, - { - "Route": "style.css", - "AssetFile": "style.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.002493765586" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "400" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=\"" - }, - { - "Name": "ETag", - "Value": "W/\"Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=" - } - ] - }, - { - "Route": "style.css", - "AssetFile": "style.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "876" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=" - } - ] - }, - { - "Route": "style.css.gz", - "AssetFile": "style.css.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "400" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=" - } - ] - }, - { - "Route": "style.yjwmstgw6w.css", - "AssetFile": "style.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.002493765586" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "400" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=\"" - }, - { - "Name": "ETag", - "Value": "W/\"Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "yjwmstgw6w" - }, - { - "Name": "integrity", - "Value": "sha256-Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=" - }, - { - "Name": "label", - "Value": "style.css" - } - ] - }, - { - "Route": "style.yjwmstgw6w.css", - "AssetFile": "style.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "876" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "yjwmstgw6w" - }, - { - "Name": "integrity", - "Value": "sha256-Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=" - }, - { - "Name": "label", - "Value": "style.css" - } - ] - }, - { - "Route": "style.yjwmstgw6w.css.gz", - "AssetFile": "style.css.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "400" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "yjwmstgw6w" - }, - { - "Name": "integrity", - "Value": "sha256-MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=" - }, - { - "Name": "label", - "Value": "style.css.gz" - } - ] - } - ] -} \ No newline at end of file diff --git a/bin/Debug/net9.0/douwco.be.staticwebassets.runtime.json b/bin/Debug/net9.0/douwco.be.staticwebassets.runtime.json deleted file mode 100644 index ba28c40..0000000 --- a/bin/Debug/net9.0/douwco.be.staticwebassets.runtime.json +++ /dev/null @@ -1 +0,0 @@ -{"ContentRoots":["/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/","/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/"],"Root":{"Children":{"douwe_ravers.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"douwe_ravers.html"},"Patterns":null},"font":{"Children":{"brass-mono.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"font/brass-mono.woff"},"Patterns":null},"UbuntuMono-Regular.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"font/UbuntuMono-Regular.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"games.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"games.html"},"Patterns":null},"home.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"home.html"},"Patterns":null},"img":{"Children":{"douwco_logo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/douwco_logo.svg"},"Patterns":null},"douwco_logo.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"usnse4ln3x-ez53qs9bvq.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"portofolio.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"portofolio.html"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"README.md"},"Patterns":null},"script.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"script.js"},"Patterns":null},"style.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"style.css"},"Patterns":null},"douwe_ravers.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w4h6f8f1fu-jzwq7d0l4u.gz"},"Patterns":null},"games.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qrrpzaznff-jzwq7d0l4u.gz"},"Patterns":null},"home.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l8hev951z0-m8e4s056it.gz"},"Patterns":null},"portofolio.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fr3xpx3ofb-jzwq7d0l4u.gz"},"Patterns":null},"README.md.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lrde2sl24r-hepb3cduy8.gz"},"Patterns":null},"script.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m4t22h92vv-5ipweew5fc.gz"},"Patterns":null},"style.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hhuroxhbn0-yjwmstgw6w.gz"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/douwco.be.csproj b/douwco.be.csproj index 08f689c..13d8127 100644 --- a/douwco.be.csproj +++ b/douwco.be.csproj @@ -1,7 +1,7 @@ - net9.0 + net8.0 enable enable diff --git a/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs similarity index 65% rename from obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs rename to obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs index 9e76325..2217181 100644 --- a/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs +++ b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -1,4 +1,4 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/obj/Debug/net8.0/apphost.exe b/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..de6d2ee Binary files /dev/null and b/obj/Debug/net8.0/apphost.exe differ diff --git a/obj/Debug/net9.0/douwco.be.AssemblyInfo.cs b/obj/Debug/net8.0/douwco.be.AssemblyInfo.cs similarity index 94% rename from obj/Debug/net9.0/douwco.be.AssemblyInfo.cs rename to obj/Debug/net8.0/douwco.be.AssemblyInfo.cs index 9a296c2..659c977 100644 --- a/obj/Debug/net9.0/douwco.be.AssemblyInfo.cs +++ b/obj/Debug/net8.0/douwco.be.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("douwco.be")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+0e81d2d8e92f98d6cf3227d87acf198e015fcc0a")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+40bc778f29b5fd32a057f7dc38a67df115078301")] [assembly: System.Reflection.AssemblyProductAttribute("douwco.be")] [assembly: System.Reflection.AssemblyTitleAttribute("douwco.be")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/obj/Debug/net8.0/douwco.be.AssemblyInfoInputs.cache b/obj/Debug/net8.0/douwco.be.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8282857 --- /dev/null +++ b/obj/Debug/net8.0/douwco.be.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b66fe98ff0bcbc21f45df330d12f67895e13da8431f3c9c8386e535dcf228e2b diff --git a/obj/Debug/net9.0/douwco.be.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net8.0/douwco.be.GeneratedMSBuildEditorConfig.editorconfig similarity index 67% rename from obj/Debug/net9.0/douwco.be.GeneratedMSBuildEditorConfig.editorconfig rename to obj/Debug/net8.0/douwco.be.GeneratedMSBuildEditorConfig.editorconfig index 500641a..82c4f97 100644 --- a/obj/Debug/net9.0/douwco.be.GeneratedMSBuildEditorConfig.editorconfig +++ b/obj/Debug/net8.0/douwco.be.GeneratedMSBuildEditorConfig.editorconfig @@ -1,5 +1,5 @@ is_global = true -build_property.TargetFramework = net9.0 +build_property.TargetFramework = net8.0 build_property.TargetPlatformMinVersion = build_property.UsingMicrosoftNETSdkWeb = true build_property.ProjectTypeGuids = @@ -9,13 +9,11 @@ build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = douwco.be build_property.RootNamespace = douwco.be -build_property.ProjectDir = /mnt/hdd/home_ext/douwe/Projects/douwco.be/ +build_property.ProjectDir = D:\Projects\douwco.be\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.RazorLangVersion = 9.0 +build_property.RazorLangVersion = 8.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = /mnt/hdd/home_ext/douwe/Projects/douwco.be +build_property.MSBuildProjectDirectory = D:\Projects\douwco.be build_property._RazorSourceGeneratorDebug = -build_property.EffectiveAnalysisLevelStyle = 9.0 -build_property.EnableCodeStyleSeverity = diff --git a/obj/Debug/net9.0/douwco.be.GlobalUsings.g.cs b/obj/Debug/net8.0/douwco.be.GlobalUsings.g.cs similarity index 100% rename from obj/Debug/net9.0/douwco.be.GlobalUsings.g.cs rename to obj/Debug/net8.0/douwco.be.GlobalUsings.g.cs diff --git a/obj/Debug/net9.0/douwco.be.MvcApplicationPartsAssemblyInfo.cache b/obj/Debug/net8.0/douwco.be.MvcApplicationPartsAssemblyInfo.cache similarity index 100% rename from obj/Debug/net9.0/douwco.be.MvcApplicationPartsAssemblyInfo.cache rename to obj/Debug/net8.0/douwco.be.MvcApplicationPartsAssemblyInfo.cache diff --git a/obj/Debug/net8.0/douwco.be.assets.cache b/obj/Debug/net8.0/douwco.be.assets.cache new file mode 100644 index 0000000..909e214 Binary files /dev/null and b/obj/Debug/net8.0/douwco.be.assets.cache differ diff --git a/obj/Debug/net8.0/douwco.be.csproj.CoreCompileInputs.cache b/obj/Debug/net8.0/douwco.be.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4a3c6c4 --- /dev/null +++ b/obj/Debug/net8.0/douwco.be.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1f255b5a9c24b1c1782c2fe3dad4e9939526a4dd5172a653d03bf9b5a5f24bc8 diff --git a/obj/Debug/net8.0/douwco.be.csproj.FileListAbsolute.txt b/obj/Debug/net8.0/douwco.be.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..737def4 --- /dev/null +++ b/obj/Debug/net8.0/douwco.be.csproj.FileListAbsolute.txt @@ -0,0 +1,27 @@ +D:\Projects\douwco.be\bin\Debug\net8.0\appsettings.Development.json +D:\Projects\douwco.be\bin\Debug\net8.0\appsettings.json +D:\Projects\douwco.be\bin\Debug\net8.0\douwco.be.staticwebassets.runtime.json +D:\Projects\douwco.be\bin\Debug\net8.0\douwco.be.exe +D:\Projects\douwco.be\bin\Debug\net8.0\douwco.be.deps.json +D:\Projects\douwco.be\bin\Debug\net8.0\douwco.be.runtimeconfig.json +D:\Projects\douwco.be\bin\Debug\net8.0\douwco.be.dll +D:\Projects\douwco.be\bin\Debug\net8.0\douwco.be.pdb +D:\Projects\douwco.be\obj\Debug\net8.0\douwco.be.GeneratedMSBuildEditorConfig.editorconfig +D:\Projects\douwco.be\obj\Debug\net8.0\douwco.be.AssemblyInfoInputs.cache +D:\Projects\douwco.be\obj\Debug\net8.0\douwco.be.AssemblyInfo.cs +D:\Projects\douwco.be\obj\Debug\net8.0\douwco.be.csproj.CoreCompileInputs.cache +D:\Projects\douwco.be\obj\Debug\net8.0\douwco.be.MvcApplicationPartsAssemblyInfo.cache +D:\Projects\douwco.be\obj\Debug\net8.0\douwco.be.sourcelink.json +D:\Projects\douwco.be\obj\Debug\net8.0\staticwebassets.build.json +D:\Projects\douwco.be\obj\Debug\net8.0\staticwebassets.development.json +D:\Projects\douwco.be\obj\Debug\net8.0\staticwebassets\msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssets.props +D:\Projects\douwco.be\obj\Debug\net8.0\staticwebassets\msbuild.build.douwco.be.props +D:\Projects\douwco.be\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.douwco.be.props +D:\Projects\douwco.be\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.douwco.be.props +D:\Projects\douwco.be\obj\Debug\net8.0\staticwebassets.pack.json +D:\Projects\douwco.be\obj\Debug\net8.0\scopedcss\bundle\douwco.be.styles.css +D:\Projects\douwco.be\obj\Debug\net8.0\douwco.be.dll +D:\Projects\douwco.be\obj\Debug\net8.0\refint\douwco.be.dll +D:\Projects\douwco.be\obj\Debug\net8.0\douwco.be.pdb +D:\Projects\douwco.be\obj\Debug\net8.0\douwco.be.genruntimeconfig.cache +D:\Projects\douwco.be\obj\Debug\net8.0\ref\douwco.be.dll diff --git a/obj/Debug/net8.0/douwco.be.dll b/obj/Debug/net8.0/douwco.be.dll new file mode 100644 index 0000000..ec1148e Binary files /dev/null and b/obj/Debug/net8.0/douwco.be.dll differ diff --git a/obj/Debug/net8.0/douwco.be.genruntimeconfig.cache b/obj/Debug/net8.0/douwco.be.genruntimeconfig.cache new file mode 100644 index 0000000..d6d2540 --- /dev/null +++ b/obj/Debug/net8.0/douwco.be.genruntimeconfig.cache @@ -0,0 +1 @@ +f03011ace398b33ce755c58a6ebcd777bb0a33dba8f4a89281822f02a6dbf595 diff --git a/obj/Debug/net8.0/douwco.be.pdb b/obj/Debug/net8.0/douwco.be.pdb new file mode 100644 index 0000000..48d73ea Binary files /dev/null and b/obj/Debug/net8.0/douwco.be.pdb differ diff --git a/obj/Debug/net8.0/douwco.be.sourcelink.json b/obj/Debug/net8.0/douwco.be.sourcelink.json new file mode 100644 index 0000000..99fa196 --- /dev/null +++ b/obj/Debug/net8.0/douwco.be.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"D:\\Projects\\douwco.be\\*":"https://raw.githubusercontent.com/DouweRavers/douwco.be/40bc778f29b5fd32a057f7dc38a67df115078301/*"}} \ No newline at end of file diff --git a/obj/Debug/net9.0/refint/douwco.be.dll b/obj/Debug/net8.0/ref/douwco.be.dll similarity index 89% rename from obj/Debug/net9.0/refint/douwco.be.dll rename to obj/Debug/net8.0/ref/douwco.be.dll index d4a12bd..e83623e 100644 Binary files a/obj/Debug/net9.0/refint/douwco.be.dll and b/obj/Debug/net8.0/ref/douwco.be.dll differ diff --git a/obj/Debug/net9.0/ref/douwco.be.dll b/obj/Debug/net8.0/refint/douwco.be.dll similarity index 89% rename from obj/Debug/net9.0/ref/douwco.be.dll rename to obj/Debug/net8.0/refint/douwco.be.dll index d4a12bd..e83623e 100644 Binary files a/obj/Debug/net9.0/ref/douwco.be.dll and b/obj/Debug/net8.0/refint/douwco.be.dll differ diff --git a/obj/Debug/net8.0/staticwebassets.build.json b/obj/Debug/net8.0/staticwebassets.build.json new file mode 100644 index 0000000..6c5cbf3 --- /dev/null +++ b/obj/Debug/net8.0/staticwebassets.build.json @@ -0,0 +1,210 @@ +{ + "Version": 1, + "Hash": "h4RRzL4IuTA8bhaiEkK5bU0Z10c3NZfS2iJ1rnslc44=", + "Source": "douwco.be", + "BasePath": "_content/douwco.be", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [ + { + "Name": "douwco.be\\wwwroot", + "Source": "douwco.be", + "ContentRoot": "D:\\Projects\\douwco.be\\wwwroot\\", + "BasePath": "_content/douwco.be", + "Pattern": "**" + } + ], + "Assets": [ + { + "Identity": "D:\\Projects\\douwco.be\\wwwroot\\douwe_ravers.html", + "SourceId": "douwco.be", + "SourceType": "Discovered", + "ContentRoot": "D:\\Projects\\douwco.be\\wwwroot\\", + "BasePath": "_content/douwco.be", + "RelativePath": "douwe_ravers.html", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "PreferTarget", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\douwe_ravers.html" + }, + { + "Identity": "D:\\Projects\\douwco.be\\wwwroot\\font\\brass-mono.woff", + "SourceId": "douwco.be", + "SourceType": "Discovered", + "ContentRoot": "D:\\Projects\\douwco.be\\wwwroot\\", + "BasePath": "_content/douwco.be", + "RelativePath": "font/brass-mono.woff", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "PreferTarget", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\font\\brass-mono.woff" + }, + { + "Identity": "D:\\Projects\\douwco.be\\wwwroot\\font\\UbuntuMono-Regular.woff", + "SourceId": "douwco.be", + "SourceType": "Discovered", + "ContentRoot": "D:\\Projects\\douwco.be\\wwwroot\\", + "BasePath": "_content/douwco.be", + "RelativePath": "font/UbuntuMono-Regular.woff", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "PreferTarget", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\font\\UbuntuMono-Regular.woff" + }, + { + "Identity": "D:\\Projects\\douwco.be\\wwwroot\\games.html", + "SourceId": "douwco.be", + "SourceType": "Discovered", + "ContentRoot": "D:\\Projects\\douwco.be\\wwwroot\\", + "BasePath": "_content/douwco.be", + "RelativePath": "games.html", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "PreferTarget", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\games.html" + }, + { + "Identity": "D:\\Projects\\douwco.be\\wwwroot\\home.html", + "SourceId": "douwco.be", + "SourceType": "Discovered", + "ContentRoot": "D:\\Projects\\douwco.be\\wwwroot\\", + "BasePath": "_content/douwco.be", + "RelativePath": "home.html", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "PreferTarget", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\home.html" + }, + { + "Identity": "D:\\Projects\\douwco.be\\wwwroot\\img\\douwco_logo.svg", + "SourceId": "douwco.be", + "SourceType": "Discovered", + "ContentRoot": "D:\\Projects\\douwco.be\\wwwroot\\", + "BasePath": "_content/douwco.be", + "RelativePath": "img/douwco_logo.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "PreferTarget", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\img\\douwco_logo.svg" + }, + { + "Identity": "D:\\Projects\\douwco.be\\wwwroot\\portofolio.html", + "SourceId": "douwco.be", + "SourceType": "Discovered", + "ContentRoot": "D:\\Projects\\douwco.be\\wwwroot\\", + "BasePath": "_content/douwco.be", + "RelativePath": "portofolio.html", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "PreferTarget", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\portofolio.html" + }, + { + "Identity": "D:\\Projects\\douwco.be\\wwwroot\\README.md", + "SourceId": "douwco.be", + "SourceType": "Discovered", + "ContentRoot": "D:\\Projects\\douwco.be\\wwwroot\\", + "BasePath": "_content/douwco.be", + "RelativePath": "README.md", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "PreferTarget", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\README.md" + }, + { + "Identity": "D:\\Projects\\douwco.be\\wwwroot\\script.js", + "SourceId": "douwco.be", + "SourceType": "Discovered", + "ContentRoot": "D:\\Projects\\douwco.be\\wwwroot\\", + "BasePath": "_content/douwco.be", + "RelativePath": "script.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "PreferTarget", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\script.js" + }, + { + "Identity": "D:\\Projects\\douwco.be\\wwwroot\\style.css", + "SourceId": "douwco.be", + "SourceType": "Discovered", + "ContentRoot": "D:\\Projects\\douwco.be\\wwwroot\\", + "BasePath": "_content/douwco.be", + "RelativePath": "style.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "PreferTarget", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\style.css" + } + ] +} \ No newline at end of file diff --git a/obj/Debug/net8.0/staticwebassets.development.json b/obj/Debug/net8.0/staticwebassets.development.json new file mode 100644 index 0000000..864bf51 --- /dev/null +++ b/obj/Debug/net8.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["D:\\Projects\\douwco.be\\wwwroot\\"],"Root":{"Children":{"douwe_ravers.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"douwe_ravers.html"},"Patterns":null},"font":{"Children":{"brass-mono.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"font/brass-mono.woff"},"Patterns":null},"UbuntuMono-Regular.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"font/UbuntuMono-Regular.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"games.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"games.html"},"Patterns":null},"home.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"home.html"},"Patterns":null},"img":{"Children":{"douwco_logo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/douwco_logo.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"portofolio.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"portofolio.html"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"README.md"},"Patterns":null},"script.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"script.js"},"Patterns":null},"style.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"style.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/obj/Debug/net8.0/staticwebassets.pack.json b/obj/Debug/net8.0/staticwebassets.pack.json new file mode 100644 index 0000000..400e68a --- /dev/null +++ b/obj/Debug/net8.0/staticwebassets.pack.json @@ -0,0 +1,61 @@ +{ + "Files": [ + { + "Id": "D:\\Projects\\douwco.be\\wwwroot\\README.md", + "PackagePath": "staticwebassets\\README.md" + }, + { + "Id": "D:\\Projects\\douwco.be\\wwwroot\\douwe_ravers.html", + "PackagePath": "staticwebassets\\douwe_ravers.html" + }, + { + "Id": "D:\\Projects\\douwco.be\\wwwroot\\font\\UbuntuMono-Regular.woff", + "PackagePath": "staticwebassets\\font\\UbuntuMono-Regular.woff" + }, + { + "Id": "D:\\Projects\\douwco.be\\wwwroot\\font\\brass-mono.woff", + "PackagePath": "staticwebassets\\font\\brass-mono.woff" + }, + { + "Id": "D:\\Projects\\douwco.be\\wwwroot\\games.html", + "PackagePath": "staticwebassets\\games.html" + }, + { + "Id": "D:\\Projects\\douwco.be\\wwwroot\\home.html", + "PackagePath": "staticwebassets\\home.html" + }, + { + "Id": "D:\\Projects\\douwco.be\\wwwroot\\img\\douwco_logo.svg", + "PackagePath": "staticwebassets\\img\\douwco_logo.svg" + }, + { + "Id": "D:\\Projects\\douwco.be\\wwwroot\\portofolio.html", + "PackagePath": "staticwebassets\\portofolio.html" + }, + { + "Id": "D:\\Projects\\douwco.be\\wwwroot\\script.js", + "PackagePath": "staticwebassets\\script.js" + }, + { + "Id": "D:\\Projects\\douwco.be\\wwwroot\\style.css", + "PackagePath": "staticwebassets\\style.css" + }, + { + "Id": "obj\\Debug\\net8.0\\staticwebassets\\msbuild.build.douwco.be.props", + "PackagePath": "build\\douwco.be.props" + }, + { + "Id": "obj\\Debug\\net8.0\\staticwebassets\\msbuild.buildMultiTargeting.douwco.be.props", + "PackagePath": "buildMultiTargeting\\douwco.be.props" + }, + { + "Id": "obj\\Debug\\net8.0\\staticwebassets\\msbuild.buildTransitive.douwco.be.props", + "PackagePath": "buildTransitive\\douwco.be.props" + }, + { + "Id": "obj\\Debug\\net8.0\\staticwebassets\\msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssets.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props" + } + ], + "ElementsToRemove": [] +} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.build.douwco.be.props b/obj/Debug/net8.0/staticwebassets/msbuild.build.douwco.be.props similarity index 54% rename from obj/Debug/net9.0/staticwebassets/msbuild.build.douwco.be.props rename to obj/Debug/net8.0/staticwebassets/msbuild.build.douwco.be.props index ddaed44..5a6032a 100644 --- a/obj/Debug/net9.0/staticwebassets/msbuild.build.douwco.be.props +++ b/obj/Debug/net8.0/staticwebassets/msbuild.build.douwco.be.props @@ -1,4 +1,3 @@  - \ No newline at end of file diff --git a/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.douwco.be.props b/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.douwco.be.props new file mode 100644 index 0000000..cf693a7 --- /dev/null +++ b/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.douwco.be.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.douwco.be.props b/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.douwco.be.props new file mode 100644 index 0000000..2d4f769 --- /dev/null +++ b/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.douwco.be.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssets.props b/obj/Debug/net8.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssets.props similarity index 62% rename from obj/Debug/net9.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssets.props rename to obj/Debug/net8.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssets.props index b89dee2..f3ae909 100644 --- a/obj/Debug/net9.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssets.props +++ b/obj/Debug/net8.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssets.props @@ -1,6 +1,6 @@  - + Package douwco.be $(MSBuildThisFileDirectory)..\staticwebassets\ @@ -12,13 +12,11 @@ - jzwq7d0l4u - gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0= Never PreserveNewest - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\douwe_ravers.html')) + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\douwe_ravers.html)) - + Package douwco.be $(MSBuildThisFileDirectory)..\staticwebassets\ @@ -30,13 +28,11 @@ - thnfwt3saa - sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48= Never PreserveNewest - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\font\brass-mono.woff')) + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\font\brass-mono.woff)) - + Package douwco.be $(MSBuildThisFileDirectory)..\staticwebassets\ @@ -48,13 +44,11 @@ - 76cv3e2rew - ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE= Never PreserveNewest - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\font\UbuntuMono-Regular.woff')) + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\font\UbuntuMono-Regular.woff)) - + Package douwco.be $(MSBuildThisFileDirectory)..\staticwebassets\ @@ -66,13 +60,11 @@ - jzwq7d0l4u - gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0= Never PreserveNewest - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\games.html')) + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\games.html)) - + Package douwco.be $(MSBuildThisFileDirectory)..\staticwebassets\ @@ -84,13 +76,11 @@ - m8e4s056it - 6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw= Never PreserveNewest - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\home.html')) + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\home.html)) - + Package douwco.be $(MSBuildThisFileDirectory)..\staticwebassets\ @@ -102,13 +92,11 @@ - ez53qs9bvq - Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc= Never PreserveNewest - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\img\douwco_logo.svg')) + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\img\douwco_logo.svg)) - + Package douwco.be $(MSBuildThisFileDirectory)..\staticwebassets\ @@ -120,13 +108,11 @@ - jzwq7d0l4u - gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0= Never PreserveNewest - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\portofolio.html')) + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\portofolio.html)) - + Package douwco.be $(MSBuildThisFileDirectory)..\staticwebassets\ @@ -138,13 +124,11 @@ - hepb3cduy8 - WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo= Never PreserveNewest - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\README.md')) + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\README.md)) - + Package douwco.be $(MSBuildThisFileDirectory)..\staticwebassets\ @@ -156,13 +140,11 @@ - 5ipweew5fc - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= Never PreserveNewest - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\script.js')) + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\script.js)) - + Package douwco.be $(MSBuildThisFileDirectory)..\staticwebassets\ @@ -174,11 +156,9 @@ - yjwmstgw6w - Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho= Never PreserveNewest - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\style.css')) + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\style.css)) \ No newline at end of file diff --git a/obj/Debug/net9.0/apphost b/obj/Debug/net9.0/apphost deleted file mode 100755 index 7d3164b..0000000 Binary files a/obj/Debug/net9.0/apphost and /dev/null differ diff --git a/obj/Debug/net9.0/compressed/fr3xpx3ofb-jzwq7d0l4u.gz b/obj/Debug/net9.0/compressed/fr3xpx3ofb-jzwq7d0l4u.gz deleted file mode 100644 index c885af5..0000000 Binary files a/obj/Debug/net9.0/compressed/fr3xpx3ofb-jzwq7d0l4u.gz and /dev/null differ diff --git a/obj/Debug/net9.0/compressed/hhuroxhbn0-yjwmstgw6w.gz b/obj/Debug/net9.0/compressed/hhuroxhbn0-yjwmstgw6w.gz deleted file mode 100644 index aed38ab..0000000 Binary files a/obj/Debug/net9.0/compressed/hhuroxhbn0-yjwmstgw6w.gz and /dev/null differ diff --git a/obj/Debug/net9.0/compressed/l8hev951z0-m8e4s056it.gz b/obj/Debug/net9.0/compressed/l8hev951z0-m8e4s056it.gz deleted file mode 100644 index 2649a2c..0000000 Binary files a/obj/Debug/net9.0/compressed/l8hev951z0-m8e4s056it.gz and /dev/null differ diff --git a/obj/Debug/net9.0/compressed/lrde2sl24r-hepb3cduy8.gz b/obj/Debug/net9.0/compressed/lrde2sl24r-hepb3cduy8.gz deleted file mode 100644 index 4308b1c..0000000 Binary files a/obj/Debug/net9.0/compressed/lrde2sl24r-hepb3cduy8.gz and /dev/null differ diff --git a/obj/Debug/net9.0/compressed/m4t22h92vv-5ipweew5fc.gz b/obj/Debug/net9.0/compressed/m4t22h92vv-5ipweew5fc.gz deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/net9.0/compressed/qrrpzaznff-jzwq7d0l4u.gz b/obj/Debug/net9.0/compressed/qrrpzaznff-jzwq7d0l4u.gz deleted file mode 100644 index c885af5..0000000 Binary files a/obj/Debug/net9.0/compressed/qrrpzaznff-jzwq7d0l4u.gz and /dev/null differ diff --git a/obj/Debug/net9.0/compressed/usnse4ln3x-ez53qs9bvq.gz b/obj/Debug/net9.0/compressed/usnse4ln3x-ez53qs9bvq.gz deleted file mode 100644 index 578a47f..0000000 Binary files a/obj/Debug/net9.0/compressed/usnse4ln3x-ez53qs9bvq.gz and /dev/null differ diff --git a/obj/Debug/net9.0/compressed/w4h6f8f1fu-jzwq7d0l4u.gz b/obj/Debug/net9.0/compressed/w4h6f8f1fu-jzwq7d0l4u.gz deleted file mode 100644 index c885af5..0000000 Binary files a/obj/Debug/net9.0/compressed/w4h6f8f1fu-jzwq7d0l4u.gz and /dev/null differ diff --git a/obj/Debug/net9.0/douwco.be.AssemblyInfoInputs.cache b/obj/Debug/net9.0/douwco.be.AssemblyInfoInputs.cache deleted file mode 100644 index cdeff71..0000000 --- a/obj/Debug/net9.0/douwco.be.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0fcc5b0d1125e946cb53c344aefb4a9679867e1238bcbe886141115c5ccd5c9d diff --git a/obj/Debug/net9.0/douwco.be.assets.cache b/obj/Debug/net9.0/douwco.be.assets.cache deleted file mode 100644 index 3040717..0000000 Binary files a/obj/Debug/net9.0/douwco.be.assets.cache and /dev/null differ diff --git a/obj/Debug/net9.0/douwco.be.csproj.CoreCompileInputs.cache b/obj/Debug/net9.0/douwco.be.csproj.CoreCompileInputs.cache deleted file mode 100644 index 62e0bf3..0000000 --- a/obj/Debug/net9.0/douwco.be.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -9f37d58ea941e031f7d0b8a557749bee9da07508dbaf104d7f06cfe7496ea40b diff --git a/obj/Debug/net9.0/douwco.be.csproj.FileListAbsolute.txt b/obj/Debug/net9.0/douwco.be.csproj.FileListAbsolute.txt deleted file mode 100644 index 72655d1..0000000 --- a/obj/Debug/net9.0/douwco.be.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,67 +0,0 @@ -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/bin/Debug/net9.0/appsettings.Development.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/bin/Debug/net9.0/appsettings.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/bin/Debug/net9.0/douwco.be.staticwebassets.endpoints.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/bin/Debug/net9.0/douwco.be -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/bin/Debug/net9.0/douwco.be.deps.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/bin/Debug/net9.0/douwco.be.runtimeconfig.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/bin/Debug/net9.0/douwco.be.dll -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/bin/Debug/net9.0/douwco.be.pdb -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/douwco.be.GeneratedMSBuildEditorConfig.editorconfig -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/douwco.be.AssemblyInfoInputs.cache -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/douwco.be.AssemblyInfo.cs -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/douwco.be.csproj.CoreCompileInputs.cache -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/douwco.be.MvcApplicationPartsAssemblyInfo.cache -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/douwco.be.sourcelink.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/scopedcss/bundle/douwco.be.styles.css -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/staticwebassets.build.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/staticwebassets.development.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/staticwebassets.build.endpoints.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssets.props -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssetEndpoints.props -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/staticwebassets/msbuild.build.douwco.be.props -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.douwco.be.props -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.douwco.be.props -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/staticwebassets.pack.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/douwco.be.dll -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/refint/douwco.be.dll -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/douwco.be.pdb -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/douwco.be.genruntimeconfig.cache -/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be/obj/Debug/net9.0/ref/douwco.be.dll -/mnt/hdd/home_ext/douwe/Projects/douwco.be/bin/Debug/net9.0/appsettings.Development.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/bin/Debug/net9.0/appsettings.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/bin/Debug/net9.0/douwco.be.staticwebassets.runtime.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/bin/Debug/net9.0/douwco.be.staticwebassets.endpoints.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/bin/Debug/net9.0/douwco.be -/mnt/hdd/home_ext/douwe/Projects/douwco.be/bin/Debug/net9.0/douwco.be.deps.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/bin/Debug/net9.0/douwco.be.runtimeconfig.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/bin/Debug/net9.0/douwco.be.dll -/mnt/hdd/home_ext/douwe/Projects/douwco.be/bin/Debug/net9.0/douwco.be.pdb -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/douwco.be.GeneratedMSBuildEditorConfig.editorconfig -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/douwco.be.AssemblyInfoInputs.cache -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/douwco.be.AssemblyInfo.cs -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/douwco.be.csproj.CoreCompileInputs.cache -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/douwco.be.MvcApplicationPartsAssemblyInfo.cache -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/douwco.be.sourcelink.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/scopedcss/bundle/douwco.be.styles.css -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/w4h6f8f1fu-jzwq7d0l4u.gz -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/qrrpzaznff-jzwq7d0l4u.gz -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/usnse4ln3x-ez53qs9bvq.gz -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/fr3xpx3ofb-jzwq7d0l4u.gz -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/lrde2sl24r-hepb3cduy8.gz -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/m4t22h92vv-5ipweew5fc.gz -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/hhuroxhbn0-yjwmstgw6w.gz -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/staticwebassets.build.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/staticwebassets.development.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/staticwebassets.build.endpoints.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssets.props -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssetEndpoints.props -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/staticwebassets/msbuild.build.douwco.be.props -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.douwco.be.props -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.douwco.be.props -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/staticwebassets.pack.json -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/douwco.be.dll -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/refint/douwco.be.dll -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/douwco.be.pdb -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/douwco.be.genruntimeconfig.cache -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/ref/douwco.be.dll -/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/l8hev951z0-m8e4s056it.gz diff --git a/obj/Debug/net9.0/douwco.be.dll b/obj/Debug/net9.0/douwco.be.dll deleted file mode 100644 index 4a12669..0000000 Binary files a/obj/Debug/net9.0/douwco.be.dll and /dev/null differ diff --git a/obj/Debug/net9.0/douwco.be.genruntimeconfig.cache b/obj/Debug/net9.0/douwco.be.genruntimeconfig.cache deleted file mode 100644 index 6f5abd1..0000000 --- a/obj/Debug/net9.0/douwco.be.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -f10a10573cbf052d7ffe0f2f69d8675a6d20867be69250772f4abbbe59338231 diff --git a/obj/Debug/net9.0/douwco.be.pdb b/obj/Debug/net9.0/douwco.be.pdb deleted file mode 100644 index 4f0a743..0000000 Binary files a/obj/Debug/net9.0/douwco.be.pdb and /dev/null differ diff --git a/obj/Debug/net9.0/douwco.be.sourcelink.json b/obj/Debug/net9.0/douwco.be.sourcelink.json deleted file mode 100644 index c7333ca..0000000 --- a/obj/Debug/net9.0/douwco.be.sourcelink.json +++ /dev/null @@ -1 +0,0 @@ -{"documents":{"/mnt/hdd/home_ext/douwe/Projects/douwco.be/*":"https://raw.githubusercontent.com/DouweRavers/douwco.be/0e81d2d8e92f98d6cf3227d87acf198e015fcc0a/*"}} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/obj/Debug/net9.0/staticwebassets.build.endpoints.json deleted file mode 100644 index 5d11e42..0000000 --- a/obj/Debug/net9.0/staticwebassets.build.endpoints.json +++ /dev/null @@ -1,2554 +0,0 @@ -{ - "Version": 1, - "ManifestType": "Build", - "Endpoints": [ - { - "Route": "README.hepb3cduy8.md", - "AssetFile": "README.md.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.018867924528" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "52" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=\"" - }, - { - "Name": "ETag", - "Value": "W/\"WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "hepb3cduy8" - }, - { - "Name": "integrity", - "Value": "sha256-WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=" - }, - { - "Name": "label", - "Value": "README.md" - } - ] - }, - { - "Route": "README.hepb3cduy8.md", - "AssetFile": "README.md", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "32" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "hepb3cduy8" - }, - { - "Name": "integrity", - "Value": "sha256-WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=" - }, - { - "Name": "label", - "Value": "README.md" - } - ] - }, - { - "Route": "README.hepb3cduy8.md.gz", - "AssetFile": "README.md.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "52" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "hepb3cduy8" - }, - { - "Name": "integrity", - "Value": "sha256-qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=" - }, - { - "Name": "label", - "Value": "README.md.gz" - } - ] - }, - { - "Route": "README.md", - "AssetFile": "README.md.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.018867924528" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "52" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=\"" - }, - { - "Name": "ETag", - "Value": "W/\"WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=" - } - ] - }, - { - "Route": "README.md", - "AssetFile": "README.md", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "32" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=" - } - ] - }, - { - "Route": "README.md.gz", - "AssetFile": "README.md.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "52" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=" - } - ] - }, - { - "Route": "douwe_ravers.html", - "AssetFile": "douwe_ravers.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "douwe_ravers.html", - "AssetFile": "douwe_ravers.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "douwe_ravers.html.gz", - "AssetFile": "douwe_ravers.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - } - ] - }, - { - "Route": "douwe_ravers.jzwq7d0l4u.html", - "AssetFile": "douwe_ravers.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - }, - { - "Name": "label", - "Value": "douwe_ravers.html" - } - ] - }, - { - "Route": "douwe_ravers.jzwq7d0l4u.html", - "AssetFile": "douwe_ravers.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - }, - { - "Name": "label", - "Value": "douwe_ravers.html" - } - ] - }, - { - "Route": "douwe_ravers.jzwq7d0l4u.html.gz", - "AssetFile": "douwe_ravers.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - }, - { - "Name": "label", - "Value": "douwe_ravers.html.gz" - } - ] - }, - { - "Route": "font/UbuntuMono-Regular.76cv3e2rew.woff", - "AssetFile": "font/UbuntuMono-Regular.woff", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "106612" - }, - { - "Name": "Content-Type", - "Value": "application/font-woff" - }, - { - "Name": "ETag", - "Value": "\"ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:48:37 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "76cv3e2rew" - }, - { - "Name": "integrity", - "Value": "sha256-ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE=" - }, - { - "Name": "label", - "Value": "font/UbuntuMono-Regular.woff" - } - ] - }, - { - "Route": "font/UbuntuMono-Regular.woff", - "AssetFile": "font/UbuntuMono-Regular.woff", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "106612" - }, - { - "Name": "Content-Type", - "Value": "application/font-woff" - }, - { - "Name": "ETag", - "Value": "\"ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:48:37 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE=" - } - ] - }, - { - "Route": "font/brass-mono.thnfwt3saa.woff", - "AssetFile": "font/brass-mono.woff", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "16088" - }, - { - "Name": "Content-Type", - "Value": "application/font-woff" - }, - { - "Name": "ETag", - "Value": "\"sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:38:59 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "thnfwt3saa" - }, - { - "Name": "integrity", - "Value": "sha256-sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48=" - }, - { - "Name": "label", - "Value": "font/brass-mono.woff" - } - ] - }, - { - "Route": "font/brass-mono.woff", - "AssetFile": "font/brass-mono.woff", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "16088" - }, - { - "Name": "Content-Type", - "Value": "application/font-woff" - }, - { - "Name": "ETag", - "Value": "\"sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:38:59 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48=" - } - ] - }, - { - "Route": "games.html", - "AssetFile": "games.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "games.html", - "AssetFile": "games.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "games.html.gz", - "AssetFile": "games.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - } - ] - }, - { - "Route": "games.jzwq7d0l4u.html", - "AssetFile": "games.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - }, - { - "Name": "label", - "Value": "games.html" - } - ] - }, - { - "Route": "games.jzwq7d0l4u.html", - "AssetFile": "games.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - }, - { - "Name": "label", - "Value": "games.html" - } - ] - }, - { - "Route": "games.jzwq7d0l4u.html.gz", - "AssetFile": "games.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - }, - { - "Name": "label", - "Value": "games.html.gz" - } - ] - }, - { - "Route": "home.html", - "AssetFile": "home.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.002123142251" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "470" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=\"" - }, - { - "Name": "ETag", - "Value": "W/\"6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=" - } - ] - }, - { - "Route": "home.html", - "AssetFile": "home.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "1623" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=" - } - ] - }, - { - "Route": "home.html.gz", - "AssetFile": "home.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "470" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=" - } - ] - }, - { - "Route": "home.m8e4s056it.html", - "AssetFile": "home.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.002123142251" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "470" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=\"" - }, - { - "Name": "ETag", - "Value": "W/\"6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "m8e4s056it" - }, - { - "Name": "integrity", - "Value": "sha256-6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=" - }, - { - "Name": "label", - "Value": "home.html" - } - ] - }, - { - "Route": "home.m8e4s056it.html", - "AssetFile": "home.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "1623" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "m8e4s056it" - }, - { - "Name": "integrity", - "Value": "sha256-6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=" - }, - { - "Name": "label", - "Value": "home.html" - } - ] - }, - { - "Route": "home.m8e4s056it.html.gz", - "AssetFile": "home.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "470" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "m8e4s056it" - }, - { - "Name": "integrity", - "Value": "sha256-x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=" - }, - { - "Name": "label", - "Value": "home.html.gz" - } - ] - }, - { - "Route": "img/douwco_logo.ez53qs9bvq.svg", - "AssetFile": "img/douwco_logo.svg.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.000740192450" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "1350" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=\"" - }, - { - "Name": "ETag", - "Value": "W/\"Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "ez53qs9bvq" - }, - { - "Name": "integrity", - "Value": "sha256-Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=" - }, - { - "Name": "label", - "Value": "img/douwco_logo.svg" - } - ] - }, - { - "Route": "img/douwco_logo.ez53qs9bvq.svg", - "AssetFile": "img/douwco_logo.svg", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "3568" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "ez53qs9bvq" - }, - { - "Name": "integrity", - "Value": "sha256-Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=" - }, - { - "Name": "label", - "Value": "img/douwco_logo.svg" - } - ] - }, - { - "Route": "img/douwco_logo.ez53qs9bvq.svg.gz", - "AssetFile": "img/douwco_logo.svg.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "1350" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "ez53qs9bvq" - }, - { - "Name": "integrity", - "Value": "sha256-xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=" - }, - { - "Name": "label", - "Value": "img/douwco_logo.svg.gz" - } - ] - }, - { - "Route": "img/douwco_logo.svg", - "AssetFile": "img/douwco_logo.svg.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.000740192450" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "1350" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=\"" - }, - { - "Name": "ETag", - "Value": "W/\"Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=" - } - ] - }, - { - "Route": "img/douwco_logo.svg", - "AssetFile": "img/douwco_logo.svg", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=3600, must-revalidate" - }, - { - "Name": "Content-Length", - "Value": "3568" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=" - } - ] - }, - { - "Route": "img/douwco_logo.svg.gz", - "AssetFile": "img/douwco_logo.svg.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "1350" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=" - } - ] - }, - { - "Route": "portofolio.html", - "AssetFile": "portofolio.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "portofolio.html", - "AssetFile": "portofolio.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "portofolio.html.gz", - "AssetFile": "portofolio.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - } - ] - }, - { - "Route": "portofolio.jzwq7d0l4u.html", - "AssetFile": "portofolio.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - }, - { - "Name": "label", - "Value": "portofolio.html" - } - ] - }, - { - "Route": "portofolio.jzwq7d0l4u.html", - "AssetFile": "portofolio.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - }, - { - "Name": "label", - "Value": "portofolio.html" - } - ] - }, - { - "Route": "portofolio.jzwq7d0l4u.html.gz", - "AssetFile": "portofolio.html.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - }, - { - "Name": "label", - "Value": "portofolio.html.gz" - } - ] - }, - { - "Route": "script.5ipweew5fc.js", - "AssetFile": "script.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "1.000000000000" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "ETag", - "Value": "W/\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "5ipweew5fc" - }, - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - }, - { - "Name": "label", - "Value": "script.js" - } - ] - }, - { - "Route": "script.5ipweew5fc.js", - "AssetFile": "script.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "5ipweew5fc" - }, - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - }, - { - "Name": "label", - "Value": "script.js" - } - ] - }, - { - "Route": "script.5ipweew5fc.js.gz", - "AssetFile": "script.js.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "5ipweew5fc" - }, - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - }, - { - "Name": "label", - "Value": "script.js.gz" - } - ] - }, - { - "Route": "script.js", - "AssetFile": "script.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "1.000000000000" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "ETag", - "Value": "W/\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - } - ] - }, - { - "Route": "script.js", - "AssetFile": "script.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - } - ] - }, - { - "Route": "script.js.gz", - "AssetFile": "script.js.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - } - ] - }, - { - "Route": "style.css", - "AssetFile": "style.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.002493765586" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "400" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=\"" - }, - { - "Name": "ETag", - "Value": "W/\"Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=" - } - ] - }, - { - "Route": "style.css", - "AssetFile": "style.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "876" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=" - } - ] - }, - { - "Route": "style.css.gz", - "AssetFile": "style.css.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "400" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=" - } - ] - }, - { - "Route": "style.yjwmstgw6w.css", - "AssetFile": "style.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.002493765586" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "400" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=\"" - }, - { - "Name": "ETag", - "Value": "W/\"Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "yjwmstgw6w" - }, - { - "Name": "integrity", - "Value": "sha256-Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=" - }, - { - "Name": "label", - "Value": "style.css" - } - ] - }, - { - "Route": "style.yjwmstgw6w.css", - "AssetFile": "style.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Length", - "Value": "876" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "yjwmstgw6w" - }, - { - "Name": "integrity", - "Value": "sha256-Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=" - }, - { - "Name": "label", - "Value": "style.css" - } - ] - }, - { - "Route": "style.yjwmstgw6w.css.gz", - "AssetFile": "style.css.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "400" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "yjwmstgw6w" - }, - { - "Name": "integrity", - "Value": "sha256-MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=" - }, - { - "Name": "label", - "Value": "style.css.gz" - } - ] - } - ] -} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.build.json b/obj/Debug/net9.0/staticwebassets.build.json deleted file mode 100644 index c6150e7..0000000 --- a/obj/Debug/net9.0/staticwebassets.build.json +++ /dev/null @@ -1,2948 +0,0 @@ -{ - "Version": 1, - "Hash": "PV/01YC5gm7bC6z0Ti5CdNWMElJFcgWwFa05LbQCdWc=", - "Source": "douwco.be", - "BasePath": "_content/douwco.be", - "Mode": "Default", - "ManifestType": "Build", - "ReferencedProjectsConfiguration": [], - "DiscoveryPatterns": [ - { - "Name": "douwco.be/wwwroot", - "Source": "douwco.be", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/", - "BasePath": "_content/douwco.be", - "Pattern": "**" - } - ], - "Assets": [ - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/fr3xpx3ofb-jzwq7d0l4u.gz", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/", - "BasePath": "_content/douwco.be", - "RelativePath": "portofolio#[.{fingerprint=jzwq7d0l4u}]?.html.gz", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Alternative", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/portofolio.html", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "j2xi8omzuy", - "Integrity": "FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/portofolio.html" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/hhuroxhbn0-yjwmstgw6w.gz", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/", - "BasePath": "_content/douwco.be", - "RelativePath": "style#[.{fingerprint=yjwmstgw6w}]?.css.gz", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Alternative", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/style.css", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "82gatu5twh", - "Integrity": "MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/style.css" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/l8hev951z0-m8e4s056it.gz", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/", - "BasePath": "_content/douwco.be", - "RelativePath": "home#[.{fingerprint=m8e4s056it}]?.html.gz", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Alternative", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/home.html", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "1yfy1ffaso", - "Integrity": "x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/home.html" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/lrde2sl24r-hepb3cduy8.gz", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/", - "BasePath": "_content/douwco.be", - "RelativePath": "README#[.{fingerprint=hepb3cduy8}]?.md.gz", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Alternative", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/README.md", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "0asivsmt31", - "Integrity": "qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/README.md" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/m4t22h92vv-5ipweew5fc.gz", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/", - "BasePath": "_content/douwco.be", - "RelativePath": "script#[.{fingerprint=5ipweew5fc}]?.js.gz", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Alternative", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/script.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "5ipweew5fc", - "Integrity": "47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/script.js" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/qrrpzaznff-jzwq7d0l4u.gz", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/", - "BasePath": "_content/douwco.be", - "RelativePath": "games#[.{fingerprint=jzwq7d0l4u}]?.html.gz", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Alternative", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/games.html", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "j2xi8omzuy", - "Integrity": "FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/games.html" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/usnse4ln3x-ez53qs9bvq.gz", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/", - "BasePath": "_content/douwco.be", - "RelativePath": "img/douwco_logo#[.{fingerprint=ez53qs9bvq}]?.svg.gz", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Alternative", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/img/douwco_logo.svg", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "gf53pxko36", - "Integrity": "xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/img/douwco_logo.svg" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/w4h6f8f1fu-jzwq7d0l4u.gz", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/", - "BasePath": "_content/douwco.be", - "RelativePath": "douwe_ravers#[.{fingerprint=jzwq7d0l4u}]?.html.gz", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Alternative", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/douwe_ravers.html", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "j2xi8omzuy", - "Integrity": "FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/douwe_ravers.html" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/douwe_ravers.html", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/", - "BasePath": "_content/douwco.be", - "RelativePath": "douwe_ravers#[.{fingerprint}]?.html", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "jzwq7d0l4u", - "Integrity": "gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/douwe_ravers.html" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/font/brass-mono.woff", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/", - "BasePath": "_content/douwco.be", - "RelativePath": "font/brass-mono#[.{fingerprint}]?.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "thnfwt3saa", - "Integrity": "sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/font/brass-mono.woff" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/font/UbuntuMono-Regular.woff", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/", - "BasePath": "_content/douwco.be", - "RelativePath": "font/UbuntuMono-Regular#[.{fingerprint}]?.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "76cv3e2rew", - "Integrity": "ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/font/UbuntuMono-Regular.woff" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/games.html", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/", - "BasePath": "_content/douwco.be", - "RelativePath": "games#[.{fingerprint}]?.html", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "jzwq7d0l4u", - "Integrity": "gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/games.html" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/home.html", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/", - "BasePath": "_content/douwco.be", - "RelativePath": "home#[.{fingerprint}]?.html", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "m8e4s056it", - "Integrity": "6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/home.html" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/img/douwco_logo.svg", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/", - "BasePath": "_content/douwco.be", - "RelativePath": "img/douwco_logo#[.{fingerprint}]?.svg", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "ez53qs9bvq", - "Integrity": "Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/img/douwco_logo.svg" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/portofolio.html", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/", - "BasePath": "_content/douwco.be", - "RelativePath": "portofolio#[.{fingerprint}]?.html", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "jzwq7d0l4u", - "Integrity": "gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/portofolio.html" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/README.md", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/", - "BasePath": "_content/douwco.be", - "RelativePath": "README#[.{fingerprint}]?.md", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "hepb3cduy8", - "Integrity": "WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/README.md" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/script.js", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/", - "BasePath": "_content/douwco.be", - "RelativePath": "script#[.{fingerprint}]?.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "5ipweew5fc", - "Integrity": "47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/script.js" - }, - { - "Identity": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/style.css", - "SourceId": "douwco.be", - "SourceType": "Discovered", - "ContentRoot": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/", - "BasePath": "_content/douwco.be", - "RelativePath": "style#[.{fingerprint}]?.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "yjwmstgw6w", - "Integrity": "Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/style.css" - } - ], - "Endpoints": [ - { - "Route": "douwe_ravers.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/w4h6f8f1fu-jzwq7d0l4u.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "douwe_ravers.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/douwe_ravers.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "douwe_ravers.html.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/w4h6f8f1fu-jzwq7d0l4u.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - } - ] - }, - { - "Route": "douwe_ravers.jzwq7d0l4u.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/w4h6f8f1fu-jzwq7d0l4u.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "label", - "Value": "douwe_ravers.html" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "douwe_ravers.jzwq7d0l4u.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/douwe_ravers.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "label", - "Value": "douwe_ravers.html" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "douwe_ravers.jzwq7d0l4u.html.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/w4h6f8f1fu-jzwq7d0l4u.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:03:19 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "label", - "Value": "douwe_ravers.html.gz" - }, - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - } - ] - }, - { - "Route": "font/brass-mono.thnfwt3saa.woff", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/font/brass-mono.woff", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "16088" - }, - { - "Name": "Content-Type", - "Value": "application/font-woff" - }, - { - "Name": "ETag", - "Value": "\"sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:38:59 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "thnfwt3saa" - }, - { - "Name": "label", - "Value": "font/brass-mono.woff" - }, - { - "Name": "integrity", - "Value": "sha256-sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48=" - } - ] - }, - { - "Route": "font/brass-mono.woff", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/font/brass-mono.woff", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "16088" - }, - { - "Name": "Content-Type", - "Value": "application/font-woff" - }, - { - "Name": "ETag", - "Value": "\"sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:38:59 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-sQhSxAWV2lRA2/QPCnpSIpnqBvQ1AeBbrD1XoPyjo48=" - } - ] - }, - { - "Route": "font/UbuntuMono-Regular.76cv3e2rew.woff", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/font/UbuntuMono-Regular.woff", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "106612" - }, - { - "Name": "Content-Type", - "Value": "application/font-woff" - }, - { - "Name": "ETag", - "Value": "\"ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:48:37 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "76cv3e2rew" - }, - { - "Name": "label", - "Value": "font/UbuntuMono-Regular.woff" - }, - { - "Name": "integrity", - "Value": "sha256-ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE=" - } - ] - }, - { - "Route": "font/UbuntuMono-Regular.woff", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/font/UbuntuMono-Regular.woff", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "106612" - }, - { - "Name": "Content-Type", - "Value": "application/font-woff" - }, - { - "Name": "ETag", - "Value": "\"ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:48:37 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-ofUaKluLvdarowvbddyCZ+0SYjSNu6nTxVNMSQIFWjE=" - } - ] - }, - { - "Route": "games.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/qrrpzaznff-jzwq7d0l4u.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "games.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/games.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "games.html.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/qrrpzaznff-jzwq7d0l4u.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - } - ] - }, - { - "Route": "games.jzwq7d0l4u.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/qrrpzaznff-jzwq7d0l4u.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "label", - "Value": "games.html" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "games.jzwq7d0l4u.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/games.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "label", - "Value": "games.html" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "games.jzwq7d0l4u.html.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/qrrpzaznff-jzwq7d0l4u.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:38 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "label", - "Value": "games.html.gz" - }, - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - } - ] - }, - { - "Route": "home.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/l8hev951z0-m8e4s056it.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.002123142251" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "470" - }, - { - "Name": "ETag", - "Value": "\"x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "W/\"6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=\"" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=" - } - ] - }, - { - "Route": "home.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/home.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "1623" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=" - } - ] - }, - { - "Route": "home.html.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/l8hev951z0-m8e4s056it.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "470" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=" - } - ] - }, - { - "Route": "home.m8e4s056it.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/l8hev951z0-m8e4s056it.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.002123142251" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "470" - }, - { - "Name": "ETag", - "Value": "\"x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "W/\"6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=\"" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "m8e4s056it" - }, - { - "Name": "label", - "Value": "home.html" - }, - { - "Name": "integrity", - "Value": "sha256-6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=" - } - ] - }, - { - "Route": "home.m8e4s056it.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/home.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "1623" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "m8e4s056it" - }, - { - "Name": "label", - "Value": "home.html" - }, - { - "Name": "integrity", - "Value": "sha256-6nJYmJ3+Ocf1y0HVGLgqRcimdwpxo28bTrVZitdLUIw=" - } - ] - }, - { - "Route": "home.m8e4s056it.html.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/l8hev951z0-m8e4s056it.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "470" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:04:53 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "m8e4s056it" - }, - { - "Name": "label", - "Value": "home.html.gz" - }, - { - "Name": "integrity", - "Value": "sha256-x81h4I4ApYPHP4mrHSvSmUrlPrqxyabS07dnbb0yMsc=" - } - ] - }, - { - "Route": "img/douwco_logo.ez53qs9bvq.svg", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/usnse4ln3x-ez53qs9bvq.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.000740192450" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "1350" - }, - { - "Name": "ETag", - "Value": "\"xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "W/\"Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=\"" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "ez53qs9bvq" - }, - { - "Name": "label", - "Value": "img/douwco_logo.svg" - }, - { - "Name": "integrity", - "Value": "sha256-Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=" - } - ] - }, - { - "Route": "img/douwco_logo.ez53qs9bvq.svg", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/img/douwco_logo.svg", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "3568" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "ez53qs9bvq" - }, - { - "Name": "label", - "Value": "img/douwco_logo.svg" - }, - { - "Name": "integrity", - "Value": "sha256-Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=" - } - ] - }, - { - "Route": "img/douwco_logo.ez53qs9bvq.svg.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/usnse4ln3x-ez53qs9bvq.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "1350" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "ez53qs9bvq" - }, - { - "Name": "label", - "Value": "img/douwco_logo.svg.gz" - }, - { - "Name": "integrity", - "Value": "sha256-xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=" - } - ] - }, - { - "Route": "img/douwco_logo.svg", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/usnse4ln3x-ez53qs9bvq.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.000740192450" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "1350" - }, - { - "Name": "ETag", - "Value": "\"xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "W/\"Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=\"" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=" - } - ] - }, - { - "Route": "img/douwco_logo.svg", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/img/douwco_logo.svg", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "3568" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=3600, must-revalidate" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Ctvh+6Y0So99LkSOXsAwavyioCbqnGAFs36fVDgNAfc=" - } - ] - }, - { - "Route": "img/douwco_logo.svg.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/usnse4ln3x-ez53qs9bvq.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "1350" - }, - { - "Name": "Content-Type", - "Value": "image/svg+xml" - }, - { - "Name": "ETag", - "Value": "\"xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 19:20:23 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-xKS/FsMnWqqvSqwO0suz6NIqPRjd3TGGvb+pGCGKmlI=" - } - ] - }, - { - "Route": "portofolio.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/fr3xpx3ofb-jzwq7d0l4u.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "portofolio.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/portofolio.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "portofolio.html.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/fr3xpx3ofb-jzwq7d0l4u.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - } - ] - }, - { - "Route": "portofolio.jzwq7d0l4u.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/fr3xpx3ofb-jzwq7d0l4u.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.003355704698" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "W/\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "label", - "Value": "portofolio.html" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "portofolio.jzwq7d0l4u.html", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/portofolio.html", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "485" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "label", - "Value": "portofolio.html" - }, - { - "Name": "integrity", - "Value": "sha256-gds36sI99SLanLCFgH9wtNLaU+Vxo71kZatoItUsAq0=" - } - ] - }, - { - "Route": "portofolio.jzwq7d0l4u.html.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/fr3xpx3ofb-jzwq7d0l4u.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "297" - }, - { - "Name": "Content-Type", - "Value": "text/html" - }, - { - "Name": "ETag", - "Value": "\"FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 21:02:36 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "jzwq7d0l4u" - }, - { - "Name": "label", - "Value": "portofolio.html.gz" - }, - { - "Name": "integrity", - "Value": "sha256-FQCSQgjM3NjumvflttdK/8YPbAg6udG2fBrZGjWaWvw=" - } - ] - }, - { - "Route": "README.hepb3cduy8.md", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/lrde2sl24r-hepb3cduy8.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.018867924528" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "52" - }, - { - "Name": "ETag", - "Value": "\"qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "W/\"WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=\"" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "hepb3cduy8" - }, - { - "Name": "label", - "Value": "README.md" - }, - { - "Name": "integrity", - "Value": "sha256-WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=" - } - ] - }, - { - "Route": "README.hepb3cduy8.md", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/README.md", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "32" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "hepb3cduy8" - }, - { - "Name": "label", - "Value": "README.md" - }, - { - "Name": "integrity", - "Value": "sha256-WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=" - } - ] - }, - { - "Route": "README.hepb3cduy8.md.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/lrde2sl24r-hepb3cduy8.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "52" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "hepb3cduy8" - }, - { - "Name": "label", - "Value": "README.md.gz" - }, - { - "Name": "integrity", - "Value": "sha256-qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=" - } - ] - }, - { - "Route": "README.md", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/lrde2sl24r-hepb3cduy8.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.018867924528" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "52" - }, - { - "Name": "ETag", - "Value": "\"qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "W/\"WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=\"" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=" - } - ] - }, - { - "Route": "README.md", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/README.md", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "32" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-WTjWXyzMmi1JiM1ZDZBwnuSGbk+n84q9W8pujiZ5kOo=" - } - ] - }, - { - "Route": "README.md.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/lrde2sl24r-hepb3cduy8.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "52" - }, - { - "Name": "Content-Type", - "Value": "text/markdown" - }, - { - "Name": "ETag", - "Value": "\"qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Sun, 06 Apr 2025 12:06:20 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-qG6xWVCEdddwgwwSSNtwcY+R5+Ea+PUZFyOTQDOlYCo=" - } - ] - }, - { - "Route": "script.5ipweew5fc.js", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/m4t22h92vv-5ipweew5fc.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "1.000000000000" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "W/\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "5ipweew5fc" - }, - { - "Name": "label", - "Value": "script.js" - }, - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - } - ] - }, - { - "Route": "script.5ipweew5fc.js", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/script.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "5ipweew5fc" - }, - { - "Name": "label", - "Value": "script.js" - }, - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - } - ] - }, - { - "Route": "script.5ipweew5fc.js.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/m4t22h92vv-5ipweew5fc.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "5ipweew5fc" - }, - { - "Name": "label", - "Value": "script.js.gz" - }, - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - } - ] - }, - { - "Route": "script.js", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/m4t22h92vv-5ipweew5fc.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "1.000000000000" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "W/\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - } - ] - }, - { - "Route": "script.js", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/script.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - } - ] - }, - { - "Route": "script.js.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/m4t22h92vv-5ipweew5fc.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "0" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 18:27:51 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=" - } - ] - }, - { - "Route": "style.css", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/hhuroxhbn0-yjwmstgw6w.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.002493765586" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "400" - }, - { - "Name": "ETag", - "Value": "\"MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "W/\"Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=\"" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=" - } - ] - }, - { - "Route": "style.css", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/style.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "876" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=" - } - ] - }, - { - "Route": "style.css.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/hhuroxhbn0-yjwmstgw6w.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "400" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=" - } - ] - }, - { - "Route": "style.yjwmstgw6w.css", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/hhuroxhbn0-yjwmstgw6w.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "0.002493765586" - } - ], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "400" - }, - { - "Name": "ETag", - "Value": "\"MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "W/\"Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=\"" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "yjwmstgw6w" - }, - { - "Name": "label", - "Value": "style.css" - }, - { - "Name": "integrity", - "Value": "sha256-Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=" - } - ] - }, - { - "Route": "style.yjwmstgw6w.css", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/style.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "876" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "yjwmstgw6w" - }, - { - "Name": "label", - "Value": "style.css" - }, - { - "Name": "integrity", - "Value": "sha256-Tn4BmcmNnsgpK1FOYvZ6g98I+ga7U/+npEAuVNom6Ho=" - } - ] - }, - { - "Route": "style.yjwmstgw6w.css.gz", - "AssetFile": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/hhuroxhbn0-yjwmstgw6w.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "400" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=\"" - }, - { - "Name": "Last-Modified", - "Value": "Wed, 09 Apr 2025 20:58:48 GMT" - }, - { - "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Vary", - "Value": "Content-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "yjwmstgw6w" - }, - { - "Name": "label", - "Value": "style.css.gz" - }, - { - "Name": "integrity", - "Value": "sha256-MIvlJjEKferS1GiIsOKbuR/vmgJir/whQdeffKj3sJ8=" - } - ] - } - ] -} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.development.json b/obj/Debug/net9.0/staticwebassets.development.json deleted file mode 100644 index ba28c40..0000000 --- a/obj/Debug/net9.0/staticwebassets.development.json +++ /dev/null @@ -1 +0,0 @@ -{"ContentRoots":["/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/","/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/Debug/net9.0/compressed/"],"Root":{"Children":{"douwe_ravers.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"douwe_ravers.html"},"Patterns":null},"font":{"Children":{"brass-mono.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"font/brass-mono.woff"},"Patterns":null},"UbuntuMono-Regular.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"font/UbuntuMono-Regular.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"games.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"games.html"},"Patterns":null},"home.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"home.html"},"Patterns":null},"img":{"Children":{"douwco_logo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/douwco_logo.svg"},"Patterns":null},"douwco_logo.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"usnse4ln3x-ez53qs9bvq.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"portofolio.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"portofolio.html"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"README.md"},"Patterns":null},"script.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"script.js"},"Patterns":null},"style.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"style.css"},"Patterns":null},"douwe_ravers.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w4h6f8f1fu-jzwq7d0l4u.gz"},"Patterns":null},"games.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qrrpzaznff-jzwq7d0l4u.gz"},"Patterns":null},"home.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l8hev951z0-m8e4s056it.gz"},"Patterns":null},"portofolio.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fr3xpx3ofb-jzwq7d0l4u.gz"},"Patterns":null},"README.md.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lrde2sl24r-hepb3cduy8.gz"},"Patterns":null},"script.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m4t22h92vv-5ipweew5fc.gz"},"Patterns":null},"style.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hhuroxhbn0-yjwmstgw6w.gz"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.pack.json b/obj/Debug/net9.0/staticwebassets.pack.json deleted file mode 100644 index d09495b..0000000 --- a/obj/Debug/net9.0/staticwebassets.pack.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "Files": [ - { - "Id": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/README.md", - "PackagePath": "staticwebassets/README.md" - }, - { - "Id": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/douwe_ravers.html", - "PackagePath": "staticwebassets/douwe_ravers.html" - }, - { - "Id": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/font/UbuntuMono-Regular.woff", - "PackagePath": "staticwebassets/font/UbuntuMono-Regular.woff" - }, - { - "Id": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/font/brass-mono.woff", - "PackagePath": "staticwebassets/font/brass-mono.woff" - }, - { - "Id": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/games.html", - "PackagePath": "staticwebassets/games.html" - }, - { - "Id": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/home.html", - "PackagePath": "staticwebassets/home.html" - }, - { - "Id": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/img/douwco_logo.svg", - "PackagePath": "staticwebassets/img/douwco_logo.svg" - }, - { - "Id": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/portofolio.html", - "PackagePath": "staticwebassets/portofolio.html" - }, - { - "Id": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/script.js", - "PackagePath": "staticwebassets/script.js" - }, - { - "Id": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/wwwroot/style.css", - "PackagePath": "staticwebassets/style.css" - }, - { - "Id": "obj/Debug/net9.0/staticwebassets/msbuild.build.douwco.be.props", - "PackagePath": "build\\douwco.be.props" - }, - { - "Id": "obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.douwco.be.props", - "PackagePath": "buildMultiTargeting\\douwco.be.props" - }, - { - "Id": "obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.douwco.be.props", - "PackagePath": "buildTransitive\\douwco.be.props" - }, - { - "Id": "obj/Debug/net9.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssetEndpoints.props", - "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssetEndpoints.props" - }, - { - "Id": "obj/Debug/net9.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssets.props", - "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props" - } - ], - "ElementsToRemove": [] -} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.douwco.be.props b/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.douwco.be.props deleted file mode 100644 index 904e6a4..0000000 --- a/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.douwco.be.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.douwco.be.props b/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.douwco.be.props deleted file mode 100644 index 2652e32..0000000 --- a/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.douwco.be.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssetEndpoints.props b/obj/Debug/net9.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssetEndpoints.props deleted file mode 100644 index 3ee3c06..0000000 --- a/obj/Debug/net9.0/staticwebassets/msbuild.douwco.be.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +++ /dev/null @@ -1,124 +0,0 @@ - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\douwe_ravers.html')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\douwe_ravers.html')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\font\brass-mono.woff')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\font\brass-mono.woff')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\font\UbuntuMono-Regular.woff')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\font\UbuntuMono-Regular.woff')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\games.html')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\games.html')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\home.html')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\home.html')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\img\douwco_logo.svg')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\img\douwco_logo.svg')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\portofolio.html')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\portofolio.html')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\README.md')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\README.md')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\script.js')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\script.js')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\style.css')) - - - - - - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\style.css')) - - - - - - \ No newline at end of file diff --git a/obj/douwco.be.csproj.nuget.dgspec.json b/obj/douwco.be.csproj.nuget.dgspec.json index cb39797..5650542 100644 --- a/obj/douwco.be.csproj.nuget.dgspec.json +++ b/obj/douwco.be.csproj.nuget.dgspec.json @@ -1,30 +1,33 @@ { "format": 1, "restore": { - "/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be.csproj": {} + "D:\\Projects\\douwco.be\\douwco.be.csproj": {} }, "projects": { - "/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be.csproj": { + "D:\\Projects\\douwco.be\\douwco.be.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be.csproj", + "projectUniqueName": "D:\\Projects\\douwco.be\\douwco.be.csproj", "projectName": "douwco.be", - "projectPath": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be.csproj", - "packagesPath": "/root/.nuget/packages/", - "outputPath": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/", + "projectPath": "D:\\Projects\\douwco.be\\douwco.be.csproj", + "packagesPath": "C:\\Users\\douwe\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\douwco.be\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "/root/.nuget/NuGet/NuGet.Config" + "C:\\Users\\douwe\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ - "net9.0" + "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "net9.0": { - "targetAlias": "net9.0", + "net8.0": { + "targetAlias": "net8.0", "projectReferences": {} } }, @@ -37,12 +40,11 @@ "enableAudit": "true", "auditLevel": "low", "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.200" + } }, "frameworks": { - "net9.0": { - "targetAlias": "net9.0", + "net8.0": { + "targetAlias": "net8.0", "imports": [ "net461", "net462", @@ -62,7 +64,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.203/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.401/PortableRuntimeIdentifierGraph.json" } } } diff --git a/obj/douwco.be.csproj.nuget.g.props b/obj/douwco.be.csproj.nuget.g.props index 99615c4..7a96eed 100644 --- a/obj/douwco.be.csproj.nuget.g.props +++ b/obj/douwco.be.csproj.nuget.g.props @@ -4,12 +4,12 @@ True NuGet $(MSBuildThisFileDirectory)project.assets.json - /root/.nuget/packages/ - /root/.nuget/packages/ + $(UserProfile)\.nuget\packages\ + C:\Users\douwe\.nuget\packages\ PackageReference - 6.13.2 + 6.11.0 - + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json index 995decc..91e1178 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -1,36 +1,39 @@ { "version": 3, "targets": { - "net9.0": {} + "net8.0": {} }, "libraries": {}, "projectFileDependencyGroups": { - "net9.0": [] + "net8.0": [] }, "packageFolders": { - "/root/.nuget/packages/": {} + "C:\\Users\\douwe\\.nuget\\packages\\": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be.csproj", + "projectUniqueName": "D:\\Projects\\douwco.be\\douwco.be.csproj", "projectName": "douwco.be", - "projectPath": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be.csproj", - "packagesPath": "/root/.nuget/packages/", - "outputPath": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/obj/", + "projectPath": "D:\\Projects\\douwco.be\\douwco.be.csproj", + "packagesPath": "C:\\Users\\douwe\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\douwco.be\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "/root/.nuget/NuGet/NuGet.Config" + "C:\\Users\\douwe\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ - "net9.0" + "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "net9.0": { - "targetAlias": "net9.0", + "net8.0": { + "targetAlias": "net8.0", "projectReferences": {} } }, @@ -43,12 +46,11 @@ "enableAudit": "true", "auditLevel": "low", "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.200" + } }, "frameworks": { - "net9.0": { - "targetAlias": "net9.0", + "net8.0": { + "targetAlias": "net8.0", "imports": [ "net461", "net462", @@ -68,7 +70,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.203/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.401/PortableRuntimeIdentifierGraph.json" } } } diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index f7267f1..4416fc3 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "hLRhXcfSk3M=", + "dgSpecHash": "lTf8fIGMNXk=", "success": true, - "projectFilePath": "/mnt/hdd/home_ext/douwe/Projects/douwco.be/douwco.be.csproj", + "projectFilePath": "D:\\Projects\\douwco.be\\douwco.be.csproj", "expectedPackageFiles": [], "logs": [] } \ No newline at end of file