First version of the new layout.

This commit is contained in:
2026-02-12 02:58:57 +01:00
parent 46395bb945
commit 124c97e6cc
278 changed files with 500 additions and 83715 deletions

View File

@@ -0,0 +1,15 @@
# Default ignored files
/shelf/
/workspace.xml
# Rider ignored files
/contentModel.xml
/projectSettingsUpdater.xml
/modules.xml
/.idea.DouwcoWebsite.iml
# Ignored default folder with query files
/queries/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/

View File

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

View File

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

View File

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

23
DouwcoWebsite/Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base
USER $APP_UID
WORKDIR /app
EXPOSE 8080
EXPOSE 8081
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
ARG BUILD_CONFIGURATION=Release
WORKDIR /src
COPY ["DouwcoWebsite/DouwcoWebsite.csproj", "DouwcoWebsite/"]
RUN dotnet restore "DouwcoWebsite/DouwcoWebsite.csproj"
COPY . .
WORKDIR "/src/DouwcoWebsite"
RUN dotnet build "./DouwcoWebsite.csproj" -c $BUILD_CONFIGURATION -o /app/build
FROM build AS publish
ARG BUILD_CONFIGURATION=Release
RUN dotnet publish "./DouwcoWebsite.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "DouwcoWebsite.dll"]

View File

@@ -0,0 +1,91 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>
<Content Include="..\.dockerignore">
<Link>.dockerignore</Link>
</Content>
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.min.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.js.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.min.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.min.js.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\LICENSE" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\dist\jquery.validate.unobtrusive.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\dist\jquery.validate.unobtrusive.min.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\additional-methods.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\additional-methods.min.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\jquery.validate.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\jquery.validate.min.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\LICENSE.md" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.min.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.min.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.min.js" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.min.map" />
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\LICENSE.txt" />
<_ContentIncludedByDefault Remove="Pages\AboutMe.cshtml" />
<_ContentIncludedByDefault Remove="Pages\DouwcoApps.cshtml" />
<_ContentIncludedByDefault Remove="Pages\Error.cshtml" />
<_ContentIncludedByDefault Remove="Pages\MyGames.cshtml" />
<_ContentIncludedByDefault Remove="Pages\Shared\_Layout.cshtml" />
<_ContentIncludedByDefault Remove="Pages\Shared\_ValidationScriptsPartial.cshtml" />
<_ContentIncludedByDefault Remove="Pages\_ViewImports.cshtml" />
<_ContentIncludedByDefault Remove="Pages\_ViewStart.cshtml" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\index.html" />
</ItemGroup>
</Project>

18
DouwcoWebsite/Program.cs Normal file
View File

@@ -0,0 +1,18 @@
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers(); // For API controllers
var app = builder.Build();
app.MapGet("/api/test", () => "test works!");
// Configure the HTTP request pipeline.
// No need for UseHttpsRedirection or UseHsts, as Nginx handles SSL.
app.UseDefaultFiles(); // Enable default file serving
app.UseStaticFiles(); // Serve static files from wwwroot
app.UseRouting();
app.UseAuthorization();
app.MapControllers(); // Map API controllers
app.Run();

View File

@@ -0,0 +1,14 @@
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"profiles": {
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "http://localhost:8080",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}

View File

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

View File

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

Binary file not shown.

View File

@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v10.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v10.0": {
"DouwcoWebsite/1.0.0": {
"runtime": {
"DouwcoWebsite.dll": {}
}
}
}
},
"libraries": {
"DouwcoWebsite/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

Binary file not shown.

Binary file not shown.

View File

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

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"ContentRoots":["/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/wwwroot/","/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"index.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5pgf5y6ixc-{0}-wr1co08aqt-wr1co08aqt.gz"},"Patterns":null},"css":{"Children":{"douwco.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/douwco.css"},"Patterns":null},"douwco.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz"},"Patterns":null},"index.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/index.css"},"Patterns":null},"index.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zzt9de8h98-{0}-lzrvpymso3-lzrvpymso3.gz"},"Patterns":null},"style.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/style.css"},"Patterns":null},"style.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y4abnvwn9e-{0}-83k5mynxz9-83k5mynxz9.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"Montserrat-Bold.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Montserrat-Bold.ttf"},"Patterns":null},"Montserrat-Regular.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Montserrat-Regular.ttf"},"Patterns":null},"Righteous-Regular.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Righteous-Regular.ttf"},"Patterns":null}},"Asset":null,"Patterns":null},"img":{"Children":{"douwco_logo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/douwco_logo.png"},"Patterns":null},"icons":{"Children":{"devicegamepad2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/devicegamepad2.png"},"Patterns":null},"europe.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/europe.png"},"Patterns":null},"projects_icon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/projects_icon.png"},"Patterns":null},"user.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/user.png"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"includes":{"Children":{"about_me.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/about_me.html"},"Patterns":null},"about_me.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rqvxc4n2h7-{0}-mev0rr53vv-mev0rr53vv.gz"},"Patterns":null},"apps.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/apps.html"},"Patterns":null},"apps.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7kp535os10-{0}-iag5vy4gy9-iag5vy4gy9.gz"},"Patterns":null},"games.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/games.html"},"Patterns":null},"games.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ghqq3f4wla-{0}-a5uo9hlh1v-a5uo9hlh1v.gz"},"Patterns":null},"home.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/home.html"},"Patterns":null},"home.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u37b8dra09-{0}-jsinze90k8-jsinze90k8.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"index.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/index.js"},"Patterns":null},"index.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz"},"Patterns":null},"main.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/main.js"},"Patterns":null},"main.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}

View File

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

View File

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

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]

View File

