Compare commits

6 Commits

Author SHA1 Message Date
douwe
06f271d778 Updated the docker setup. 2026-08-19 10:06:27 +02:00
douwe
b0acdc67c8 Converting serverbase to cpp instad csharp 2026-08-19 09:36:20 +02:00
218dbe36d9 revert bc7ca39d25
revert Added the batterytool to the website.
2026-05-26 14:36:25 +00:00
DouweRavers
bc7ca39d25 Added the batterytool to the website. 2026-05-26 16:20:33 +02:00
96b6340223 Merge pull request 'Changed the structure so git root folder is also project root folder.' (#2) from dotnet into main
Reviewed-on: #2
2026-04-24 13:00:04 +00:00
a3fb294e4b Changed the structure so git root folder is also project root folder. 2026-03-18 01:32:23 +01:00
110 changed files with 48 additions and 1599 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -1 +0,0 @@
(ssh://git@git.jetbrains.team/llvm/llvm-project.git f4157ca9dd49181f6d35eaf6d324ffa84a40f01b based on LLVM 31f1590e4fb324c43dc36199587c453e27b6f6fa revision)

2
.gitignore vendored
View File

@@ -6,4 +6,4 @@ CMakeCache.txt
Makefile Makefile
# Executable # Executable
douwco_web server.out

10
.vscode/launch.json vendored
View File

@@ -1,10 +0,0 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
]
}

View File

@@ -1,3 +1,5 @@
{ {
"cmake.sourceDirectory": "/home/douwe/Nextcloud/Projects/douwco.be" "clangd.arguments": [
"--query-driver=/usr/bin/g++-15"
]
} }

11
CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 3.10)
project(douwco_website)
# Set the C++ standard (e.g., C++17)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Add your executable
add_executable(server.out
server/main.cpp
)

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM debian:stable-slim
RUN apt-get update && \
apt-get install -y \
g++ \
cmake \
libboost-all-dev
WORKDIR /webserver
COPY . .
RUN mkdir -p build && \
cd build && \
cmake .. && \
make
ENTRYPOINT ["./build/server.out"]

View File

@@ -1,21 +0,0 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DouwcoWebsite", "DouwcoWebsite\DouwcoWebsite.csproj", "{CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{694925D6-4EC4-41C4-A53D-E2EB3B80A0F7}"
ProjectSection(SolutionItems) = preProject
compose.yaml = compose.yaml
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

View File

@@ -1,15 +0,0 @@
# 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

@@ -1,4 +0,0 @@
<?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

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

View File

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

View File

@@ -1,23 +0,0 @@
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

@@ -1,91 +0,0 @@
<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>

View File

@@ -1,18 +0,0 @@
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

@@ -1,14 +0,0 @@
{
"$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

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

View File

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

View File

@@ -1,23 +0,0 @@
{
"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": ""
}
}
}

View File

