Recreated webstie in Dotnet

This commit is contained in:
2026-02-08 00:54:13 +01:00
parent 50adbccaba
commit 1fc420cd1c
229 changed files with 84676 additions and 0 deletions

View File

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

View File

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

View File

@@ -0,0 +1,8 @@
@page
@model AboutMeModel
@{
ViewData["Title"] = "Douwe Ravers";
}
<h1>@ViewData["Title"]</h1>
<p>To be constructed</p>

View File

@@ -0,0 +1,11 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace DouwcoWebsite.Pages;
public class AboutMeModel : PageModel
{
public void OnGet()
{
}
}

View File

@@ -0,0 +1,8 @@
@page
@model DouwcoWebsite.Pages.DouwcoApps
@{
ViewData["Title"] = "Douwco Apps";
}
<h1>@ViewData["Title"]</h1>
<p>To be constructed</p>

View File

@@ -0,0 +1,11 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace DouwcoWebsite.Pages;
public class DouwcoApps : PageModel
{
public void OnGet()
{
}
}

View File

@@ -0,0 +1,26 @@
@page
@model ErrorModel
@{
ViewData["Title"] = "Error";
}
<h1 class="text-danger">Error.</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>
@if (Model.ShowRequestId)
{
<p>
<strong>Request ID:</strong> <code>@Model.RequestId</code>
</p>
}
<h3>Development Mode</h3>
<p>
Swapping to the <strong>Development</strong> environment displays detailed information about the error that occurred.
</p>
<p>
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
It can result in displaying sensitive information from exceptions to end users.
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
and restarting the app.
</p>

View File

@@ -0,0 +1,19 @@
using System.Diagnostics;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace DouwcoWebsite.Pages;
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
[IgnoreAntiforgeryToken]
public class ErrorModel : PageModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
public void OnGet()
{
RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
}
}

View File

@@ -0,0 +1,32 @@
@page
@model IndexModel
@{
ViewData["Title"] = "Home";
}
<div>
<h1 style="font-family: righteous; font-size: 100px">Douwco</h1>
<p>Ow, you are already here? I didnt expect you to be here so soon. I am still working on this website.</p>
<br>
<p>Here is a link to my design, so you can see what it will be:
<a style="color: #0dcaf0" href="https://design.penpot.app/#/view?file-id=5b786374-066f-8104-8007-0b19376c435e&page-id=acf819fe-142a-80da-8007-875a6f9f5e61&section=interactions&index=0&share-id=9ebbf814-01a1-8050-8007-89e30d4ac951">
Penpot Design
</a></p>
<nav>
<div class="vert_container" style="justify-content: space-around">
<a class="nav_option" asp-page="/AboutMe">
<img class="icon" src="~/img/icons/user.png" alt="About Me">
<p>About <span>Me</span></p>
</a>
<a class="nav_option" asp-page="/DouwcoApps">
<img class="icon" src="~/img/icons/projects_icon.png" alt="Douwco Apps">
<p>Douwco <span>Apps</span></p>
</a>
<a class="nav_option" asp-page="/MyGames">
<img class="icon" src="~/img/icons/devicegamepad2.png" alt="My Games">
<p>My <span>Games</span></p>
</a>
</div>
</nav>
</div>

View File

@@ -0,0 +1,11 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace DouwcoWebsite.Pages;
public class IndexModel : PageModel
{
public void OnGet()
{
}
}

View File

@@ -0,0 +1,8 @@
@page
@model DouwcoWebsite.Pages.MyGames
@{
ViewData["Title"] = "My Games";
}
<h1>@ViewData["Title"]</h1>
<p>To be constructed</p>

View File

@@ -0,0 +1,11 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace DouwcoWebsite.Pages;
public class MyGames : PageModel
{
public void OnGet()
{
}
}

View File