@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("DouwcoWebsite")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+46395bb94539ca522b47a5d192381c8053cb0cbc")]
[assembly: System.Reflection.AssemblyProductAttribute("DouwcoWebsite")]
[assembly: System.Reflection.AssemblyTitleAttribute("DouwcoWebsite")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
510e5cd26bf2e72ce80e115d9623fd02b1b3a8a0ec8a8d8dfd46cd09aa77f982

View File

@@ -0,0 +1,23 @@
is_global = true
build_property.TargetFramework = net10.0
build_property.TargetFrameworkIdentifier = .NETCoreApp
build_property.TargetFrameworkVersion = v10.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = DouwcoWebsite
build_property.RootNamespace = DouwcoWebsite
build_property.ProjectDir = /mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 9.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = /mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite
build_property._RazorSourceGeneratorDebug =
build_property.EffectiveAnalysisLevelStyle = 10.0
build_property.EnableCodeStyleSeverity =

View File

@@ -0,0 +1,17 @@
// <auto-generated/>
global using Microsoft.AspNetCore.Builder;
global using Microsoft.AspNetCore.Hosting;
global using Microsoft.AspNetCore.Http;
global using Microsoft.AspNetCore.Routing;
global using Microsoft.Extensions.Configuration;
global using Microsoft.Extensions.DependencyInjection;
global using Microsoft.Extensions.Hosting;
global using Microsoft.Extensions.Logging;
global using System;
global using System.Collections.Generic;
global using System.IO;
global using System.Linq;
global using System.Net.Http;
global using System.Net.Http.Json;
global using System.Threading;
global using System.Threading.Tasks;

View File

@@ -0,0 +1 @@
4afd3dcdc573c6288e4e5270bf64b95490db9d279b01200723aac997e77ff4a0

View File

@@ -0,0 +1,135 @@
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/appsettings.Development.json
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/appsettings.json
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.deps.json
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.dll
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.pdb
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/rpswa.dswa.cache.json
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.MvcApplicationPartsAssemblyInfo.cache
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.RazorAssemblyInfo.cache
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.RazorAssemblyInfo.cs
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/rjimswa.dswa.cache.json
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/scopedcss/bundle/DouwcoWebsite.styles.css
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/lpy6u1e1e8-{0}-fr7q2aak1r-fr7q2aak1r.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/0emknxxut5-{0}-bqjiyaj88i-bqjiyaj88i.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/e5gpx79cxs-{0}-c2jlpeoesf-c2jlpeoesf.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/bsev5l1mto-{0}-erw9l3u2r3-erw9l3u2r3.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/bpoai94h6e-{0}-aexeepp0ev-aexeepp0ev.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/a85xz5z9rm-{0}-d7shbmvgxk-d7shbmvgxk.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/grnu1j994i-{0}-ausgxo2sd3-ausgxo2sd3.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/4y3srgojh1-{0}-k8d9w2qqmf-k8d9w2qqmf.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/deag4cc0ep-{0}-cosvhxvwiu-cosvhxvwiu.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/9a5zwgiaan-{0}-ub07r2b239-ub07r2b239.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/01soszrv00-{0}-fvhpjtyr6v-fvhpjtyr6v.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/h9z74ivryz-{0}-b7pk76d08c-b7pk76d08c.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/ialw4fnwcx-{0}-fsbi9cje9m-fsbi9cje9m.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/7mqlyvocgv-{0}-rzd6atqjts-rzd6atqjts.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/yl0mb51nsp-{0}-ee0r1s7dh0-ee0r1s7dh0.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/25dfnmbb9u-{0}-dxx9fxp4il-dxx9fxp4il.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/vzhbtdq8xa-{0}-jd9uben2k1-jd9uben2k1.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/dx9516ijn1-{0}-khv3u5hwcm-khv3u5hwcm.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/ivsf1pbtfl-{0}-r4e9w2rdcm-r4e9w2rdcm.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/vxd3kdoo5x-{0}-lcd1t2u6c8-lcd1t2u6c8.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/yyjat4wjps-{0}-c2oey78nd0-c2oey78nd0.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/g5jhhye44c-{0}-tdbxkamptv-tdbxkamptv.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/9j3o2w23du-{0}-j5mq2jizvt-j5mq2jizvt.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/nr5a3tbycd-{0}-06098lyss8-06098lyss8.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/he9jdx7oc3-{0}-nvvlpmu67g-nvvlpmu67g.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/z6isr2ofmm-{0}-s35ty4nyc5-s35ty4nyc5.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/zqxz5f6lhb-{0}-pj5nd1wqec-pj5nd1wqec.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/2c31mlx7tu-{0}-46ein0sx1k-46ein0sx1k.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/bby8wuls4f-{0}-v0zj4ognzu-v0zj4ognzu.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/te1t2p9he8-{0}-37tfw0ft22-37tfw0ft22.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/4wa4ad0sdm-{0}-hrwsygsryq-hrwsygsryq.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/5sm1pp01cd-{0}-pk9g2wxc8p-pk9g2wxc8p.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/wb0sojefje-{0}-ft3s53vfgj-ft3s53vfgj.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/ubh9t1cx6q-{0}-6cfz1n2cew-6cfz1n2cew.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/qaeeoxk0w3-{0}-6pdc2jztkx-6pdc2jztkx.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/fpeg47kp7z-{0}-493y06b0oq-493y06b0oq.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/x5ahjtjje6-{0}-iovd86k7lj-iovd86k7lj.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/y9rqwmg4kz-{0}-vr1egmr9el-vr1egmr9el.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/026ua00u9b-{0}-kbrnm935zg-kbrnm935zg.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/mukneu3cqb-{0}-jj8uyg4cgr-jj8uyg4cgr.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/soncbspue2-{0}-y7v9cxd14o-y7v9cxd14o.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/0dzmcr9vpm-{0}-notf2xhcfb-notf2xhcfb.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/3459n4ftmb-{0}-h1s4sie4z3-h1s4sie4z3.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/g7oxkujd5k-{0}-63fj8s7r0e-63fj8s7r0e.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/b9q6ycmmkx-{0}-0j3bgjxly4-0j3bgjxly4.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/grxt8kcu5w-{0}-47otxtyo56-47otxtyo56.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/awtwnwk9dt-{0}-4v8eqarkd7-4v8eqarkd7.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/lg4oyc8jfo-{0}-l3n5xuwxn8-l3n5xuwxn8.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/8g7trbycx9-{0}-ilo7uva0vt-ilo7uva0vt.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/g31fkeao1k-{0}-qlccset4i1-qlccset4i1.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/r0b9o2kz6p-{0}-lzl9nlhx6b-lzl9nlhx6b.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/larezwyena-{0}-ag7o75518u-ag7o75518u.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/c8jtyoy6mk-{0}-xzw0cte36n-xzw0cte36n.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/56t7cuiogq-{0}-0i3buxo5is-0i3buxo5is.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/2xoqamp7xs-{0}-o1o13a6vjx-o1o13a6vjx.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/koklc8j1re-{0}-ttgo8qnofa-ttgo8qnofa.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/p9fv74w3uc-{0}-2z0ns9nrw6-2z0ns9nrw6.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/fu8mzylu3u-{0}-muycvpuwrr-muycvpuwrr.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/tpaos3gjet-{0}-87fc7y1x7t-87fc7y1x7t.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/p36ukouwlr-{0}-jfsiqqwiad-jfsiqqwiad.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json.cache
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.development.json
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.endpoints.json
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/swae.build.ex.cache
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.dll
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/refint/DouwcoWebsite.dll
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.pdb
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/ref/DouwcoWebsite.dll
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-w4zorqzbn3-w4zorqzbn3.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/rbmw2odb2q-{0}-f18obfo6d0-f18obfo6d0.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz
/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/a7k0gmwsrx-{0}-p1gf7i41uv-p1gf7i41uv.gz
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/appsettings.Development.json
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/appsettings.json
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.deps.json
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.dll
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.pdb
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/rpswa.dswa.cache.json
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.MvcApplicationPartsAssemblyInfo.cache
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/rjimswa.dswa.cache.json
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/scopedcss/bundle/DouwcoWebsite.styles.css
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json.cache
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.development.json
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.endpoints.json
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/swae.build.ex.cache
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.dll
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/refint/DouwcoWebsite.dll
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.pdb
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/ref/DouwcoWebsite.dll
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-83k5mynxz9-83k5mynxz9.gz
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/zzt9de8h98-{0}-lzrvpymso3-lzrvpymso3.gz
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-mev0rr53vv-mev0rr53vv.gz
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-iag5vy4gy9-iag5vy4gy9.gz
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-a5uo9hlh1v-a5uo9hlh1v.gz
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-jsinze90k8-jsinze90k8.gz
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-wr1co08aqt-wr1co08aqt.gz
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz
/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz

Binary file not shown.

View File

@@ -0,0 +1 @@
2cdc00e42c32263e09985fb5ac9e0b9331bb26daa9b4cd9347dace3b0a5c76dd

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@@ -0,0 +1 @@
{"GlobalPropertiesHash":"vYuNcIjVKzyGW75+DqTgUAgYEp5dCBwjSmrFeRU5PjE=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["vdBwnpwGc5upgxuNSb4sgxVT39o7jxnMX2zV97h6NBk=","zsveIaJKw3M\u002BMxLcmD80aj0oSwEYRggXnRMlw9PG4UQ=","KDRstMyvgDcFLP/NydeTluST\u002BYd8/wJZCe5wmvQYQ\u002Bw=","MQrNVELxgfUl/ZxnrSJjlcCRrWHaMYK8uQcBInNvjjs=","fGwSZjBqUW9RBHV7kcpAqhZ1i9KjJu9SjiS1FMFCuwI=","fMBQy39OdgELR582E/A3k2UCuWmCYsfqRH7SxnC5ocI=","mB7tBAo8lkcyyNLNi1pMuXNpaM3nk/Yz99VqrqbrAMM=","dOPJYv14qi7HumRGXHQiW6/3qTXqNP1WhMjR\u002BO/x\u002BO8=","hSr58VgAXI\u002BEox\u002BfnQdfizZJWr1JeXDC6GqOa/bEkeA=","VuWHRjZYJw97WduJmQXgB9Tl8dpXDmC0vu58jR9HlyU=","Mp2YI33C/KVG\u002Bd4CW17J1L1entzVe0dmNu1/YkHMY/8=","qlsdEgYterOLvSCSYAtX7t2vhEURjomkXdI45nySh2o=","4A1FchraQd\u002Bdod/I/Nv\u002BMMkVHR6nmUPXXJ10P3P81tg=","qDl6m16/ckb5nePTO/wLRI4w9laLxG6sIasvGuptiMQ=","mCp1BWDS28suw5ubRWFQz6t4vn4tlWdEf/kwkb1c6Eo=","0iLl6DvSahRIpBQm9p6BdSqFjaw2jBf906TV1pT6bwM=","jfcp/non21En2UB6iGKIwnRZ09LeoG6xyNFN5qHkfUE=","bC1uOBxcpnj\u002BJV0R8gMNjAQdL2YbAkOUqn5xR0NPsyA=","XyGfov8NjxLWWuv5od2UmCWa3yJ1hnNhL\u002BmvhFzaCCc="],"CachedAssets":{},"CachedCopyCandidates":{}}

View File

@@ -0,0 +1 @@
{"GlobalPropertiesHash":"SrvrnKnW0ml707xHTqYAn/FambnldsUjxMbYVSBP2VA=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["D0Ce0qSQHQZERxar6lZbTjHHYgSEHhxHg1C2JsKXmss=","i/hZhfwbJVqkwXIC2Yh0KpAdXK2if/1xNba8M7AwM0I=","VnISQ9LBN7kg988ihqzElH4fhXx13AgkKza6ZdRBdCw=","NQvVgy9vpaBeVjtDP/ix9Wf9UAwWWDp9mb6GcHVrGDg=","6WRpyBpmd5dLY5Egy87vjscFVK51DydjGPR2v0z43wI=","uISs69MN2c\u002BYwOqCorgZj2w957igHAJKAyD2qqfuxCE=","0aEymHUblJCzrT\u002BYpRc/SX/GKx/MOM6Q5a6pZh2B9wk=","nmPQ5Lxh8vXuaL9fFrqSUuAph12cMjDpJil5IT34cQU=","sqErPrna6OhR5N9xVGAMJPpktMV4u/mK3hE7/5DeLvw=","VjcjU2ATOKXZD3Uh8cNQFwrKrt7KX1y\u002BhCC1nMPG4LA=","ybqFS7g1DwUGiIxPCbdvpPNgMahc33aeXjjQxS39S7Y=","oH9166Bdqb//2XWHqgfsno8IIzuApfHKzvXU\u002BrAXmxs=","XgnNtksgCfLIP7sfarGxsdzQLaR7NebusaRMg8RGx4U=","QN541pJD7RcGpI4AYJYbmSglg/ShbZrLeOCIMSBNjNs=","Ikth7\u002BJnIWIxM7kmwkduGvuvrrFn04qmz5Bs9LC0Lf4=","1Mjs1wzH8dkrDKiNdQqPxebdR7VL3\u002BW1PMnYeDvapls=","4Sze8G293g42zKGbSndjtpdPcoDqY83RuMFleQmJOgA=","SdzSZEbYQ9z06MBDFbWaStyOz6K/PuH00bhuUZBKwgw=","o6TC2vvEc0LE1DbYcL9qKTLg1yS1S4ZVN5vIAZWLzAI=","fdNLKToXFDaUAYX7XN\u002BONzPYK5i7qD95w2iyhAaqR0M=","uy10XIUXgBNbIK7Xs8NY0RJHC8ZSbORdYfGGYlKDzFs=","nefXVowmAr7kRhGZYl\u002BpSK/S2mm98VzMc2YejdStVSM=","vp8PQaOJ3fEgJVlWVWljs8q7ElmbRYhBL2gffF/PDyE=","zQNcJH1copfgYDYAQMe\u002B2Yod0x18UKwL6M2szvEiqdo=","W69m2VS/g2KS6vzxd0uiVeeTgYkltILaSaNWSBEqMo0="],"CachedAssets":{},"CachedCopyCandidates":{}}

View File

@@ -0,0 +1 @@
{"GlobalPropertiesHash":"GMVRnpIlK2jZd1Fjg8xhuYgn9+KMdx1xELIlPoR5yHM=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["D0Ce0qSQHQZERxar6lZbTjHHYgSEHhxHg1C2JsKXmss=","i/hZhfwbJVqkwXIC2Yh0KpAdXK2if/1xNba8M7AwM0I=","VnISQ9LBN7kg988ihqzElH4fhXx13AgkKza6ZdRBdCw=","NQvVgy9vpaBeVjtDP/ix9Wf9UAwWWDp9mb6GcHVrGDg=","6WRpyBpmd5dLY5Egy87vjscFVK51DydjGPR2v0z43wI=","uISs69MN2c\u002BYwOqCorgZj2w957igHAJKAyD2qqfuxCE=","0aEymHUblJCzrT\u002BYpRc/SX/GKx/MOM6Q5a6pZh2B9wk=","nmPQ5Lxh8vXuaL9fFrqSUuAph12cMjDpJil5IT34cQU=","sqErPrna6OhR5N9xVGAMJPpktMV4u/mK3hE7/5DeLvw=","VjcjU2ATOKXZD3Uh8cNQFwrKrt7KX1y\u002BhCC1nMPG4LA=","ybqFS7g1DwUGiIxPCbdvpPNgMahc33aeXjjQxS39S7Y=","oH9166Bdqb//2XWHqgfsno8IIzuApfHKzvXU\u002BrAXmxs=","XgnNtksgCfLIP7sfarGxsdzQLaR7NebusaRMg8RGx4U=","QN541pJD7RcGpI4AYJYbmSglg/ShbZrLeOCIMSBNjNs=","Ikth7\u002BJnIWIxM7kmwkduGvuvrrFn04qmz5Bs9LC0Lf4=","1Mjs1wzH8dkrDKiNdQqPxebdR7VL3\u002BW1PMnYeDvapls=","4Sze8G293g42zKGbSndjtpdPcoDqY83RuMFleQmJOgA=","SdzSZEbYQ9z06MBDFbWaStyOz6K/PuH00bhuUZBKwgw=","o6TC2vvEc0LE1DbYcL9qKTLg1yS1S4ZVN5vIAZWLzAI=","fdNLKToXFDaUAYX7XN\u002BONzPYK5i7qD95w2iyhAaqR0M=","uy10XIUXgBNbIK7Xs8NY0RJHC8ZSbORdYfGGYlKDzFs=","nefXVowmAr7kRhGZYl\u002BpSK/S2mm98VzMc2YejdStVSM=","vp8PQaOJ3fEgJVlWVWljs8q7ElmbRYhBL2gffF/PDyE=","zQNcJH1copfgYDYAQMe\u002B2Yod0x18UKwL6M2szvEiqdo=","W69m2VS/g2KS6vzxd0uiVeeTgYkltILaSaNWSBEqMo0="],"CachedAssets":{},"CachedCopyCandidates":{}}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,49 @@
/* /Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
a.navbar-brand[b-ne5ffaaxii] {
white-space: normal;
text-align: center;
word-break: break-all;
}
a[b-ne5ffaaxii] {
color: #0077cc;
}
.btn-primary[b-ne5ffaaxii] {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.nav-pills .nav-link.active[b-ne5ffaaxii], .nav-pills .show > .nav-link[b-ne5ffaaxii] {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.border-top[b-ne5ffaaxii] {
border-top: 1px solid #e5e5e5;
}
.border-bottom[b-ne5ffaaxii] {
border-bottom: 1px solid #e5e5e5;
}
.box-shadow[b-ne5ffaaxii] {
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}
button.accept-policy[b-ne5ffaaxii] {
font-size: 1rem;
line-height: inherit;
}
.footer[b-ne5ffaaxii] {
position: absolute;
bottom: 0;
width: 100%;
white-space: nowrap;
line-height: 60px;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
Uy6Od2OMgGRtUAzICQEsRzdidBplUieC+aNJ5eENus4=

View File

@@ -0,0 +1 @@
{"ContentRoots":["/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/wwwroot/","/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"index.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5pgf5y6ixc-{0}-wr1co08aqt-wr1co08aqt.gz"},"Patterns":null},"css":{"Children":{"douwco.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/douwco.css"},"Patterns":null},"douwco.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz"},"Patterns":null},"index.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/index.css"},"Patterns":null},"index.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zzt9de8h98-{0}-lzrvpymso3-lzrvpymso3.gz"},"Patterns":null},"style.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/style.css"},"Patterns":null},"style.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y4abnvwn9e-{0}-83k5mynxz9-83k5mynxz9.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"Montserrat-Bold.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Montserrat-Bold.ttf"},"Patterns":null},"Montserrat-Regular.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Montserrat-Regular.ttf"},"Patterns":null},"Righteous-Regular.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Righteous-Regular.ttf"},"Patterns":null}},"Asset":null,"Patterns":null},"img":{"Children":{"douwco_logo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/douwco_logo.png"},"Patterns":null},"icons":{"Children":{"devicegamepad2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/devicegamepad2.png"},"Patterns":null},"europe.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/europe.png"},"Patterns":null},"projects_icon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/projects_icon.png"},"Patterns":null},"user.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/user.png"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"includes":{"Children":{"about_me.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/about_me.html"},"Patterns":null},"about_me.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rqvxc4n2h7-{0}-mev0rr53vv-mev0rr53vv.gz"},"Patterns":null},"apps.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/apps.html"},"Patterns":null},"apps.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7kp535os10-{0}-iag5vy4gy9-iag5vy4gy9.gz"},"Patterns":null},"games.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/games.html"},"Patterns":null},"games.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ghqq3f4wla-{0}-a5uo9hlh1v-a5uo9hlh1v.gz"},"Patterns":null},"home.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/home.html"},"Patterns":null},"home.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u37b8dra09-{0}-jsinze90k8-jsinze90k8.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"index.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/index.js"},"Patterns":null},"index.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz"},"Patterns":null},"main.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/main.js"},"Patterns":null},"main.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}

View File

@@ -0,0 +1,485 @@
{
"format": 1,
"restore": {
"/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/DouwcoWebsite.csproj": {}
},
"projects": {
"/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/DouwcoWebsite.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/DouwcoWebsite.csproj",
"projectName": "DouwcoWebsite",
"projectPath": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/DouwcoWebsite.csproj",
"packagesPath": "/home/douwe/.nuget/packages/",
"outputPath": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/home/douwe/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net10.0"
],
"sources": {
"/usr/lib/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net10.0": {
"targetAlias": "net10.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "all"
},
"SdkAnalysisLevel": "10.0.100"
},
"frameworks": {
"net10.0": {
"targetAlias": "net10.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.AspNetCore.App": {
"privateAssets": "none"
},
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/10.0.103/PortableRuntimeIdentifierGraph.json",
"packagesToPrune": {
"Microsoft.AspNetCore": "(,10.0.32767]",
"Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]",
"Microsoft.AspNetCore.App": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]",
"Microsoft.AspNetCore.Authorization": "(,10.0.32767]",
"Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]",
"Microsoft.AspNetCore.Components": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Server": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Web": "(,10.0.32767]",
"Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]",
"Microsoft.AspNetCore.Cors": "(,10.0.32767]",
"Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]",
"Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]",
"Microsoft.AspNetCore.DataProtection": "(,10.0.32767]",
"Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]",
"Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]",
"Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]",
"Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]",
"Microsoft.AspNetCore.Hosting": "(,10.0.32767]",
"Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Http": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Features": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Results": "(,10.0.32767]",
"Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]",
"Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]",
"Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]",
"Microsoft.AspNetCore.Identity": "(,10.0.32767]",
"Microsoft.AspNetCore.Localization": "(,10.0.32767]",
"Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]",
"Microsoft.AspNetCore.Metadata": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]",
"Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]",
"Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]",
"Microsoft.AspNetCore.Razor": "(,10.0.32767]",
"Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]",
"Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]",
"Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]",
"Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]",
"Microsoft.AspNetCore.Rewrite": "(,10.0.32767]",
"Microsoft.AspNetCore.Routing": "(,10.0.32767]",
"Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]",
"Microsoft.AspNetCore.Session": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]",
"Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]",
"Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]",
"Microsoft.AspNetCore.WebSockets": "(,10.0.32767]",
"Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]",
"Microsoft.CSharp": "(,4.7.32767]",
"Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
"Microsoft.Extensions.Configuration": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
"Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
"Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Features": "(,10.0.32767]",
"Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
"Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
"Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
"Microsoft.Extensions.Hosting": "(,10.0.32767]",
"Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Http": "(,10.0.32767]",
"Microsoft.Extensions.Identity.Core": "(,10.0.32767]",
"Microsoft.Extensions.Identity.Stores": "(,10.0.32767]",
"Microsoft.Extensions.Localization": "(,10.0.32767]",
"Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Logging": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
"Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
"Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
"Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
"Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
"Microsoft.Extensions.Options": "(,10.0.32767]",
"Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
"Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
"Microsoft.Extensions.Primitives": "(,10.0.32767]",
"Microsoft.Extensions.Validation": "(,10.0.32767]",
"Microsoft.Extensions.WebEncoders": "(,10.0.32767]",
"Microsoft.JSInterop": "(,10.0.32767]",
"Microsoft.Net.Http.Headers": "(,10.0.32767]",
"Microsoft.VisualBasic": "(,10.4.32767]",
"Microsoft.Win32.Primitives": "(,4.3.32767]",
"Microsoft.Win32.Registry": "(,5.0.32767]",
"runtime.any.System.Collections": "(,4.3.32767]",
"runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
"runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
"runtime.any.System.Globalization": "(,4.3.32767]",
"runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
"runtime.any.System.IO": "(,4.3.32767]",
"runtime.any.System.Reflection": "(,4.3.32767]",
"runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
"runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
"runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
"runtime.any.System.Runtime": "(,4.3.32767]",
"runtime.any.System.Runtime.Handles": "(,4.3.32767]",
"runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
"runtime.any.System.Text.Encoding": "(,4.3.32767]",
"runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
"runtime.any.System.Threading.Tasks": "(,4.3.32767]",
"runtime.any.System.Threading.Timer": "(,4.3.32767]",
"runtime.aot.System.Collections": "(,4.3.32767]",
"runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
"runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
"runtime.aot.System.Globalization": "(,4.3.32767]",
"runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
"runtime.aot.System.IO": "(,4.3.32767]",
"runtime.aot.System.Reflection": "(,4.3.32767]",
"runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
"runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
"runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
"runtime.aot.System.Runtime": "(,4.3.32767]",
"runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
"runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
"runtime.aot.System.Text.Encoding": "(,4.3.32767]",
"runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
"runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
"runtime.aot.System.Threading.Timer": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
"runtime.unix.System.Console": "(,4.3.32767]",
"runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
"runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
"runtime.unix.System.Net.Primitives": "(,4.3.32767]",
"runtime.unix.System.Net.Sockets": "(,4.3.32767]",
"runtime.unix.System.Private.Uri": "(,4.3.32767]",
"runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
"runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
"runtime.win.System.Console": "(,4.3.32767]",
"runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
"runtime.win.System.IO.FileSystem": "(,4.3.32767]",
"runtime.win.System.Net.Primitives": "(,4.3.32767]",
"runtime.win.System.Net.Sockets": "(,4.3.32767]",
"runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win7.System.Private.Uri": "(,4.3.32767]",
"runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
"System.AppContext": "(,4.3.32767]",
"System.Buffers": "(,5.0.32767]",
"System.Collections": "(,4.3.32767]",
"System.Collections.Concurrent": "(,4.3.32767]",
"System.Collections.Immutable": "(,10.0.32767]",
"System.Collections.NonGeneric": "(,4.3.32767]",
"System.Collections.Specialized": "(,4.3.32767]",
"System.ComponentModel": "(,4.3.32767]",
"System.ComponentModel.Annotations": "(,4.3.32767]",
"System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
"System.ComponentModel.Primitives": "(,4.3.32767]",
"System.ComponentModel.TypeConverter": "(,4.3.32767]",
"System.Console": "(,4.3.32767]",
"System.Data.Common": "(,4.3.32767]",
"System.Data.DataSetExtensions": "(,4.4.32767]",
"System.Diagnostics.Contracts": "(,4.3.32767]",
"System.Diagnostics.Debug": "(,4.3.32767]",
"System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
"System.Diagnostics.EventLog": "(,10.0.32767]",
"System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
"System.Diagnostics.Process": "(,4.3.32767]",
"System.Diagnostics.StackTrace": "(,4.3.32767]",
"System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
"System.Diagnostics.Tools": "(,4.3.32767]",
"System.Diagnostics.TraceSource": "(,4.3.32767]",
"System.Diagnostics.Tracing": "(,4.3.32767]",
"System.Drawing.Primitives": "(,4.3.32767]",
"System.Dynamic.Runtime": "(,4.3.32767]",
"System.Formats.Asn1": "(,10.0.32767]",
"System.Formats.Cbor": "(,10.0.32767]",
"System.Formats.Tar": "(,10.0.32767]",
"System.Globalization": "(,4.3.32767]",
"System.Globalization.Calendars": "(,4.3.32767]",
"System.Globalization.Extensions": "(,4.3.32767]",
"System.IO": "(,4.3.32767]",
"System.IO.Compression": "(,4.3.32767]",
"System.IO.Compression.ZipFile": "(,4.3.32767]",
"System.IO.FileSystem": "(,4.3.32767]",
"System.IO.FileSystem.AccessControl": "(,4.4.32767]",
"System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
"System.IO.FileSystem.Primitives": "(,4.3.32767]",
"System.IO.FileSystem.Watcher": "(,4.3.32767]",
"System.IO.IsolatedStorage": "(,4.3.32767]",
"System.IO.MemoryMappedFiles": "(,4.3.32767]",
"System.IO.Pipelines": "(,10.0.32767]",
"System.IO.Pipes": "(,4.3.32767]",
"System.IO.Pipes.AccessControl": "(,5.0.32767]",
"System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
"System.Linq": "(,4.3.32767]",
"System.Linq.AsyncEnumerable": "(,10.0.32767]",
"System.Linq.Expressions": "(,4.3.32767]",
"System.Linq.Parallel": "(,4.3.32767]",
"System.Linq.Queryable": "(,4.3.32767]",
"System.Memory": "(,5.0.32767]",
"System.Net.Http": "(,4.3.32767]",
"System.Net.Http.Json": "(,10.0.32767]",
"System.Net.NameResolution": "(,4.3.32767]",
"System.Net.NetworkInformation": "(,4.3.32767]",
"System.Net.Ping": "(,4.3.32767]",
"System.Net.Primitives": "(,4.3.32767]",
"System.Net.Requests": "(,4.3.32767]",
"System.Net.Security": "(,4.3.32767]",
"System.Net.ServerSentEvents": "(,10.0.32767]",
"System.Net.Sockets": "(,4.3.32767]",
"System.Net.WebHeaderCollection": "(,4.3.32767]",
"System.Net.WebSockets": "(,4.3.32767]",
"System.Net.WebSockets.Client": "(,4.3.32767]",
"System.Numerics.Vectors": "(,5.0.32767]",
"System.ObjectModel": "(,4.3.32767]",
"System.Private.DataContractSerialization": "(,4.3.32767]",
"System.Private.Uri": "(,4.3.32767]",
"System.Reflection": "(,4.3.32767]",
"System.Reflection.DispatchProxy": "(,6.0.32767]",
"System.Reflection.Emit": "(,4.7.32767]",
"System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
"System.Reflection.Emit.Lightweight": "(,4.7.32767]",
"System.Reflection.Extensions": "(,4.3.32767]",
"System.Reflection.Metadata": "(,10.0.32767]",
"System.Reflection.Primitives": "(,4.3.32767]",
"System.Reflection.TypeExtensions": "(,4.3.32767]",
"System.Resources.Reader": "(,4.3.32767]",
"System.Resources.ResourceManager": "(,4.3.32767]",
"System.Resources.Writer": "(,4.3.32767]",
"System.Runtime": "(,4.3.32767]",
"System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
"System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
"System.Runtime.Extensions": "(,4.3.32767]",
"System.Runtime.Handles": "(,4.3.32767]",
"System.Runtime.InteropServices": "(,4.3.32767]",
"System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
"System.Runtime.Loader": "(,4.3.32767]",
"System.Runtime.Numerics": "(,4.3.32767]",
"System.Runtime.Serialization.Formatters": "(,4.3.32767]",
"System.Runtime.Serialization.Json": "(,4.3.32767]",
"System.Runtime.Serialization.Primitives": "(,4.3.32767]",
"System.Runtime.Serialization.Xml": "(,4.3.32767]",
"System.Security.AccessControl": "(,6.0.32767]",
"System.Security.Claims": "(,4.3.32767]",
"System.Security.Cryptography.Algorithms": "(,4.3.32767]",
"System.Security.Cryptography.Cng": "(,5.0.32767]",
"System.Security.Cryptography.Csp": "(,4.3.32767]",
"System.Security.Cryptography.Encoding": "(,4.3.32767]",
"System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
"System.Security.Cryptography.Primitives": "(,4.3.32767]",
"System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
"System.Security.Cryptography.Xml": "(,10.0.32767]",
"System.Security.Principal": "(,4.3.32767]",
"System.Security.Principal.Windows": "(,5.0.32767]",
"System.Security.SecureString": "(,4.3.32767]",
"System.Text.Encoding": "(,4.3.32767]",
"System.Text.Encoding.CodePages": "(,10.0.32767]",
"System.Text.Encoding.Extensions": "(,4.3.32767]",
"System.Text.Encodings.Web": "(,10.0.32767]",
"System.Text.Json": "(,10.0.32767]",
"System.Text.RegularExpressions": "(,4.3.32767]",
"System.Threading": "(,4.3.32767]",
"System.Threading.AccessControl": "(,10.0.32767]",
"System.Threading.Channels": "(,10.0.32767]",
"System.Threading.Overlapped": "(,4.3.32767]",
"System.Threading.RateLimiting": "(,10.0.32767]",
"System.Threading.Tasks": "(,4.3.32767]",
"System.Threading.Tasks.Dataflow": "(,10.0.32767]",
"System.Threading.Tasks.Extensions": "(,5.0.32767]",
"System.Threading.Tasks.Parallel": "(,4.3.32767]",
"System.Threading.Thread": "(,4.3.32767]",
"System.Threading.ThreadPool": "(,4.3.32767]",
"System.Threading.Timer": "(,4.3.32767]",
"System.ValueTuple": "(,4.5.32767]",
"System.Xml.ReaderWriter": "(,4.3.32767]",
"System.Xml.XDocument": "(,4.3.32767]",
"System.Xml.XmlDocument": "(,4.3.32767]",
"System.Xml.XmlSerializer": "(,4.3.32767]",
"System.Xml.XPath": "(,4.3.32767]",
"System.Xml.XPath.XDocument": "(,5.0.32767]"
}
}
}
}
}
}

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/douwe/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/douwe/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/douwe/.nuget/packages/" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,490 @@
{
"version": 3,
"targets": {
"net10.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net10.0": []
},
"packageFolders": {
"/home/douwe/.nuget/packages/": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/DouwcoWebsite.csproj",
"projectName": "DouwcoWebsite",
"projectPath": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/DouwcoWebsite.csproj",
"packagesPath": "/home/douwe/.nuget/packages/",
"outputPath": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/home/douwe/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net10.0"
],
"sources": {
"/usr/lib/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net10.0": {
"targetAlias": "net10.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "all"
},
"SdkAnalysisLevel": "10.0.100"
},
"frameworks": {
"net10.0": {
"targetAlias": "net10.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.AspNetCore.App": {
"privateAssets": "none"
},
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/10.0.103/PortableRuntimeIdentifierGraph.json",
"packagesToPrune": {
"Microsoft.AspNetCore": "(,10.0.32767]",
"Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]",
"Microsoft.AspNetCore.App": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]",
"Microsoft.AspNetCore.Authorization": "(,10.0.32767]",
"Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]",
"Microsoft.AspNetCore.Components": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Server": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Web": "(,10.0.32767]",
"Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]",
"Microsoft.AspNetCore.Cors": "(,10.0.32767]",
"Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]",
"Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]",
"Microsoft.AspNetCore.DataProtection": "(,10.0.32767]",
"Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]",
"Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]",
"Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]",
"Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]",
"Microsoft.AspNetCore.Hosting": "(,10.0.32767]",
"Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Http": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Features": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Results": "(,10.0.32767]",
"Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]",
"Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]",
"Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]",
"Microsoft.AspNetCore.Identity": "(,10.0.32767]",
"Microsoft.AspNetCore.Localization": "(,10.0.32767]",
"Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]",
"Microsoft.AspNetCore.Metadata": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]",
"Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]",
"Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]",
"Microsoft.AspNetCore.Razor": "(,10.0.32767]",
"Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]",
"Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]",
"Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]",
"Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]",
"Microsoft.AspNetCore.Rewrite": "(,10.0.32767]",
"Microsoft.AspNetCore.Routing": "(,10.0.32767]",
"Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]",
"Microsoft.AspNetCore.Session": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]",
"Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]",
"Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]",
"Microsoft.AspNetCore.WebSockets": "(,10.0.32767]",
"Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]",
"Microsoft.CSharp": "(,4.7.32767]",
"Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
"Microsoft.Extensions.Configuration": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
"Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
"Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Features": "(,10.0.32767]",
"Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
"Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
"Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
"Microsoft.Extensions.Hosting": "(,10.0.32767]",
"Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Http": "(,10.0.32767]",
"Microsoft.Extensions.Identity.Core": "(,10.0.32767]",
"Microsoft.Extensions.Identity.Stores": "(,10.0.32767]",
"Microsoft.Extensions.Localization": "(,10.0.32767]",
"Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Logging": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
"Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
"Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
"Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
"Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
"Microsoft.Extensions.Options": "(,10.0.32767]",
"Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
"Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
"Microsoft.Extensions.Primitives": "(,10.0.32767]",
"Microsoft.Extensions.Validation": "(,10.0.32767]",
"Microsoft.Extensions.WebEncoders": "(,10.0.32767]",
"Microsoft.JSInterop": "(,10.0.32767]",
"Microsoft.Net.Http.Headers": "(,10.0.32767]",
"Microsoft.VisualBasic": "(,10.4.32767]",
"Microsoft.Win32.Primitives": "(,4.3.32767]",
"Microsoft.Win32.Registry": "(,5.0.32767]",
"runtime.any.System.Collections": "(,4.3.32767]",
"runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
"runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
"runtime.any.System.Globalization": "(,4.3.32767]",
"runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
"runtime.any.System.IO": "(,4.3.32767]",
"runtime.any.System.Reflection": "(,4.3.32767]",
"runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
"runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
"runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
"runtime.any.System.Runtime": "(,4.3.32767]",
"runtime.any.System.Runtime.Handles": "(,4.3.32767]",
"runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
"runtime.any.System.Text.Encoding": "(,4.3.32767]",
"runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
"runtime.any.System.Threading.Tasks": "(,4.3.32767]",
"runtime.any.System.Threading.Timer": "(,4.3.32767]",
"runtime.aot.System.Collections": "(,4.3.32767]",
"runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
"runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
"runtime.aot.System.Globalization": "(,4.3.32767]",
"runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
"runtime.aot.System.IO": "(,4.3.32767]",
"runtime.aot.System.Reflection": "(,4.3.32767]",
"runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
"runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
"runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
"runtime.aot.System.Runtime": "(,4.3.32767]",
"runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
"runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
"runtime.aot.System.Text.Encoding": "(,4.3.32767]",
"runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
"runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
"runtime.aot.System.Threading.Timer": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
"runtime.unix.System.Console": "(,4.3.32767]",
"runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
"runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
"runtime.unix.System.Net.Primitives": "(,4.3.32767]",
"runtime.unix.System.Net.Sockets": "(,4.3.32767]",
"runtime.unix.System.Private.Uri": "(,4.3.32767]",
"runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
"runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
"runtime.win.System.Console": "(,4.3.32767]",
"runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
"runtime.win.System.IO.FileSystem": "(,4.3.32767]",
"runtime.win.System.Net.Primitives": "(,4.3.32767]",
"runtime.win.System.Net.Sockets": "(,4.3.32767]",
"runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win7.System.Private.Uri": "(,4.3.32767]",
"runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
"System.AppContext": "(,4.3.32767]",
"System.Buffers": "(,5.0.32767]",
"System.Collections": "(,4.3.32767]",
"System.Collections.Concurrent": "(,4.3.32767]",
"System.Collections.Immutable": "(,10.0.32767]",
"System.Collections.NonGeneric": "(,4.3.32767]",
"System.Collections.Specialized": "(,4.3.32767]",
"System.ComponentModel": "(,4.3.32767]",
"System.ComponentModel.Annotations": "(,4.3.32767]",
"System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
"System.ComponentModel.Primitives": "(,4.3.32767]",
"System.ComponentModel.TypeConverter": "(,4.3.32767]",
"System.Console": "(,4.3.32767]",
"System.Data.Common": "(,4.3.32767]",
"System.Data.DataSetExtensions": "(,4.4.32767]",
"System.Diagnostics.Contracts": "(,4.3.32767]",
"System.Diagnostics.Debug": "(,4.3.32767]",
"System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
"System.Diagnostics.EventLog": "(,10.0.32767]",
"System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
"System.Diagnostics.Process": "(,4.3.32767]",
"System.Diagnostics.StackTrace": "(,4.3.32767]",
"System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
"System.Diagnostics.Tools": "(,4.3.32767]",
"System.Diagnostics.TraceSource": "(,4.3.32767]",
"System.Diagnostics.Tracing": "(,4.3.32767]",
"System.Drawing.Primitives": "(,4.3.32767]",
"System.Dynamic.Runtime": "(,4.3.32767]",
"System.Formats.Asn1": "(,10.0.32767]",
"System.Formats.Cbor": "(,10.0.32767]",
"System.Formats.Tar": "(,10.0.32767]",
"System.Globalization": "(,4.3.32767]",
"System.Globalization.Calendars": "(,4.3.32767]",
"System.Globalization.Extensions": "(,4.3.32767]",
"System.IO": "(,4.3.32767]",
"System.IO.Compression": "(,4.3.32767]",
"System.IO.Compression.ZipFile": "(,4.3.32767]",
"System.IO.FileSystem": "(,4.3.32767]",
"System.IO.FileSystem.AccessControl": "(,4.4.32767]",
"System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
"System.IO.FileSystem.Primitives": "(,4.3.32767]",
"System.IO.FileSystem.Watcher": "(,4.3.32767]",
"System.IO.IsolatedStorage": "(,4.3.32767]",
"System.IO.MemoryMappedFiles": "(,4.3.32767]",
"System.IO.Pipelines": "(,10.0.32767]",
"System.IO.Pipes": "(,4.3.32767]",
"System.IO.Pipes.AccessControl": "(,5.0.32767]",
"System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
"System.Linq": "(,4.3.32767]",
"System.Linq.AsyncEnumerable": "(,10.0.32767]",
"System.Linq.Expressions": "(,4.3.32767]",
"System.Linq.Parallel": "(,4.3.32767]",
"System.Linq.Queryable": "(,4.3.32767]",
"System.Memory": "(,5.0.32767]",
"System.Net.Http": "(,4.3.32767]",
"System.Net.Http.Json": "(,10.0.32767]",
"System.Net.NameResolution": "(,4.3.32767]",
"System.Net.NetworkInformation": "(,4.3.32767]",
"System.Net.Ping": "(,4.3.32767]",
"System.Net.Primitives": "(,4.3.32767]",
"System.Net.Requests": "(,4.3.32767]",
"System.Net.Security": "(,4.3.32767]",
"System.Net.ServerSentEvents": "(,10.0.32767]",
"System.Net.Sockets": "(,4.3.32767]",
"System.Net.WebHeaderCollection": "(,4.3.32767]",
"System.Net.WebSockets": "(,4.3.32767]",
"System.Net.WebSockets.Client": "(,4.3.32767]",
"System.Numerics.Vectors": "(,5.0.32767]",
"System.ObjectModel": "(,4.3.32767]",
"System.Private.DataContractSerialization": "(,4.3.32767]",
"System.Private.Uri": "(,4.3.32767]",
"System.Reflection": "(,4.3.32767]",
"System.Reflection.DispatchProxy": "(,6.0.32767]",
"System.Reflection.Emit": "(,4.7.32767]",
"System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
"System.Reflection.Emit.Lightweight": "(,4.7.32767]",
"System.Reflection.Extensions": "(,4.3.32767]",
"System.Reflection.Metadata": "(,10.0.32767]",
"System.Reflection.Primitives": "(,4.3.32767]",
"System.Reflection.TypeExtensions": "(,4.3.32767]",
"System.Resources.Reader": "(,4.3.32767]",
"System.Resources.ResourceManager": "(,4.3.32767]",
"System.Resources.Writer": "(,4.3.32767]",
"System.Runtime": "(,4.3.32767]",
"System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
"System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
"System.Runtime.Extensions": "(,4.3.32767]",
"System.Runtime.Handles": "(,4.3.32767]",
"System.Runtime.InteropServices": "(,4.3.32767]",
"System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
"System.Runtime.Loader": "(,4.3.32767]",
"System.Runtime.Numerics": "(,4.3.32767]",
"System.Runtime.Serialization.Formatters": "(,4.3.32767]",
"System.Runtime.Serialization.Json": "(,4.3.32767]",
"System.Runtime.Serialization.Primitives": "(,4.3.32767]",
"System.Runtime.Serialization.Xml": "(,4.3.32767]",
"System.Security.AccessControl": "(,6.0.32767]",
"System.Security.Claims": "(,4.3.32767]",
"System.Security.Cryptography.Algorithms": "(,4.3.32767]",
"System.Security.Cryptography.Cng": "(,5.0.32767]",
"System.Security.Cryptography.Csp": "(,4.3.32767]",
"System.Security.Cryptography.Encoding": "(,4.3.32767]",
"System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
"System.Security.Cryptography.Primitives": "(,4.3.32767]",
"System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
"System.Security.Cryptography.Xml": "(,10.0.32767]",
"System.Security.Principal": "(,4.3.32767]",
"System.Security.Principal.Windows": "(,5.0.32767]",
"System.Security.SecureString": "(,4.3.32767]",
"System.Text.Encoding": "(,4.3.32767]",
"System.Text.Encoding.CodePages": "(,10.0.32767]",
"System.Text.Encoding.Extensions": "(,4.3.32767]",
"System.Text.Encodings.Web": "(,10.0.32767]",
"System.Text.Json": "(,10.0.32767]",
"System.Text.RegularExpressions": "(,4.3.32767]",
"System.Threading": "(,4.3.32767]",
"System.Threading.AccessControl": "(,10.0.32767]",
"System.Threading.Channels": "(,10.0.32767]",
"System.Threading.Overlapped": "(,4.3.32767]",
"System.Threading.RateLimiting": "(,10.0.32767]",
"System.Threading.Tasks": "(,4.3.32767]",
"System.Threading.Tasks.Dataflow": "(,10.0.32767]",
"System.Threading.Tasks.Extensions": "(,5.0.32767]",
"System.Threading.Tasks.Parallel": "(,4.3.32767]",
"System.Threading.Thread": "(,4.3.32767]",
"System.Threading.ThreadPool": "(,4.3.32767]",
"System.Threading.Timer": "(,4.3.32767]",
"System.ValueTuple": "(,4.5.32767]",
"System.Xml.ReaderWriter": "(,4.3.32767]",
"System.Xml.XDocument": "(,4.3.32767]",
"System.Xml.XmlDocument": "(,4.3.32767]",
"System.Xml.XmlSerializer": "(,4.3.32767]",
"System.Xml.XPath": "(,4.3.32767]",
"System.Xml.XPath.XDocument": "(,5.0.32767]"
}
}
}
}
}

View File

@@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "Bdngn8qeeSY=",
"success": true,
"projectFilePath": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/DouwcoWebsite.csproj",
"expectedPackageFiles": [],
"logs": []
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
17708425022428427

View File

@@ -0,0 +1 @@
17708425022428427

View File

@@ -0,0 +1,37 @@
@font-face {
font-family: righteous;
src: url(/fonts/Righteous-Regular.ttf);
format('truetype');
}
@font-face {
font-family: monsterrat_regular;
src: url(/fonts/Montserrat-Regular.ttf);
format('truetype');
}
@font-face {
font-family: monsterrat_bold;
src: url(/fonts/Montserrat-Bold.ttf);
format('truetype');
}
:root {
--background-clr: #283e3e;
--background-accent-clr: #324f4f;
--blue-clr: #47bcdf;
--green-clr: #6ede9a;
--purple-clr: #a48da;
--orange-clr: #e2a661;
--white-clr: #ffffff;
}
body {
font-family: monsterrat_regular;
background-color: var(--background-clr);
color: var(--white-clr);;
}
.title{
font-family: righteous;
}

View File

@@ -0,0 +1,65 @@
.container {
display: flex;
}
.left-section {
width: 60%;
}
.logo-section {
display: flex;
align-items: flex-start;
height: 250px;
}
.logo-section img {
width: 250px;
margin-left: 50px;
}
.text-section {
margin-left: 50px;
}
.title {
font-size: 128px;
margin: 0;
line-height: 1;
text-wrap: balance;
}
.tagline {
display: flex;
font-size: 36px;
font-weight: bold;
width: 500px;
}
.tagline .green-text {
color: var(--green-clr);
}
.tagline .normal-text {
margin-left: 7px;
}
.content-box {
background-color: var(--background-accent-clr);
margin: 50px 20px 20px;
padding: 20px;
border-radius: 20px;
}
.content-box p {
margin: 0;
}
.content-box .intro-text {
font-weight: bolder;
font-size: 28px;
}
.server-image {
width: 500px;
height: 500px;
}

View File

@@ -0,0 +1,73 @@
/* Navigation menu */
.hide_header {
display: none;
}
.nav_option {
font-family: monsterrat_bold;
color: var(--white-clr);
text-decoration: none;
font-size: 36px;
border: none;
border-radius: 20px;
background-color: transparent;
display: flex;
align-items: center;
margin: 10px;
padding-right: 10px;
}
.nav_option:hover{
background-color: var(--background-accent-clr);
}
.nav_option.active {
background-color: var(--background-accent-clr);
}
.nav_option > p > span {
color: var(--green-clr);
}
.logo {
height: 100px;
vertical-align: middle;
padding: 10px;
}
.icon {
height: 45px;
vertical-align: middle;
padding: 0 20px 0 10px;
}
/* Main */
body{
display: flex;
flex-direction: column;
}
main {
flex: 1;
margin: 20px;
}
/* Footer */
footer {
flex-shrink: 0;
background: var(--background-clr);
width: 100%;
}
footer > Div {
justify-content: space-between
}
footer > Div > p {
font-size: 16px;
margin: 10px 25px 10px 25px;
}

View File

@@ -0,0 +1,24 @@
html, body{
height: 100%;
margin: 0;
padding: 0;
font-size: 25px;
scroll-behavior: smooth;
}
/* Container types */
.vert_container{
display: flex;
flex-wrap: wrap;
align-items: center;
}
.scroll_container {
overflow-y: auto;
scroll-snap-type: y mandatory;
}
.scroll_section {
height: 100vh;
scroll-snap-align: start;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 327 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 984 KiB

View File

@@ -0,0 +1,20 @@
<div class="container">
<img class="server-image" style="width: 400px; height: 400px" src="/img/me_img.png" alt="Image">
<div class="left-section">
<div class="logo-section">
<div class="text-section">
<h1>Hi, I'm Douwe</h1>
<p>
A <span style="color: var(--green-clr)">doctoral student</span> with a passion for building games, applications and tools.
<br><br>
At the moment I'm working on:
</p>
</div>
</div>
<div class="content-box">
<p>
To do...
</p>
</div>
</div>
</div>

View File

@@ -0,0 +1,6 @@
<h1>Douwco Apps</h1>
<div class="content-box">
<p>
To do...
</p>
</div>

View File

@@ -0,0 +1,6 @@
<h1>My Games</h1>
<div class="content-box">
<p>
To do...
</p>
</div>

View File

@@ -0,0 +1,25 @@
<div class="container">
<div class="left-section">
<div class="logo-section">
<img src="/img/douwco_logo.png" alt="Image">
<div class="text-section">
<h1 class="title">Douwco</h1>
<div class="tagline">
<p class="green-text">Because </p>
<p class="normal-text">nerds build their own homeserver.</p>
</div>
</div>
</div>
<div class="content-box">
<p>
<span class="intro-text">Welcome to the Douwco website.</span> <br>
Ever wondered what machine the website you are visiting is run on? Well this time you know, just look to the right.
This small homeserver hosts several open-source services like Nextcloud, Gitea, Overleaf community and ofcourse this
website. <br> <br>
Here I showcase my portfolio and all the games I've created over the years. If you are
a family member you can also find the different services in the Douwco Apps tab.
</p>
</div>
</div>
<img class="server-image" src="/img/server_image.png" alt="Image">
</div>

View File

@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Douwco</title>
<link rel="stylesheet" href="/css/index.css"/>
<link rel="stylesheet" href="/css/style.css" />
<link rel="stylesheet" href="/css/douwco.css" />
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/home.css">
</head>
<body>
<header>
<nav>
<div class="vert_container" style="justify-content: space-around">
<a class="nav_option" href="#home"><img class="logo" src="/img/douwco_logo.png"></a>
<a class="nav_option" href="#about_me">
<img class="icon" src="/img/icons/user.png" alt="Icon">
<p>About <span>Me</span></p>
</a>
<a class="nav_option" href="#apps">
<img class="icon" src="/img/icons/projects_icon.png" alt="Icon">
<p>Douwco <span>Apps</span></p>
</a>
<a class="nav_option" href="#games">
<img class="icon" src="/img/icons/devicegamepad2.png" alt="Icon">
<p>My <span>Games</span></p>
</a>
</div>
</nav>
</header>
<main class="scroll_container">
<section id="home" class="scroll_section observed" data-section-name="home"></section>
<section id="about_me" class="scroll_section observed" data-section-name="about_me"></section>
<section id="apps" class="scroll_section observed" data-section-name="apps"></section>
<section id="games" class="scroll_section observed" data-section-name="games"></section>
</main>
<footer>
<div class="vert_container">
<p id="copyright"></p>
<p>Made and hosted in 🇪🇺</p>
</div>
</footer>
<script src="/js/main.js"></script>
<script src="/js/index.js"></script>
</body>
</html>

View File

@@ -0,0 +1,47 @@
// Setup the navigation bar
function setupNavigationHighlight(){
const sections = document.querySelectorAll('.scroll_section');
const navOptions = document.querySelectorAll('.nav_option');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const sectionId = entry.target.id;
window.history.pushState(null, null, `#${sectionId}`);
navOptions.forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href') === `#${sectionId}`) {
link.classList.add('active');
}
});
}
}), {threshold: 0.5};
})
sections.forEach(section => {
observer.observe(section);
});
}
function setupNavigationClickObserver() {
const navLinks = document.querySelectorAll('.nav_option');
navLinks.forEach(link => {
link.addEventListener('click', (event) => {
event.preventDefault();
const targetId = link.getAttribute('href');
const targetSection = document.querySelector(targetId);
if (targetSection) {
targetSection.scrollIntoView({
behavior: 'smooth'
});
}
});
});
}
setupNavigationHighlight();
setupNavigationClickObserver();
// Set copyright year
const currentYear = new Date().getFullYear();
document.getElementById('copyright').textContent = `© ${currentYear} - douwco.be`;

View File

@@ -0,0 +1,32 @@
// JIT file loading
function include_file(filename, id) {
fetch(`includes/${filename}.html`)
.then(response => response.text())
.then(html => { document.getElementById(id).innerHTML = html; })
.catch(err => console.error('Error loading include:', err));
}
function setupIntersectionObserver() {
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const element = entry.target;
const name = element.getAttribute('data-section-name');
include_file(name, element.id);
observer.unobserve(element);
}
});
}, {
threshold: 0.05,
rootMargin: "0px 0px -50px 0px"
});
const observedSections = document.querySelectorAll('.observed');
if (observedSections.length === 0) {
console.error('No elements with class "observed" found!');
} else {
observedSections.forEach(section => { observer.observe(section); });
}
}
setupIntersectionObserver();