@@ -1,19 +0,0 @@
{
"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

@@ -1 +0,0 @@
{"ContentRoots":["/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","/home/douwe/Projects/douwco_website/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}-ew1mknl83p-ew1mknl83p.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},"style.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/style.css"},"Patterns":null},"style.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.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":{"alcove.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/alcove.png"},"Patterns":null},"douwco_logo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/douwco_logo.png"},"Patterns":null},"godot_addons.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/godot_addons.png"},"Patterns":null},"me_img.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/me_img.png"},"Patterns":null},"rollability.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/rollability.png"},"Patterns":null},"server_image.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/server_image.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}-uc8ei42wrd-uc8ei42wrd.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}-lzakhpjgbx-lzakhpjgbx.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}-4rnn98hyqz-4rnn98hyqz.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}-1tkatawvq4-1tkatawvq4.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},"vid":{"Children":{"procedural_streets.mp4":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"vid/procedural_streets.mp4"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}

View File

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

View File

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

View File

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

View File

@@ -1,22 +0,0 @@
//------------------------------------------------------------------------------
// <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+124c97e6ccd0fd8ef0164f0b2d0819c86413c47d")]
[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

@@ -1 +0,0 @@
fdbaf8500e6eb7a2b9a6f73968667501e6723693d7a4495e4dddf56f8eed4aa1

View File

@@ -1,23 +0,0 @@
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 = /home/douwe/Projects/douwco_website/DouwcoWebsite/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 9.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = /home/douwe/Projects/douwco_website/DouwcoWebsite
build_property._RazorSourceGeneratorDebug =
build_property.EffectiveAnalysisLevelStyle = 10.0
build_property.EnableCodeStyleSeverity =

View File

@@ -1,17 +0,0 @@
// <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

@@ -1 +0,0 @@
74b9bd496c05eb2a4046e1b4fb88f5712da3bff33d1379765a5a99db2c3ed771

View File

@@ -1,174 +0,0 @@
/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
/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/appsettings.Development.json
/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/appsettings.json
/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json
/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json
/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite
/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.deps.json
/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json
/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.dll
/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.pdb
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/rpswa.dswa.cache.json
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.MvcApplicationPartsAssemblyInfo.cache
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/rjimswa.dswa.cache.json
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/scopedcss/bundle/DouwcoWebsite.styles.css
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json.cache
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.development.json
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.endpoints.json
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/swae.build.ex.cache
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.dll
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/refint/DouwcoWebsite.dll
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.pdb
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/ref/DouwcoWebsite.dll
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz
/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-uc8ei42wrd-uc8ei42wrd.gz

View File

@@ -1 +0,0 @@
db5c921ffb768eee4f2d71d03fb6a6b5cee32f87f18d7687180c50f2d437b7f4

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
{"GlobalPropertiesHash":"vYuNcIjVKzyGW75+DqTgUAgYEp5dCBwjSmrFeRU5PjE=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["v\u002Bo2mhWLDG03FfiAbou8Te6Lrwgj36oDgPGTMm2nDyE=","FhRrOD5xqohyGWjBJ3tOdgO2MGhQHRVOwIhTFhMsiMk=","TjkBVlDp0ZF3g8KkR6QZ1ZHbho7p7ItqffADc7r\u002B0AI=","8Y0vF7kBRyxYvRZsjL3GEa8kNCwpH5wggh0VZEyUoko=","yxmB7E3tsOyUgBwdepBhi9A6ueupjUcivjUDuOWQGEw=","N6mbhuzEIXWF6\u002B0pCvxxFDtIPwiY2UNfhxFRkFyyh4U=","vpi1uVWCSPSePypeXM3fToATY8TrZWpvR97G/uXR9S0=","w0DCFdFCrCgqXSPKGM3to8EY0\u002BQz08XOEr0cBo0F2vA=","Ip6zHOdgfYJrCSOyhqsV8CzUopR7fLdlALUjkjbWho8=","xdVlCnTJ4ZzBOt0pC69xxSRg1/5yk0oD1XnzBu2DhYc=","BeGRDgDMeQfAiMNyRt/i3GUSyhNc6d0NQc9wf6Wq0Uo=","OCvYmhSkzX3uC30ZHNLO7L27I74BSPE6DC5mgKalUuI=","8ulTQ/ddgjbgzHd7zXLCB6UsEXujuIL/ZwzGFO/KzQ8=","mfceTJYFMqWmCvoPn/5K\u002BRnq9/Ri0ZN6wngL9SmZ2qQ=","7hYFGrv191vFMtv53DTHBlF8lycJQTdrfUGZFiDL21A=","bE9BNZXJ9B7q5BXZ/IMNBi5VmmJdDq9LunF2zwZqs2M=","doN36Q7fI74U5n/3mpjDLnZVHtxMpHTlYCRBqmdXKqc=","Mlpbk6z\u002Ba5DSVhB5p6AWJCiz2T/oRGx9m4vi\u002B/xgzII=","\u002B4cuQmueAoM8XgGeOs6d6DiHo8BQmw5cZ6/1DH2D\u002Biw=","tFvODVkYe/0yW5rNbbEfARp/Dy68F24mUsSx/xx0BhE=","BDR6DztpRON/ryNVV\u002BT3F9dMciwClGL/gIxCxuGhsYo=","EDYZ2X8EDAcsa8fjHoUhrej7hz90bzlJczgEmvuRz8g=","IM8XKmagIRs6aMlEhwQOfDchBc65CJw3JQP6LDYSQfc=","BbTi1tey3IUOxVIH8YY9PbEkTw5ZPzU\u002BmvFxn3HNtqw="],"CachedAssets":{},"CachedCopyCandidates":{}}

View File

@@ -1 +0,0 @@
{"GlobalPropertiesHash":"MqxQd64z6x2eUmxK/THSn08vihXnagFKFrx550uG3uA=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["eqj3BkSmNNtzDOXXdOCTZP5nLa/Nhv6C0q9KhaDq4kc=","2CjTuSY1PaZeNmgayiDNDZJYtfB7rjCfB5zDMwN2JhQ=","zalfTX/PnTLvN1TAem0k6U2Euy5jNm6gfPzmG\u002BYwTuE=","RbVPzhynvrhCv0JzQB5/lMfoYeRaKCKo\u002B1WbJNGhBJY=","VprACyXd2tc8/wDdYWcbkLWiAy7XO1xxmXVkd8zpMZ4=","GPRc0gEVmJcyiK0km7VvXpNuUJqgxUVbbimYBnSI918=","pL1wcj5xMsnHinwp\u002BwQMG4ZxrE7NAum40gSrfMyuFLc=","HEKEwPy59c9r7b97kDoN1ZRySB0fhIj5ZFnDeKn\u002BMRo=","kKChJexLOwFVGJNQV7EfvwHf0PdcyTkv/bjrPtu7uBU=","kFzR9pFkfx8tAmERvVRIu6MnGttzQHWg5ly18y7qFNM=","85Wny3cNmf3Svc311JAJXt/TIy7MwnLsTGp0AvuShhM=","Rh3o4F64FuB2ApYvLzLuVb\u002B/qdxzcl7T\u002BBTcuISWdM4=","zErDrB8L6spkZS2eEIR4gSfLcGjUjr2dM2k5apzCK5s=","CC52YYjAX5oBVBbPu5mhO0en7KY30BZ8WVKRHNqlMcg=","TeS8bo2WB6wSOxGKsHGHH5qPWDkkqd9wmTD403VMQx8=","kboK8CreABqi4uqnVKZGx3wnZ\u002BqQbHUJGs0eIaYBpYE=","8ZdBW7W6tpdaZAZUI5HtSeRmFV7rtqAgfMhRluV2y/I=","OgBjPGDTkvh\u002BA/HmuiYDM4FFTO6fd4uZ/a1wLn/3c1Q=","UM0mByikTca3T33V8e7idF53cgK1KYYmSOUuCdan5A0=","Dm89jJq86MYL65yTkLq06eZ\u002BgDFRjfPfb2SrmAHii\u002BY=","WJF/mj\u002BJufI/D4OzIVaYr5Wh3ng\u002B/8/LCLoKHcW3p\u002BU=","f/S2CJi3rgVQ5fNay3NT9v94uhX0wDO\u002B1VEcZd8oXDU=","KKoPyQDtHnoWtc4wi0I3ur2ls\u002BR/xOx2VXQ\u002BZfPE94w=","8cgEdyyLHXyxRFtIlkERSZeGIketmNmxNPLhxVdqC3g=","UpyEIGne\u002BKdzUM1SJTMEoQaJW51LpYU1s4f5SMVFnIA=","7kf\u002B59PYSCBfcZrGQBj7mU9XQB6qTFVppC1GNwR0kqw=","HYvhKEohNfesTaF1fiI3XRgDPNzDKqa9VOii5HBiguA=","AzowSDZZqtBtsvXW4Mn\u002BPanbJ9JREqnrt1aQTh8UavQ=","ZBbW3G\u002BFSytjj0Mk3vpaxPHEhWpKWkyW5H9Mb9Bh1Ec=","6KAjbZnUYnbKEl6dbrUi0mBjlqY23ftsVOgdtLt63kE="],"CachedAssets":{},"CachedCopyCandidates":{}}

View File

@@ -1 +0,0 @@
{"GlobalPropertiesHash":"1dqn5RKZv78rpdpskS9EMrPENaMsbMoeW1nD08PVwsQ=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["eqj3BkSmNNtzDOXXdOCTZP5nLa/Nhv6C0q9KhaDq4kc=","2CjTuSY1PaZeNmgayiDNDZJYtfB7rjCfB5zDMwN2JhQ=","zalfTX/PnTLvN1TAem0k6U2Euy5jNm6gfPzmG\u002BYwTuE=","RbVPzhynvrhCv0JzQB5/lMfoYeRaKCKo\u002B1WbJNGhBJY=","VprACyXd2tc8/wDdYWcbkLWiAy7XO1xxmXVkd8zpMZ4=","GPRc0gEVmJcyiK0km7VvXpNuUJqgxUVbbimYBnSI918=","pL1wcj5xMsnHinwp\u002BwQMG4ZxrE7NAum40gSrfMyuFLc=","HEKEwPy59c9r7b97kDoN1ZRySB0fhIj5ZFnDeKn\u002BMRo=","kKChJexLOwFVGJNQV7EfvwHf0PdcyTkv/bjrPtu7uBU=","kFzR9pFkfx8tAmERvVRIu6MnGttzQHWg5ly18y7qFNM=","85Wny3cNmf3Svc311JAJXt/TIy7MwnLsTGp0AvuShhM=","Rh3o4F64FuB2ApYvLzLuVb\u002B/qdxzcl7T\u002BBTcuISWdM4=","zErDrB8L6spkZS2eEIR4gSfLcGjUjr2dM2k5apzCK5s=","CC52YYjAX5oBVBbPu5mhO0en7KY30BZ8WVKRHNqlMcg=","TeS8bo2WB6wSOxGKsHGHH5qPWDkkqd9wmTD403VMQx8=","kboK8CreABqi4uqnVKZGx3wnZ\u002BqQbHUJGs0eIaYBpYE=","8ZdBW7W6tpdaZAZUI5HtSeRmFV7rtqAgfMhRluV2y/I=","OgBjPGDTkvh\u002BA/HmuiYDM4FFTO6fd4uZ/a1wLn/3c1Q=","UM0mByikTca3T33V8e7idF53cgK1KYYmSOUuCdan5A0=","Dm89jJq86MYL65yTkLq06eZ\u002BgDFRjfPfb2SrmAHii\u002BY=","WJF/mj\u002BJufI/D4OzIVaYr5Wh3ng\u002B/8/LCLoKHcW3p\u002BU=","f/S2CJi3rgVQ5fNay3NT9v94uhX0wDO\u002B1VEcZd8oXDU=","KKoPyQDtHnoWtc4wi0I3ur2ls\u002BR/xOx2VXQ\u002BZfPE94w=","8cgEdyyLHXyxRFtIlkERSZeGIketmNmxNPLhxVdqC3g=","UpyEIGne\u002BKdzUM1SJTMEoQaJW51LpYU1s4f5SMVFnIA=","7kf\u002B59PYSCBfcZrGQBj7mU9XQB6qTFVppC1GNwR0kqw=","HYvhKEohNfesTaF1fiI3XRgDPNzDKqa9VOii5HBiguA=","AzowSDZZqtBtsvXW4Mn\u002BPanbJ9JREqnrt1aQTh8UavQ=","ZBbW3G\u002BFSytjj0Mk3vpaxPHEhWpKWkyW5H9Mb9Bh1Ec=","6KAjbZnUYnbKEl6dbrUi0mBjlqY23ftsVOgdtLt63kE="],"CachedAssets":{},"CachedCopyCandidates":{}}

File diff suppressed because one or more lines are too long

View File

@@ -1,49 +0,0 @@
/* /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

@@ -1 +0,0 @@
HvSqvSpZRZcPkdhcYVQMx5y5PqjZejWpyLowUtiFubo=

View File

@@ -1 +0,0 @@
{"ContentRoots":["/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","/home/douwe/Projects/douwco_website/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}-ew1mknl83p-ew1mknl83p.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},"style.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/style.css"},"Patterns":null},"style.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.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":{"alcove.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/alcove.png"},"Patterns":null},"douwco_logo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/douwco_logo.png"},"Patterns":null},"godot_addons.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/godot_addons.png"},"Patterns":null},"me_img.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/me_img.png"},"Patterns":null},"rollability.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/rollability.png"},"Patterns":null},"server_image.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/server_image.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}-uc8ei42wrd-uc8ei42wrd.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}-lzakhpjgbx-lzakhpjgbx.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}-4rnn98hyqz-4rnn98hyqz.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}-1tkatawvq4-1tkatawvq4.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},"vid":{"Children":{"procedural_streets.mp4":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"vid/procedural_streets.mp4"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}

View File

@@ -1,485 +0,0 @@
{
"format": 1,
"restore": {
"/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj": {}
},
"projects": {
"/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj",
"projectName": "DouwcoWebsite",
"projectPath": "/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj",
"packagesPath": "/home/douwe/.nuget/packages/",
"outputPath": "/home/douwe/Projects/douwco_website/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.100/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

@@ -1,15 +0,0 @@
<?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

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

View File

@@ -1,490 +0,0 @@
{
"version": 3,
"targets": {
"net10.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net10.0": []
},
"packageFolders": {
"/home/douwe/.nuget/packages/": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj",
"projectName": "DouwcoWebsite",
"projectPath": "/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj",
"packagesPath": "/home/douwe/.nuget/packages/",
"outputPath": "/home/douwe/Projects/douwco_website/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.100/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

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

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
17708425022428427

View File

@@ -1 +0,0 @@
17708425022428427

7
compile_commands.json Normal file
View File

@@ -0,0 +1,7 @@
[
{
"directory": "/home/douwe/Projects/douwco_website/server",
"command": "/usr/bin/g++-15 -I/usr/include/c++/15 -I/usr/include/x86_64-linux-gnu/c++/15 -I/usr/include/c++/15/backward -I/usr/lib/gcc/x86_64-linux-gnu/15/include -I/usr/local/include -I/usr/include/x86_64-linux-gnu -I/usr/include -c main.cpp -o main.o",
"file": "/home/douwe/Projects/douwco_website/server/main.cpp"
}
]

View File

@@ -3,7 +3,7 @@
image: douwcowebsite image: douwcowebsite
build: build:
context: . context: .
dockerfile: DouwcoWebsite/Dockerfile dockerfile: ./Dockerfile
ports: ports:
- 8080:8080 - 8080:8080

6
server/main.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include <iostream>
int main(){
std::cout << "Hello World!" << std::endl;
return 0;
}

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 172 KiB

After

Width:  |  Height:  |  Size: 172 KiB

View File

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 54 KiB

View File

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

Before

Width:  |  Height:  |  Size: 296 KiB

After

Width:  |  Height:  |  Size: 296 KiB

View File

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

Before

Width:  |  Height:  |  Size: 327 KiB

After

Width:  |  Height:  |  Size: 327 KiB

View File

Before

Width:  |  Height:  |  Size: 8.1 MiB

After

Width:  |  Height:  |  Size: 8.1 MiB

View File

Before

Width:  |  Height:  |  Size: 984 KiB

After

Width:  |  Height:  |  Size: 984 KiB

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Some files were not shown because too many files have changed in this diff Show More