This commit is contained in:
Janus C. H. Knudsen 2026-01-29 20:47:01 +01:00
parent fc9319f7d9
commit 1856e5f1af
202 changed files with 84813 additions and 0 deletions

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

BIN
.vs/MinApp/v17/.suo Normal file

Binary file not shown.

View file

@ -0,0 +1,12 @@
{
"Version": 1,
"WorkspaceRootPath": "C:\\Users\\Janus Knudsen\\source\\swp-repos\\MinApp\\",
"Documents": [],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": []
}
]
}

View file

@ -0,0 +1,12 @@
{
"Version": 1,
"WorkspaceRootPath": "C:\\Users\\Janus Knudsen\\source\\swp-repos\\MinApp\\",
"Documents": [],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": []
}
]
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

9
MinApp.csproj Normal file
View file

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>

6
MinApp.csproj.user Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ActiveDebugProfile>https</ActiveDebugProfile>
</PropertyGroup>
</Project>

25
MinApp.sln Normal file
View file

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.14.36202.13 d17.14
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MinApp", "MinApp.csproj", "{7D706C91-282E-46D6-80AC-B4C213F7F9FF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7D706C91-282E-46D6-80AC-B4C213F7F9FF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7D706C91-282E-46D6-80AC-B4C213F7F9FF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7D706C91-282E-46D6-80AC-B4C213F7F9FF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7D706C91-282E-46D6-80AC-B4C213F7F9FF}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {6198BFE0-CAA1-4158-ADB9-2E073A900520}
EndGlobalSection
EndGlobal

26
Pages/Error.cshtml Normal file
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>

28
Pages/Error.cshtml.cs Normal file
View file

@ -0,0 +1,28 @@
using System.Diagnostics;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace MinApp.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);
private readonly ILogger<ErrorModel> _logger;
public ErrorModel(ILogger<ErrorModel> logger)
{
_logger = logger;
}
public void OnGet()
{
RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
}
}
}

10
Pages/Index.cshtml Normal file
View file

@ -0,0 +1,10 @@
@page
@model IndexModel
@{
ViewData["Title"] = "Home page";
}
<div class="text-center">
<h1 class="display-4">Welcome</h1>
<p>Learn about <a href="https://learn.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
</div>

20
Pages/Index.cshtml.cs Normal file
View file

@ -0,0 +1,20 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace MinApp.Pages
{
public class IndexModel : PageModel
{
private readonly ILogger<IndexModel> _logger;
public IndexModel(ILogger<IndexModel> logger)
{
_logger = logger;
}
public void OnGet()
{
}
}
}

8
Pages/Privacy.cshtml Normal file
View file

@ -0,0 +1,8 @@
@page
@model PrivacyModel
@{
ViewData["Title"] = "Privacy Policy";
}
<h1>@ViewData["Title"]</h1>
<p>Use this page to detail your site's privacy policy.</p>

20
Pages/Privacy.cshtml.cs Normal file
View file

@ -0,0 +1,20 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace MinApp.Pages
{
public class PrivacyModel : PageModel
{
private readonly ILogger<PrivacyModel> _logger;
public PrivacyModel(ILogger<PrivacyModel> logger)
{
_logger = logger;
}
public void OnGet()
{
}
}
}

View file

@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - MinApp</title>
<script type="importmap"></script>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
<link rel="stylesheet" href="~/MinApp.styles.css" asp-append-version="true" />
</head>
<body>
<header>
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
<div class="container">
<a class="navbar-brand" asp-area="" asp-page="/Index">MinApp</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
<ul class="navbar-nav flex-grow-1">
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-page="/Index">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-page="/Privacy">Privacy</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="container">
<main role="main" class="pb-3">
@RenderBody()
</main>
</div>
<footer class="border-top footer text-muted">
<div class="container">
&copy; 2026 - MinApp - <a asp-area="" asp-page="/Privacy">Privacy</a>
</div>
</footer>
<script src="~/lib/jquery/dist/jquery.min.js"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="~/js/site.js" asp-append-version="true"></script>
@await RenderSectionAsync("Scripts", required: false)
</body>
</html>

View file

