dotnet #1
@@ -1,30 +0,0 @@
|
||||
# Specify the minimum required version of CMake
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
|
||||
# Set the name of the project
|
||||
project(douwco_web)
|
||||
|
||||
# Find required packages
|
||||
find_package(Crow)
|
||||
find_package(OpenSSL REQUIRED)
|
||||
find_package(ZLIB REQUIRED)
|
||||
|
||||
# Set C++ standard to C++17
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
# Add the executable
|
||||
add_executable(douwco_web
|
||||
src/main.cpp
|
||||
src/server.cpp
|
||||
)
|
||||
|
||||
# Specify include directories
|
||||
target_include_directories(douwco_web PRIVATE
|
||||
${PROJECT_SOURCE_DIR}/include
|
||||
${OPENSSL_INCLUDE_DIR}
|
||||
)
|
||||
|
||||
target_link_libraries(douwco_web PUBLIC
|
||||
Crow::Crow
|
||||
${OPENSSL_LIBRARIES} ${ZLIB_LIBRARIES}
|
||||
)
|
||||
32
Dockerfile
@@ -1,32 +0,0 @@
|
||||
# Use an official Ubuntu as a parent image
|
||||
FROM ubuntu:latest
|
||||
|
||||
# Set the working directory in the container to /app
|
||||
WORKDIR /server
|
||||
|
||||
# Install necessary packages, including CMake, a C++ compiler, and wget
|
||||
RUN apt-get update && \
|
||||
apt-get install -y cmake g++ make wget zlib1g-dev && \
|
||||
apt-get clean;
|
||||
|
||||
# Download Crow library
|
||||
RUN wget https://github.com/CrowCpp/Crow/releases/download/v1.2.1.2/Crow-1.2.1-Linux.deb && \
|
||||
apt-get install -y ./Crow-1.2.1-Linux.deb
|
||||
|
||||
# Copy the current directory contents into the container at /app
|
||||
COPY . /server
|
||||
|
||||
# Make the build directory
|
||||
RUN mkdir -p build && cd build
|
||||
|
||||
# Run CMake to configure the build
|
||||
RUN cmake .
|
||||
|
||||
# Build the project
|
||||
RUN cmake --build .
|
||||
|
||||
# Expose port 8888 for the web server
|
||||
EXPOSE 8888
|
||||
|
||||
# Command to run the executable
|
||||
CMD ["./douwco_web"]
|
||||
21
DouwcoWebsite.sln
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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
|
||||
15
DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Rider ignored files
|
||||
/contentModel.xml
|
||||
/projectSettingsUpdater.xml
|
||||
/modules.xml
|
||||
/.idea.DouwcoWebsite.iml
|
||||
# Ignored default folder with query files
|
||||
/queries/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
4
DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/encodings.xml
generated
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
|
||||
</project>
|
||||
8
DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/indexLayout.xml
generated
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="UserContentModel">
|
||||
<attachedFolders />
|
||||
<explicitIncludes />
|
||||
<explicitExcludes />
|
||||
</component>
|
||||
</project>
|
||||
6
DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/vcs.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
23
DouwcoWebsite/Dockerfile
Normal file
@@ -0,0 +1,23 @@
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base
|
||||
USER $APP_UID
|
||||
WORKDIR /app
|
||||
EXPOSE 8080
|
||||
EXPOSE 8081
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
|
||||
ARG BUILD_CONFIGURATION=Release
|
||||
WORKDIR /src
|
||||
COPY ["DouwcoWebsite/DouwcoWebsite.csproj", "DouwcoWebsite/"]
|
||||
RUN dotnet restore "DouwcoWebsite/DouwcoWebsite.csproj"
|
||||
COPY . .
|
||||
WORKDIR "/src/DouwcoWebsite"
|
||||
RUN dotnet build "./DouwcoWebsite.csproj" -c $BUILD_CONFIGURATION -o /app/build
|
||||
|
||||
FROM build AS publish
|
||||
ARG BUILD_CONFIGURATION=Release
|
||||
RUN dotnet publish "./DouwcoWebsite.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
|
||||
|
||||
FROM base AS final
|
||||
WORKDIR /app
|
||||
COPY --from=publish /app/publish .
|
||||
ENTRYPOINT ["dotnet", "DouwcoWebsite.dll"]
|
||||
91
DouwcoWebsite/DouwcoWebsite.csproj
Normal file
@@ -0,0 +1,91 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Include="..\.dockerignore">
|
||||
<Link>.dockerignore</Link>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.min.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.js.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.min.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.min.js.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\LICENSE" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\dist\jquery.validate.unobtrusive.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\dist\jquery.validate.unobtrusive.min.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\additional-methods.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\additional-methods.min.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\jquery.validate.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\jquery.validate.min.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\LICENSE.md" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.min.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.min.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.min.js" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.min.map" />
|
||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\LICENSE.txt" />
|
||||
<_ContentIncludedByDefault Remove="Pages\AboutMe.cshtml" />
|
||||
<_ContentIncludedByDefault Remove="Pages\DouwcoApps.cshtml" />
|
||||
<_ContentIncludedByDefault Remove="Pages\Error.cshtml" />
|
||||
<_ContentIncludedByDefault Remove="Pages\MyGames.cshtml" />
|
||||
<_ContentIncludedByDefault Remove="Pages\Shared\_Layout.cshtml" />
|
||||
<_ContentIncludedByDefault Remove="Pages\Shared\_ValidationScriptsPartial.cshtml" />
|
||||
<_ContentIncludedByDefault Remove="Pages\_ViewImports.cshtml" />
|
||||
<_ContentIncludedByDefault Remove="Pages\_ViewStart.cshtml" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="wwwroot\index.html" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
18
DouwcoWebsite/Program.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
// Add services to the container.
|
||||
builder.Services.AddControllers(); // For API controllers
|
||||
|
||||
var app = builder.Build();
|
||||
app.MapGet("/api/test", () => "test works!");
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
// No need for UseHttpsRedirection or UseHsts, as Nginx handles SSL.
|
||||
app.UseDefaultFiles(); // Enable default file serving
|
||||
app.UseStaticFiles(); // Serve static files from wwwroot
|
||||
app.UseRouting();
|
||||
app.UseAuthorization();
|
||||
|
||||
app.MapControllers(); // Map API controllers
|
||||
|
||||
app.Run();
|
||||
14
DouwcoWebsite/Properties/launchSettings.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/launchsettings.json",
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"applicationUrl": "http://localhost:8080",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
9
DouwcoWebsite/appsettings.Development.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"DetailedErrors": true,
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
9
DouwcoWebsite/appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
BIN
DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite
Executable file
23
DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.deps.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v10.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v10.0": {
|
||||
"DouwcoWebsite/1.0.0": {
|
||||
"runtime": {
|
||||
"DouwcoWebsite.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"DouwcoWebsite/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.dll
Normal file
BIN
DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.pdb
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net10.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "10.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"version": "10.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.GC.Server": true,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"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}]}}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"DetailedErrors": true,
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
9
DouwcoWebsite/bin/Debug/net10.0/appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
|
||||
@@ -0,0 +1,22 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("DouwcoWebsite")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+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.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
fdbaf8500e6eb7a2b9a6f73968667501e6723693d7a4495e4dddf56f8eed4aa1
|
||||
@@ -0,0 +1,23 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net10.0
|
||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||
build_property.TargetFrameworkVersion = v10.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb = true
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = DouwcoWebsite
|
||||
build_property.RootNamespace = DouwcoWebsite
|
||||
build_property.ProjectDir = /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 =
|
||||
@@ -0,0 +1,17 @@
|
||||
// <auto-generated/>
|
||||
global using Microsoft.AspNetCore.Builder;
|
||||
global using Microsoft.AspNetCore.Hosting;
|
||||
global using Microsoft.AspNetCore.Http;
|
||||
global using Microsoft.AspNetCore.Routing;
|
||||
global using Microsoft.Extensions.Configuration;
|
||||
global using Microsoft.Extensions.DependencyInjection;
|
||||
global using Microsoft.Extensions.Hosting;
|
||||
global using Microsoft.Extensions.Logging;
|
||||
global using System;
|
||||
global using System.Collections.Generic;
|
||||
global using System.IO;
|
||||
global using System.Linq;
|
||||
global using System.Net.Http;
|
||||
global using System.Net.Http.Json;
|
||||
global using System.Threading;
|
||||
global using System.Threading.Tasks;
|
||||
BIN
DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.assets.cache
Normal file
@@ -0,0 +1 @@
|
||||
74b9bd496c05eb2a4046e1b4fb88f5712da3bff33d1379765a5a99db2c3ed771
|
||||
@@ -0,0 +1,174 @@
|
||||
/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
|
||||
BIN
DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.dll
Normal file
@@ -0,0 +1 @@
|
||||
db5c921ffb768eee4f2d71d03fb6a6b5cee32f87f18d7687180c50f2d437b7f4
|
||||
BIN
DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.pdb
Normal file
BIN
DouwcoWebsite/obj/Debug/net10.0/apphost
Executable file
1
DouwcoWebsite/obj/Debug/net10.0/rbcswa.dswa.cache.json
Normal file
BIN
DouwcoWebsite/obj/Debug/net10.0/ref/DouwcoWebsite.dll
Normal file
BIN
DouwcoWebsite/obj/Debug/net10.0/refint/DouwcoWebsite.dll
Normal file
1
DouwcoWebsite/obj/Debug/net10.0/rjimswa.dswa.cache.json
Normal file
@@ -0,0 +1 @@
|
||||
{"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":{}}
|
||||
@@ -0,0 +1 @@
|
||||
{"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":{}}
|
||||
@@ -0,0 +1 @@
|
||||
{"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":{}}
|
||||
1
DouwcoWebsite/obj/Debug/net10.0/rpswa.dswa.cache.json
Normal file
@@ -0,0 +1,49 @@
|
||||
/* /Pages/Shared/_Layout.cshtml.rz.scp.css */
|
||||
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
||||
for details on configuring this project to bundle and minify static web assets. */
|
||||
|
||||
a.navbar-brand[b-ne5ffaaxii] {
|
||||
white-space: normal;
|
||||
text-align: center;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
a[b-ne5ffaaxii] {
|
||||
color: #0077cc;
|
||||
}
|
||||
|
||||
.btn-primary[b-ne5ffaaxii] {
|
||||
color: #fff;
|
||||
background-color: #1b6ec2;
|
||||
border-color: #1861ac;
|
||||
}
|
||||
|
||||
.nav-pills .nav-link.active[b-ne5ffaaxii], .nav-pills .show > .nav-link[b-ne5ffaaxii] {
|
||||
color: #fff;
|
||||
background-color: #1b6ec2;
|
||||
border-color: #1861ac;
|
||||
}
|
||||
|
||||
.border-top[b-ne5ffaaxii] {
|
||||
border-top: 1px solid #e5e5e5;
|
||||
}
|
||||
.border-bottom[b-ne5ffaaxii] {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
.box-shadow[b-ne5ffaaxii] {
|
||||
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
|
||||
}
|
||||
|
||||
button.accept-policy[b-ne5ffaaxii] {
|
||||
font-size: 1rem;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.footer[b-ne5ffaaxii] {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
line-height: 60px;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
HvSqvSpZRZcPkdhcYVQMx5y5PqjZejWpyLowUtiFubo=
|
||||
@@ -0,0 +1 @@
|
||||
{"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}]}}
|
||||
0
DouwcoWebsite/obj/Debug/net10.0/swae.build.ex.cache
Normal file
485
DouwcoWebsite/obj/DouwcoWebsite.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,485 @@
|
||||
{
|
||||
"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]"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
15
DouwcoWebsite/obj/DouwcoWebsite.csproj.nuget.g.props
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/douwe/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/douwe/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/douwe/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
2
DouwcoWebsite/obj/DouwcoWebsite.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
490
DouwcoWebsite/obj/project.assets.json
Normal file
@@ -0,0 +1,490 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net10.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net10.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"/home/douwe/.nuget/packages/": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/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]"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
8
DouwcoWebsite/obj/project.nuget.cache
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "gSlcj6s/jNk=",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
1
DouwcoWebsite/obj/project.packagespec.json
Normal file
1
DouwcoWebsite/obj/rider.project.model.nuget.info
Normal file
@@ -0,0 +1 @@
|
||||
17708425022428427
|
||||
1
DouwcoWebsite/obj/rider.project.restore.info
Normal file
@@ -0,0 +1 @@
|
||||
17708425022428427
|
||||
37
DouwcoWebsite/wwwroot/css/douwco.css
Normal file
@@ -0,0 +1,37 @@
|
||||
@font-face {
|
||||
font-family: righteous;
|
||||
src: url(/fonts/Righteous-Regular.ttf);
|
||||
format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: monsterrat_regular;
|
||||
src: url(/fonts/Montserrat-Regular.ttf);
|
||||
format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: monsterrat_bold;
|
||||
src: url(/fonts/Montserrat-Bold.ttf);
|
||||
format('truetype');
|
||||
}
|
||||
|
||||
:root {
|
||||
--background-clr: #283e3e;
|
||||
--background-accent-clr: #324f4f;
|
||||
--blue-clr: #47bcdf;
|
||||
--green-clr: #6ede9a;
|
||||
--purple-clr: #a48da;
|
||||
--orange-clr: #e2a661;
|
||||
--white-clr: #ffffff;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: monsterrat_regular;
|
||||
background-color: var(--background-clr);
|
||||
color: var(--white-clr);;
|
||||
}
|
||||
|
||||
.title{
|
||||
font-family: righteous;
|
||||
}
|
||||
243
DouwcoWebsite/wwwroot/css/style.css
Normal file
@@ -0,0 +1,243 @@
|
||||
/* ===== Base Styles ===== */
|
||||
|
||||
html, body{
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
body{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
main {
|
||||
flex: 1;
|
||||
margin: 20px;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--blue-clr)
|
||||
}
|
||||
|
||||
footer {
|
||||
flex-shrink: 0;
|
||||
background: var(--background-clr);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
footer > Div {
|
||||
justify-content: space-between
|
||||
}
|
||||
|
||||
footer > Div > p {
|
||||
font-size: 16px;
|
||||
margin: 10px 25px 10px 25px;
|
||||
}
|
||||
|
||||
/* ===== Container Layouts ===== */
|
||||
|
||||
.vert_container {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.vert_container.revert {
|
||||
display: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
.vert_container.centered{
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.vert_container.start{
|
||||
align-items: flex-start;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.scroll_container {
|
||||
overflow-y: auto;
|
||||
scroll-snap-type: y mandatory;
|
||||
}
|
||||
|
||||
.scroll_section {
|
||||
min-height: 100vh;
|
||||
scroll-snap-align: start;
|
||||
}
|
||||
|
||||
/* ===== Navigationbar ===== */
|
||||
|
||||
.nav_option {
|
||||
font-family: monsterrat_bold;
|
||||
color: var(--white-clr);
|
||||
text-decoration: none;
|
||||
font-size: 36px;
|
||||
|
||||
border: none;
|
||||
border-radius: 20px;
|
||||
background-color: transparent;
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin: 10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.nav_option:hover{
|
||||
background-color: var(--background-accent-clr);
|
||||
}
|
||||
|
||||
.nav_option.active {
|
||||
background-color: var(--background-accent-clr);
|
||||
}
|
||||
|
||||
.nav_option span {
|
||||
color: var(--green-clr);
|
||||
}
|
||||
|
||||
@media (max-width: 1100px) {
|
||||
.nav_option p {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* ===== Layout ===== */
|
||||
.panel {
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.panel {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.section-title {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.text-section {
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 128px;
|
||||
margin: 0;
|
||||
line-height: 1;
|
||||
text-wrap: balance;
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
.title {
|
||||
font-size: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
.tagline {
|
||||
display: flex;
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.tagline .green-text {
|
||||
color: var(--green-clr);
|
||||
}
|
||||
|
||||
.tagline .normal-text {
|
||||
margin-left: 7px;
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
.title {
|
||||
font-size: 100px;
|
||||
}
|
||||
|
||||
.tagline {
|
||||
font-size: 26px;
|
||||
width: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
.content-box {
|
||||
background-color: var(--background-accent-clr);
|
||||
margin: 50px 20px 20px;
|
||||
padding: 20px;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.content-box p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.content-box .intro-text {
|
||||
font-weight: bolder;
|
||||
font-size: 28px;
|
||||
color: var(--green-clr)
|
||||
}
|
||||
|
||||
.project-thumb {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
object-fit: cover;
|
||||
margin-right: 15px;
|
||||
border-radius: 75x;
|
||||
float: left;
|
||||
}
|
||||
|
||||
|
||||
/* ===== Images ===== */
|
||||
|
||||
.icon {
|
||||
vertical-align: middle;
|
||||
padding: 10px;
|
||||
}
|
||||
.icon.small {
|
||||
height: 45px;
|
||||
}
|
||||
.icon.medium {
|
||||
height: 100px;
|
||||
}
|
||||
.icon.large {
|
||||
height: 250px;
|
||||
}
|
||||
@media (max-width: 1200px) {
|
||||
.icon.large.toggle {
|
||||
height: 150px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.image{
|
||||
margin: 30px;
|
||||
}
|
||||
.image.large{
|
||||
width: 40%;
|
||||
}
|
||||
.image.small{
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.image.large {
|
||||
width: 80%;
|
||||
}
|
||||
.image.small{
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.image.stick {
|
||||
position: sticky;
|
||||
top: 20px
|
||||
}
|
||||
|
||||
|
||||
BIN
DouwcoWebsite/wwwroot/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
DouwcoWebsite/wwwroot/img/alcove.png
Normal file
|
After Width: | Height: | Size: 172 KiB |
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
BIN
DouwcoWebsite/wwwroot/img/godot_addons.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
DouwcoWebsite/wwwroot/img/icons/devicegamepad2.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
DouwcoWebsite/wwwroot/img/icons/europe.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
DouwcoWebsite/wwwroot/img/icons/projects_icon.png
Normal file
|
After Width: | Height: | Size: 8.2 KiB |
BIN
DouwcoWebsite/wwwroot/img/icons/user.png
Normal file
|
After Width: | Height: | Size: 9.0 KiB |
BIN
DouwcoWebsite/wwwroot/img/kingfisher.png
Normal file
|
After Width: | Height: | Size: 296 KiB |
BIN
DouwcoWebsite/wwwroot/img/ludum_dare.png
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
DouwcoWebsite/wwwroot/img/me_img.png
Normal file
|
After Width: | Height: | Size: 327 KiB |
BIN
DouwcoWebsite/wwwroot/img/rollability.png
Normal file
|
After Width: | Height: | Size: 8.1 MiB |
BIN
DouwcoWebsite/wwwroot/img/server_image.png
Normal file
|
After Width: | Height: | Size: 984 KiB |
BIN
DouwcoWebsite/wwwroot/img/thesis_tool.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
DouwcoWebsite/wwwroot/img/wizard_gloves.png
Normal file
|
After Width: | Height: | Size: 123 KiB |
82
DouwcoWebsite/wwwroot/includes/about_me.html
Normal file
@@ -0,0 +1,82 @@
|
||||
<div class="vert_container start">
|
||||
<img class="image stick small" src="/img/me_img.png" alt="Image">
|
||||
<div class="panel">
|
||||
<h1>Hi, I'm Douwe</h1>
|
||||
<p>
|
||||
A <span style="color: var(--green-clr);">PhD student</span> at KU Leuven with a passion for game development and software independence.
|
||||
<br><br>
|
||||
Currently I'm working on:
|
||||
</p>
|
||||
<div class="content-box">
|
||||
<img class="project-thumb" src="/img/rollability.png" alt="RollAbility">
|
||||
<p>
|
||||
<span class="intro-text">RollAbility</span> <br>
|
||||
For my PhD research at KU Leuven, I'm developing RollAbility a therapeutic exergame that bridges player autonomy with clinical guidelines to enhance wheelchair training.
|
||||
<br><br>Developed in collaboration with therapists, RollAbility is a game build onto a clinical protocol
|
||||
and controlled by an actual powered wheelchair. The game connects to the RollAbility App which allows therapists
|
||||
to control the training session in real-time.
|
||||
<br><br><a href="https://dl.acm.org/doi/abs/10.1145/3748621" target="_blank">Read the paper</a> or <a href="https://www.youtube.com/watch?v=8y9XFdSN_04" target="_blank">Watch the video</a>.
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-box">
|
||||
<img class="project-thumb" src="/img/alcove.png" alt="Alcove">
|
||||
<p>
|
||||
<span class="intro-text">Alcove</span> <br>
|
||||
Alcove is a interreg project between Flemish, Walloon and French universities and hospitals that aims to build a device that detects lung cancer through a breath test.
|
||||
<br><br>My role is to create a user interface for the device. This UI has to work on both android phones as on embedded linux devices.
|
||||
<br><br><a href="https://alcove.crosss3.eu/nl/" target="_blank">Read more about Alcove</a>.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<p><span style="color: var(--green-clr);">However</span> in the past I also worked on:</p>
|
||||
|
||||
<div class="content-box">
|
||||
<img class="project-thumb" src="/img/godot_addons.png" alt="Godot tools">
|
||||
<p>
|
||||
<span class="intro-text">Godot Addons</span> <br>
|
||||
I published two small addons to the godot asset library.
|
||||
<br><br>One addon called <a href="https://godotengine.org/asset-library/asset/3505">Godot Visual Studio Debugger</a> which allows you to dynammicaly run the current scene open in the Godot editor directly in Visual Studio Debugger.
|
||||
<br><br>The second addons called <a href="https://godotengine.org/asset-library/asset/3420">Godot Test Scenes</a> extends the Godot editor with an additional run mode, this mode runs a associated test scene to the currently open one in the editor.
|
||||
<br><br>They are both open source:
|
||||
<br><a href="https://github.com/DouweRavers/godot_test_scene">Godot Test Scenes</a> and <a href="https://github.com/DouweRavers/godot_visualstudio_debugger/tree/main">Godot Visual Studio Debugger</a>
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-box">
|
||||
<img class="project-thumb" src="/img/kingfisher.png" alt="Kingfisher">
|
||||
<p>
|
||||
<span class="intro-text">Kingfisher</span> <br>
|
||||
The project <a href="https://kingfisher-game.com/">Kingfisher</a> is a game build by <a>PossilbyPixels</a> that rises awareness about Autism. It is a storybased action / puzzle game for PC and mobile.
|
||||
<br><br>My role in the project was to build minigames that occur throughout the story and also to develop tools to help development.
|
||||
<br><br>One of the tools I made for this project was a suburban neigborhood generator. This tool allowed us to draw streets in the editor which then were automaticly filled with procedural generated houses and gardens. You can see a demo in <a href="/vid/procedural_streets.mp4">this video</a>.
|
||||
<br><br>You can wishlist the game on <a href="https://store.steampowered.com/app/4197280/Kingfisher_An_Autism_Tale/">Steam</a>!
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-box">
|
||||
<img class="project-thumb" src="/img/ludum_dare.png" alt="Ludum Dare">
|
||||
<p>
|
||||
<span class="intro-text">Ludum Dare</span> <br>
|
||||
Between 2019 and 2024, I participated regulary into the Ludum Dare Event. This event was all about creating games under tight deadlines of 48 hours and with no external resources such as audio or 3D art.
|
||||
<br><br>After each event I published my game on <a href="https://coffeeplanet.itch.io/">Itch.io</a> where they are still availble for play. In the future I want to migrate them to this website.
|
||||
<br><br>I want to especially highlight <a href="https://coffeeplanet.itch.io/ludum-dare-51">Cobor goes farming</a> and <a href="https://coffeeplanet.itch.io/windy-the-indie">Windy the Indy</a>
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-box">
|
||||
<img class="project-thumb" src="/img/thesis_tool.png" alt="Planet Tool">
|
||||
<p>
|
||||
<span class="intro-text">Masterthesis: Planet Tool</span> <br>
|
||||
For my Masterthesis at Group T KU Leuven I made a tool for Unity that creates a procedural planet terrain.
|
||||
<br><br>The main challenge of this project was to optimize the algorithm to work as fast as possible. For this I leveraged GPU compute shaders to process large chunks of data at once.
|
||||
<br><br>You can find the tool and my thesis paper <a href="https://github.com/DouweRavers/ThesisProject-ThePlanetEngine/tree/main">here</a>.
|
||||
</p>
|
||||
</div>
|
||||
<div class="content-box">
|
||||
<img class="project-thumb" src="/img/wizard_gloves.png" alt="Wizard Gloves">
|
||||
<p>
|
||||
<span class="intro-text">Masterproject: Wizard Gloves</span> <br>
|
||||
In another project during my masters we explored gesture-based interactions in virtual environments.
|
||||
<br><br>For this project we developed a prototype using Unity and custom wearable hardware to enable magic-like hand gestures for interfacing with a story game.
|
||||
<br><br>See the game <a href="/vid/wizard_gloves.mp4">here</a> or you can find the game and paper <a href="https://github.com/DouweRavers/MasterProject-WizardsGlovesAdventure/tree/main">here</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
6
DouwcoWebsite/wwwroot/includes/apps.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<h1>Douwco Apps</h1>
|
||||
<div class="content-box">
|
||||
<p>
|
||||
Under construction...
|
||||
</p>
|
||||
</div>
|
||||
6
DouwcoWebsite/wwwroot/includes/games.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<h1>My Games</h1>
|
||||
<div class="content-box">
|
||||
<p>
|
||||
Under construction...
|
||||
</p>
|
||||
</div>
|
||||
25
DouwcoWebsite/wwwroot/includes/home.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<div class="vert_container revert start">
|
||||
<div class="panel">
|
||||
<div class="section-title">
|
||||
<img class="icon large toggle" src="/img/douwco_logo.png" alt="Image">
|
||||
<div class="text-section">
|
||||
<h1 class="title">Douwco</h1>
|
||||
<div class="tagline">
|
||||
<p class="green-text">Because </p>
|
||||
<p class="normal-text">nerds build their own homeserver.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-box">
|
||||
<p>
|
||||
<span class="intro-text">Welcome to the Douwco website.</span> <br>
|
||||
Ever wondered what machine the website you are visiting is run on? Well this time you know, just look to the image.
|
||||
This small homeserver hosts several open-source services like Nextcloud, Gitea, Overleaf community and ofcourse this
|
||||
website. <br> <br>
|
||||
Here I showcase my portfolio and all the games I've created over the years. If you are
|
||||
a family member you can also find the different services in the Douwco Apps tab.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<img class="image stick large" src="/img/server_image.png" alt="Image">
|
||||
</div>
|
||||
49
DouwcoWebsite/wwwroot/index.html
Normal file
@@ -0,0 +1,49 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<title>Douwco</title>
|
||||
<link rel="stylesheet" href="/css/style.css" />
|
||||
<link rel="stylesheet" href="/css/douwco.css" />
|
||||
<link rel="stylesheet" href="css/home.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav>
|
||||
<div class="vert_container centered">
|
||||
<a class="nav_option" href="#home"><img class="icon medium" src="/img/douwco_logo.png"></a>
|
||||
<a class="nav_option" href="#about_me">
|
||||
<img class="icon small" src="/img/icons/user.png" alt="Icon">
|
||||
<p>About <span>Me</span></p>
|
||||
</a>
|
||||
<a class="nav_option" href="#apps">
|
||||
<img class="icon small" src="/img/icons/projects_icon.png" alt="Icon">
|
||||
<p>Douwco <span>Apps</span></p>
|
||||
</a>
|
||||
<a class="nav_option" href="#games">
|
||||
<img class="icon small" src="/img/icons/devicegamepad2.png" alt="Icon">
|
||||
<p>My <span>Games</span></p>
|
||||
</a>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="scroll_container">
|
||||
<section id="home" class="scroll_section observed" data-section-name="home"></section>
|
||||
<section id="about_me" class="scroll_section observed" data-section-name="about_me"></section>
|
||||
<section id="apps" class="scroll_section observed" data-section-name="apps"></section>
|
||||
<section id="games" class="scroll_section observed" data-section-name="games"></section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="vert_container">
|
||||
<p id="copyright"></p>
|
||||
<p>Made and hosted in 🇪🇺</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="/js/main.js"></script>
|
||||
<script src="/js/index.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
47
DouwcoWebsite/wwwroot/js/index.js
Normal file
@@ -0,0 +1,47 @@
|
||||
// Setup the navigation bar
|
||||
function setupNavigationHighlight(){
|
||||
const sections = document.querySelectorAll('.scroll_section');
|
||||
const navOptions = document.querySelectorAll('.nav_option');
|
||||
const observer = new IntersectionObserver((entries) => {
|
||||
entries.forEach(entry => {
|
||||
if (entry.isIntersecting) {
|
||||
const sectionId = entry.target.id;
|
||||
window.history.pushState(null, null, `#${sectionId}`);
|
||||
navOptions.forEach(link => {
|
||||
link.classList.remove('active');
|
||||
if (link.getAttribute('href') === `#${sectionId}`) {
|
||||
link.classList.add('active');
|
||||
}
|
||||
});
|
||||
}
|
||||
}), {threshold: 0.5};
|
||||
})
|
||||
|
||||
sections.forEach(section => {
|
||||
observer.observe(section);
|
||||
});
|
||||
}
|
||||
|
||||
function setupNavigationClickObserver() {
|
||||
const navLinks = document.querySelectorAll('.nav_option');
|
||||
navLinks.forEach(link => {
|
||||
link.addEventListener('click', (event) => {
|
||||
event.preventDefault();
|
||||
|
||||
const targetId = link.getAttribute('href');
|
||||
const targetSection = document.querySelector(targetId);
|
||||
if (targetSection) {
|
||||
targetSection.scrollIntoView({
|
||||
behavior: 'smooth'
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
setupNavigationHighlight();
|
||||
setupNavigationClickObserver();
|
||||
|
||||
// Set copyright year
|
||||
const currentYear = new Date().getFullYear();
|
||||
document.getElementById('copyright').textContent = `© ${currentYear} - douwco.be`;
|
||||
32
DouwcoWebsite/wwwroot/js/main.js
Normal file
@@ -0,0 +1,32 @@
|
||||
// JIT file loading
|
||||
function include_file(filename, id) {
|
||||
fetch(`includes/${filename}.html`)
|
||||
.then(response => response.text())
|
||||
.then(html => { document.getElementById(id).innerHTML = html; })
|
||||
.catch(err => console.error('Error loading include:', err));
|
||||
}
|
||||
|
||||
function setupIntersectionObserver() {
|
||||
const observer = new IntersectionObserver((entries) => {
|
||||
entries.forEach(entry => {
|
||||
if (entry.isIntersecting) {
|
||||
const element = entry.target;
|
||||
const name = element.getAttribute('data-section-name');
|
||||
include_file(name, element.id);
|
||||
observer.unobserve(element);
|
||||
}
|
||||
});
|
||||
}, {
|
||||
threshold: 0.05,
|
||||
rootMargin: "0px 0px -50px 0px"
|
||||
});
|
||||
|
||||
const observedSections = document.querySelectorAll('.observed');
|
||||
if (observedSections.length === 0) {
|
||||
console.error('No elements with class "observed" found!');
|
||||
} else {
|
||||
observedSections.forEach(section => { observer.observe(section); });
|
||||
}
|
||||
}
|
||||
|
||||
setupIntersectionObserver();
|
||||