@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>@ViewData["Title"] - Douwco</title>
<script type="importmap"></script>
<link rel="stylesheet" href="~/css/layout.css" asp-append-version="true"/>
<link rel="stylesheet" href="~/css/structure.css" asp-append-version="true"/>
<link rel="stylesheet" href="~/css/douwco.css" asp-append-version="true"/>
</head>
<body>
<header class="@(ViewData["Title"] == "Home" ? "hide_header" : "")">
<nav>
<div class="vert_container" style="justify-content: space-around">
<a class="nav_option" asp-page="/Index"><img class="logo" src="~/img/douwco_logo.png"></a>
<a class="nav_option" asp-page="/AboutMe">
<img class="icon" src="~/img/icons/user.png" alt="About Me">
<p>About <span>Me</span></p>
</a>
<a class="nav_option" asp-page="/DouwcoApps">
<img class="icon" src="~/img/icons/projects_icon.png" alt="Douwco Apps">
<p>Douwco <span>Apps</span></p>
</a>
<a class="nav_option" asp-page="/MyGames">
<img class="icon" src="~/img/icons/devicegamepad2.png" alt="My Games">
<p>My <span>Games</span></p>
</a>
</div>
</nav>
</header>
<main role="main">
@RenderBody()
</main>
<footer>
<div class="vert_container">
<p>&copy; 2026 - douwco.be</p>
<p>Made and hosted in 🇪🇺</p>
</div>
</footer>
</body>
</html>

View File

@@ -0,0 +1,2 @@
<script src="~/lib/jquery-validation/dist/jquery.validate.min.js"></script>
<script src="~/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"></script>

View File

@@ -0,0 +1,3 @@
@using DouwcoWebsite
@namespace DouwcoWebsite.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers

View File

@@ -0,0 +1,3 @@
@{
Layout = "_Layout";
}

View File

@@ -0,0 +1,26 @@
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorPages();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseRouting();
app.UseAuthorization();
app.MapStaticAssets();
app.MapRazorPages()
.WithStaticAssets();
app.Run();

View File

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

View File

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

View File

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

View File

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

View File

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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1 @@
e310919b8afc1899290e1bd1df310eb297e0bef40eff69d26c3304db7d639270

View File

@@ -0,0 +1,59 @@
is_global = true
build_property.TargetFramework = net10.0
build_property.TargetFrameworkIdentifier = .NETCoreApp
build_property.TargetFrameworkVersion = v10.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = DouwcoWebsite
build_property.RootNamespace = DouwcoWebsite
build_property.ProjectDir = /mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 9.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = /mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite
build_property._RazorSourceGeneratorDebug =
build_property.EffectiveAnalysisLevelStyle = 10.0
build_property.EnableCodeStyleSeverity =
[/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/Pages/AboutMe.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvQWJvdXRNZS5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =
[/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/Pages/DouwcoApps.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvRG91d2NvQXBwcy5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =
[/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/Pages/Error.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvRXJyb3IuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/Pages/Index.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvSW5kZXguY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/Pages/MyGames.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvTXlHYW1lcy5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =
[/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/Pages/Shared/_Layout.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvU2hhcmVkL19MYXlvdXQuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/Pages/Shared/_ValidationScriptsPartial.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvU2hhcmVkL19WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/Pages/_ViewImports.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX1ZpZXdJbXBvcnRzLmNzaHRtbA==
build_metadata.AdditionalFiles.CssScope =
[/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/Pages/_ViewStart.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX1ZpZXdTdGFydC5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =

View File

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

View File

@@ -0,0 +1 @@
d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0

View File

@@ -0,0 +1,17 @@
//------------------------------------------------------------------------------
// <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: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute(("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" +
"ory, Microsoft.AspNetCore.Mvc.Razor"))]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
4c7e12565fdfbab0d69903d633708bc948ff338675fae803f6e11799b2b6ad71

View File

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

View File

@@ -0,0 +1 @@
b175a6ceb5188feb12a01e30dc734301c3f69ecbd301acd1b68673907465c766

Binary file not shown.

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