@ -0,0 +1,48 @@
/* 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 {
white-space: normal;
text-align: center;
word-break: break-all;
}
a {
color: #0077cc;
}
.btn-primary {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.border-top {
border-top: 1px solid #e5e5e5;
}
.border-bottom {
border-bottom: 1px solid #e5e5e5;
}
.box-shadow {
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}
button.accept-policy {
font-size: 1rem;
line-height: inherit;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
white-space: nowrap;
line-height: 60px;
}

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 MinApp
@namespace MinApp.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers

3
Pages/_ViewStart.cshtml Normal file
View file

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

26
Program.cs Normal file
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:5132",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"https": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "https://localhost:7183;http://localhost:5132",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}

View file

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

9
appsettings.json Normal file
View file

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

View file

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

BIN
bin/Debug/net9.0/MinApp.dll Normal file

Binary file not shown.

BIN
bin/Debug/net9.0/MinApp.exe Normal file

Binary file not shown.

BIN
bin/Debug/net9.0/MinApp.pdb Normal file

Binary file not shown.

View file

@ -0,0 +1,19 @@
{
"runtimeOptions": {
"tfm": "net9.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "9.0.0"
},
{
"name": "Microsoft.AspNetCore.App",
"version": "9.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=v9.0", FrameworkDisplayName = ".NET 9.0")]

View file

@ -0,0 +1 @@
[]

View file

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// 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("MinApp")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("MinApp")]
[assembly: System.Reflection.AssemblyTitleAttribute("MinApp")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View file

@ -0,0 +1 @@
c2c8dc316518e6fde8ca735131cf48415b88c2664fdf1270d75b1a658247f3f6

View file

@ -0,0 +1,49 @@
is_global = true
build_property.TargetFramework = net9.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 = MinApp
build_property.RootNamespace = MinApp
build_property.ProjectDir = C:\Users\Janus Knudsen\source\swp-repos\MinApp\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 9.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Users\Janus Knudsen\source\swp-repos\MinApp
build_property._RazorSourceGeneratorDebug =
build_property.EffectiveAnalysisLevelStyle = 9.0
build_property.EnableCodeStyleSeverity =
[C:/Users/Janus Knudsen/source/swp-repos/MinApp/Pages/Error.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRXJyb3IuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Janus Knudsen/source/swp-repos/MinApp/Pages/Index.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW5kZXguY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Janus Knudsen/source/swp-repos/MinApp/Pages/Privacy.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcUHJpdmFjeS5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Janus Knudsen/source/swp-repos/MinApp/Pages/Shared/_ValidationScriptsPartial.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcU2hhcmVkXF9WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Janus Knudsen/source/swp-repos/MinApp/Pages/_ViewImports.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX1ZpZXdJbXBvcnRzLmNzaHRtbA==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Janus Knudsen/source/swp-repos/MinApp/Pages/_ViewStart.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX1ZpZXdTdGFydC5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Janus Knudsen/source/swp-repos/MinApp/Pages/Shared/_Layout.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcU2hhcmVkXF9MYXlvdXQuY3NodG1s
build_metadata.AdditionalFiles.CssScope = b-hfpw59nn0k

View file

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

View file

@ -0,0 +1 @@
d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0

View file

@ -0,0 +1,18 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// 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.

Binary file not shown.

View file

@ -0,0 +1 @@
b66532dded80e17bc9cf50ddcb27c81ea1f49f0b4bea1f7b97d50675dce98f03

View file

@ -0,0 +1,93 @@
C:\Users\Janus Knudsen\source\swp-repos\MinApp\bin\Debug\net9.0\appsettings.Development.json
C:\Users\Janus Knudsen\source\swp-repos\MinApp\bin\Debug\net9.0\appsettings.json
C:\Users\Janus Knudsen\source\swp-repos\MinApp\bin\Debug\net9.0\MinApp.staticwebassets.runtime.json
C:\Users\Janus Knudsen\source\swp-repos\MinApp\bin\Debug\net9.0\MinApp.staticwebassets.endpoints.json
C:\Users\Janus Knudsen\source\swp-repos\MinApp\bin\Debug\net9.0\MinApp.exe
C:\Users\Janus Knudsen\source\swp-repos\MinApp\bin\Debug\net9.0\MinApp.deps.json
C:\Users\Janus Knudsen\source\swp-repos\MinApp\bin\Debug\net9.0\MinApp.runtimeconfig.json
C:\Users\Janus Knudsen\source\swp-repos\MinApp\bin\Debug\net9.0\MinApp.dll
C:\Users\Janus Knudsen\source\swp-repos\MinApp\bin\Debug\net9.0\MinApp.pdb
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\MinApp.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\MinApp.AssemblyInfoInputs.cache
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\MinApp.AssemblyInfo.cs
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\MinApp.csproj.CoreCompileInputs.cache
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\MinApp.MvcApplicationPartsAssemblyInfo.cache
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\MinApp.RazorAssemblyInfo.cache
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\MinApp.RazorAssemblyInfo.cs
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\scopedcss\Pages\Shared\_Layout.cshtml.rz.scp.css
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\scopedcss\bundle\MinApp.styles.css
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\scopedcss\projectbundle\MinApp.bundle.scp.css
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\oimumdcbwp-b9sayid5wm.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\xr2dxpgz9d-61n19gt1b8.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\f9z6coxdrw-xtxxf3hu2r.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\1o9tl5ldqn-bqjiyaj88i.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\xlcluhc50b-c2jlpeoesf.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\2bgg6jb24c-erw9l3u2r3.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\2tosgkli5y-aexeepp0ev.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\ttpjjotz9n-d7shbmvgxk.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\l2ibpucxbi-ausgxo2sd3.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\3owa4cskyy-k8d9w2qqmf.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\4z27n58xlj-cosvhxvwiu.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\ylxyif2l9h-ub07r2b239.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\xwiv6s15pv-fvhpjtyr6v.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\0dd666qi0t-b7pk76d08c.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\kzbgg0dafm-fsbi9cje9m.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\4owzilrudf-rzd6atqjts.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\m94wxbg23v-ee0r1s7dh0.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\ihx3sgjem5-dxx9fxp4il.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\3sb96j2b4k-jd9uben2k1.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\us4oyp1gcl-khv3u5hwcm.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\g0slzuk4n7-r4e9w2rdcm.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\bbmxz15quq-lcd1t2u6c8.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\woau264ss0-c2oey78nd0.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\p9cu06tn97-tdbxkamptv.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\y5umlc9k10-j5mq2jizvt.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\l4kgno0523-06098lyss8.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\c19g81bhjs-nvvlpmu67g.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\yc49ua1zp6-s35ty4nyc5.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\f8x8wpgr90-pj5nd1wqec.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\nscgzmwxbk-46ein0sx1k.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\zc1dt93dwd-v0zj4ognzu.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\0sr8d8bguu-37tfw0ft22.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\qv5f5nz8li-hrwsygsryq.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\0kw7px9o3l-pk9g2wxc8p.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\7ehmg5r8o3-ft3s53vfgj.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\91lurj5wft-6cfz1n2cew.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\cmsd49qdfu-6pdc2jztkx.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\ybyesax6i4-493y06b0oq.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\lvsef6qebw-iovd86k7lj.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\mbtkeoomh4-vr1egmr9el.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\8zt6z8jyy5-kbrnm935zg.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\3ao1nepqm5-jj8uyg4cgr.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\8uerm2rtsl-y7v9cxd14o.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\x2ornoe8xb-notf2xhcfb.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\rbe7uoy893-h1s4sie4z3.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\c8718rlwij-63fj8s7r0e.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\grqnz3x02s-0j3bgjxly4.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\alqdx7n898-47otxtyo56.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\0wqomuub3d-4v8eqarkd7.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\k8z7t2pteq-356vix0kms.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\8ifuagj2cl-83jwlth58m.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\vgxhjm9bjv-mrlpezrjn3.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\vbay387z3g-lzl9nlhx6b.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\5hf80pu3wx-ag7o75518u.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\6cwe900cq2-x0q3zqp4vz.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\jmxep6jn5f-0i3buxo5is.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\7zyv4uxdss-o1o13a6vjx.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\s0fqfaojxu-ttgo8qnofa.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\33ok8mwjn7-2z0ns9nrw6.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\jf5rlw0t9q-muycvpuwrr.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\duba1zdcwy-87fc7y1x7t.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\8may6bo1r2-mlv21k5csn.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\vkjb90r222-0gn2g45icf.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\compressed\95vwfg8ou0-0gn2g45icf.gz
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\staticwebassets.build.json
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\staticwebassets.build.json.cache
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\staticwebassets.development.json
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\staticwebassets.build.endpoints.json
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\staticwebassets.upToDateCheck.txt
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\MinApp.dll
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\refint\MinApp.dll
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\MinApp.pdb
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\MinApp.genruntimeconfig.cache
C:\Users\Janus Knudsen\source\swp-repos\MinApp\obj\Debug\net9.0\ref\MinApp.dll

BIN
obj/Debug/net9.0/MinApp.dll Normal file

Binary file not shown.

View file

@ -0,0 +1 @@
95d4afe361e964db515884fb25a949e7c795b8e22b7c2fac42da5440e14c7fc4

BIN
obj/Debug/net9.0/MinApp.pdb Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

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