Compare commits
4 Commits
96b6340223
...
cpp
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
06f271d778 | ||
|
|
b0acdc67c8 | ||
| 218dbe36d9 | |||
|
|
bc7ca39d25 |
BIN
.cache/clangd/index/main.cpp.0D6023EA3F9F2E27.idx
Normal file
BIN
.cache/clangd/index/main.cpp.0D6023EA3F9F2E27.idx
Normal file
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
(ssh://git@git.jetbrains.team/llvm/llvm-project.git f4157ca9dd49181f6d35eaf6d324ffa84a40f01b based on LLVM 31f1590e4fb324c43dc36199587c453e27b6f6fa revision)
|
|
||||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -6,4 +6,4 @@ CMakeCache.txt
|
|||||||
Makefile
|
Makefile
|
||||||
|
|
||||||
# Executable
|
# Executable
|
||||||
douwco_web
|
server.out
|
||||||
|
|||||||
15
.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/.gitignore
generated
vendored
15
.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/.gitignore
generated
vendored
@@ -1,15 +0,0 @@
|
|||||||
# Default ignored files
|
|
||||||
/shelf/
|
|
||||||
/workspace.xml
|
|
||||||
# Rider ignored files
|
|
||||||
/contentModel.xml
|
|
||||||
/projectSettingsUpdater.xml
|
|
||||||
/modules.xml
|
|
||||||
/.idea.DouwcoWebsite.iml
|
|
||||||
# Ignored default folder with query files
|
|
||||||
/queries/
|
|
||||||
# Datasource local storage ignored files
|
|
||||||
/dataSources/
|
|
||||||
/dataSources.local.xml
|
|
||||||
# Editor-based HTTP Client requests
|
|
||||||
/httpRequests/
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
|
|
||||||
</project>
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="UserContentModel">
|
|
||||||
<attachedFolders />
|
|
||||||
<explicitIncludes />
|
|
||||||
<explicitExcludes />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="VcsDirectoryMappings">
|
|
||||||
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
10
.vscode/launch.json
vendored
10
.vscode/launch.json
vendored
@@ -1,10 +0,0 @@
|
|||||||
{
|
|
||||||
// Use IntelliSense to learn about possible attributes.
|
|
||||||
// Hover to view descriptions of existing attributes.
|
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
|
||||||
|
|
||||||
|
|
||||||
]
|
|
||||||
}
|
|
||||||
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@@ -1,3 +1,5 @@
|
|||||||
{
|
{
|
||||||
"cmake.sourceDirectory": "/home/douwe/Nextcloud/Projects/douwco.be"
|
"clangd.arguments": [
|
||||||
|
"--query-driver=/usr/bin/g++-15"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
11
CMakeLists.txt
Normal file
11
CMakeLists.txt
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.10)
|
||||||
|
project(douwco_website)
|
||||||
|
|
||||||
|
# Set the C++ standard (e.g., C++17)
|
||||||
|
set(CMAKE_CXX_STANDARD 17)
|
||||||
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||||
|
|
||||||
|
# Add your executable
|
||||||
|
add_executable(server.out
|
||||||
|
server/main.cpp
|
||||||
|
)
|
||||||
33
Dockerfile
33
Dockerfile
@@ -1,23 +1,18 @@
|
|||||||
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base
|
FROM debian:stable-slim
|
||||||
USER $APP_UID
|
|
||||||
WORKDIR /app
|
RUN apt-get update && \
|
||||||
EXPOSE 8080
|
apt-get install -y \
|
||||||
EXPOSE 8081
|
g++ \
|
||||||
|
cmake \
|
||||||
|
libboost-all-dev
|
||||||
|
|
||||||
|
WORKDIR /webserver
|
||||||
|
|
||||||
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 . .
|
COPY . .
|
||||||
WORKDIR "/src/DouwcoWebsite"
|
|
||||||
RUN dotnet build "./DouwcoWebsite.csproj" -c $BUILD_CONFIGURATION -o /app/build
|
|
||||||
|
|
||||||
FROM build AS publish
|
RUN mkdir -p build && \
|
||||||
ARG BUILD_CONFIGURATION=Release
|
cd build && \
|
||||||
RUN dotnet publish "./DouwcoWebsite.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
|
cmake .. && \
|
||||||
|
make
|
||||||
|
|
||||||
FROM base AS final
|
ENTRYPOINT ["./build/server.out"]
|
||||||
WORKDIR /app
|
|
||||||
COPY --from=publish /app/publish .
|
|
||||||
ENTRYPOINT ["dotnet", "DouwcoWebsite.dll"]
|
|
||||||
|
|||||||
@@ -1,91 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
|
||||||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<Content Include="..\.dockerignore">
|
|
||||||
<Link>.dockerignore</Link>
|
|
||||||
</Content>
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.min.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.js.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.min.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.min.js.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\LICENSE" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\dist\jquery.validate.unobtrusive.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\dist\jquery.validate.unobtrusive.min.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\additional-methods.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\additional-methods.min.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\jquery.validate.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\jquery.validate.min.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\LICENSE.md" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.min.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.min.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.min.js" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.min.map" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\LICENSE.txt" />
|
|
||||||
<_ContentIncludedByDefault Remove="Pages\AboutMe.cshtml" />
|
|
||||||
<_ContentIncludedByDefault Remove="Pages\DouwcoApps.cshtml" />
|
|
||||||
<_ContentIncludedByDefault Remove="Pages\Error.cshtml" />
|
|
||||||
<_ContentIncludedByDefault Remove="Pages\MyGames.cshtml" />
|
|
||||||
<_ContentIncludedByDefault Remove="Pages\Shared\_Layout.cshtml" />
|
|
||||||
<_ContentIncludedByDefault Remove="Pages\Shared\_ValidationScriptsPartial.cshtml" />
|
|
||||||
<_ContentIncludedByDefault Remove="Pages\_ViewImports.cshtml" />
|
|
||||||
<_ContentIncludedByDefault Remove="Pages\_ViewStart.cshtml" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="wwwroot\index.html" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "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
|
|
||||||
18
Program.cs
18
Program.cs
@@ -1,18 +0,0 @@
|
|||||||
var builder = WebApplication.CreateBuilder(args);
|
|
||||||
|
|
||||||
// Add services to the container.
|
|
||||||
builder.Services.AddControllers(); // For API controllers
|
|
||||||
|
|
||||||
var app = builder.Build();
|
|
||||||
app.MapGet("/api/test", () => "test works!");
|
|
||||||
|
|
||||||
// Configure the HTTP request pipeline.
|
|
||||||
// No need for UseHttpsRedirection or UseHsts, as Nginx handles SSL.
|
|
||||||
app.UseDefaultFiles(); // Enable default file serving
|
|
||||||
app.UseStaticFiles(); // Serve static files from wwwroot
|
|
||||||
app.UseRouting();
|
|
||||||
app.UseAuthorization();
|
|
||||||
|
|
||||||
app.MapControllers(); // Map API controllers
|
|
||||||
|
|
||||||
app.Run();
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://json.schemastore.org/launchsettings.json",
|
|
||||||
"profiles": {
|
|
||||||
"http": {
|
|
||||||
"commandName": "Project",
|
|
||||||
"dotnetRunMessages": true,
|
|
||||||
"launchBrowser": true,
|
|
||||||
"applicationUrl": "http://localhost:8080",
|
|
||||||
"environmentVariables": {
|
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"DetailedErrors": true,
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.AspNetCore": "Warning"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.AspNetCore": "Warning"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"AllowedHosts": "*"
|
|
||||||
}
|
|
||||||
Binary file not shown.
@@ -1,23 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETCoreApp,Version=v10.0",
|
|
||||||
"signature": ""
|
|
||||||
},
|
|
||||||
"compilationOptions": {},
|
|
||||||
"targets": {
|
|
||||||
".NETCoreApp,Version=v10.0": {
|
|
||||||
"DouwcoWebsite/1.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"DouwcoWebsite.dll": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"DouwcoWebsite/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeOptions": {
|
|
||||||
"tfm": "net10.0",
|
|
||||||
"frameworks": [
|
|
||||||
{
|
|
||||||
"name": "Microsoft.NETCore.App",
|
|
||||||
"version": "10.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Microsoft.AspNetCore.App",
|
|
||||||
"version": "10.0.0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"configProperties": {
|
|
||||||
"System.GC.Server": true,
|
|
||||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"DetailedErrors": true,
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.AspNetCore": "Warning"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.AspNetCore": "Warning"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"AllowedHosts": "*"
|
|
||||||
}
|
|
||||||
7
compile_commands.json
Normal file
7
compile_commands.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"directory": "/home/douwe/Projects/douwco_website/server",
|
||||||
|
"command": "/usr/bin/g++-15 -I/usr/include/c++/15 -I/usr/include/x86_64-linux-gnu/c++/15 -I/usr/include/c++/15/backward -I/usr/lib/gcc/x86_64-linux-gnu/15/include -I/usr/local/include -I/usr/include/x86_64-linux-gnu -I/usr/include -c main.cpp -o main.o",
|
||||||
|
"file": "/home/douwe/Projects/douwco_website/server/main.cpp"
|
||||||
|
}
|
||||||
|
]
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
image: douwcowebsite
|
image: douwcowebsite
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: DouwcoWebsite/Dockerfile
|
dockerfile: ./Dockerfile
|
||||||
ports:
|
ports:
|
||||||
- 8080:8080
|
- 8080:8080
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
// <autogenerated />
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// This code was generated by a tool.
|
|
||||||
//
|
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
|
||||||
// the code is regenerated.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("DouwcoWebsite")]
|
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+cb5db8df2e4a17a2d67a0923b8a24ade8aaba108")]
|
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("DouwcoWebsite")]
|
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("DouwcoWebsite")]
|
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
||||||
|
|
||||||
// Generated by the MSBuild WriteCodeFragment class.
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
8636e56ec2693babc0974a93f5bb1f6d4e6727ebe6b32f6bdeac4193d1707575
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
is_global = true
|
|
||||||
build_property.TargetFramework = net10.0
|
|
||||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
|
||||||
build_property.TargetFrameworkVersion = v10.0
|
|
||||||
build_property.TargetPlatformMinVersion =
|
|
||||||
build_property.UsingMicrosoftNETSdkWeb = true
|
|
||||||
build_property.ProjectTypeGuids =
|
|
||||||
build_property.InvariantGlobalization =
|
|
||||||
build_property.PlatformNeutralAssembly =
|
|
||||||
build_property.EnforceExtendedAnalyzerRules =
|
|
||||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
|
||||||
build_property.RootNamespace = DouwcoWebsite
|
|
||||||
build_property.RootNamespace = DouwcoWebsite
|
|
||||||
build_property.ProjectDir = /mnt/douwe/hdd/Projects/douwco_website/
|
|
||||||
build_property.EnableComHosting =
|
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
|
||||||
build_property.RazorLangVersion = 9.0
|
|
||||||
build_property.SupportLocalizedComponentNames =
|
|
||||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
|
||||||
build_property.MSBuildProjectDirectory = /mnt/douwe/hdd/Projects/douwco_website
|
|
||||||
build_property._RazorSourceGeneratorDebug =
|
|
||||||
build_property.EffectiveAnalysisLevelStyle = 10.0
|
|
||||||
build_property.EnableCodeStyleSeverity =
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
// <auto-generated/>
|
|
||||||
global using Microsoft.AspNetCore.Builder;
|
|
||||||
global using Microsoft.AspNetCore.Hosting;
|
|
||||||
global using Microsoft.AspNetCore.Http;
|
|
||||||
global using Microsoft.AspNetCore.Routing;
|
|
||||||
global using Microsoft.Extensions.Configuration;
|
|
||||||
global using Microsoft.Extensions.DependencyInjection;
|
|
||||||
global using Microsoft.Extensions.Hosting;
|
|
||||||
global using Microsoft.Extensions.Logging;
|
|
||||||
global using System;
|
|
||||||
global using System.Collections.Generic;
|
|
||||||
global using System.IO;
|
|
||||||
global using System.Linq;
|
|
||||||
global using System.Net.Http;
|
|
||||||
global using System.Net.Http.Json;
|
|
||||||
global using System.Threading;
|
|
||||||
global using System.Threading.Tasks;
|
|
||||||
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
afdbb76545ce5c826375ab45a2e6b150b47df5e59cd85ff72987c071de4581e9
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/appsettings.Development.json
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/appsettings.json
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite.deps.json
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite.dll
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite.pdb
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/rpswa.dswa.cache.json
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.MvcApplicationPartsAssemblyInfo.cache
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/rjimswa.dswa.cache.json
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/scopedcss/bundle/DouwcoWebsite.styles.css
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-6uj78r15jt-6uj78r15jt.gz
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/staticwebassets.build.json
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/staticwebassets.build.json.cache
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/staticwebassets.development.json
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/staticwebassets.build.endpoints.json
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/swae.build.ex.cache
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.dll
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/refint/DouwcoWebsite.dll
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.pdb
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache
|
|
||||||
/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/ref/DouwcoWebsite.dll
|
|
||||||
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
bebd2df5658b93fd3323ef099185ee21d8b0afa83a4c30b639d3ef440f0ee6a9
|
|
||||||
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.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
{"GlobalPropertiesHash":"vYuNcIjVKzyGW75+DqTgUAgYEp5dCBwjSmrFeRU5PjE=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["peyR/vQS5KEGWxwWBs/\u002BNLLLJYEgBiFFi1Q7\u002BCcZE/8=","q0FQBO2wlMvOGhESvBixiZ5dxHvMJ7ChxaAux1H0UTg=","mOtHTiZaCq4tBPSCBsUavaayKFSpxvt4cyOayfya\u002BYQ=","QDnJ0NuvFOIS8BpKBlHQC\u002BZZnypKxhHuI/xhX05LR6o=","3Q7ZHPM7Ufak9/CXQGsNiyJOrL9yAWSx08796t1\u002B1No=","Y\u002BlHy0V7N\u002BAZxmtlgHjckKq1VYaxoM6xdfiGDoUzTXY=","eZB5wt1ZXpewiyLydaCndbw1KHs0gc5Vxrf7hw1kHbs=","KPvj0A2gYUU1aNtbJqRkfkkf5InsxGD\u002BGt4uUrg0E5c=","KVUf1O36fFpc/zG2g/aLnlsiuuDl/kD/r6EMSem4UZw=","oSK963UD0dYSoVcd7cwLCnikNvCNjxgkXnjwBAzyH\u002Bc=","p/8SsXdvggrLTI0gRrOZhPP/pZumAdBmSFkgy1FLqs8=","Se4ubfLE74K\u002B04pssRuadtxHORVIJnXh9gsxqBEkipY=","A/\u002BUvymzGFfCVDEzp57yGctpZ9AsGpcnzXh82EWkTBo=","JYrCrSY/3C/tmOLAfuWDTrNOpe7i60aYwzuLMiTHyRU=","f31uUmowtC2DKb7I0LFHX7MwzTqIP5ZNwXMbNbhuChc=","LyArjzuOcWSotwSA8aRPSS4lesZtR3x8U60xXshd4so=","OwX39kl1N6ZafiDm\u002BfGEffpVdlKRnD1rO\u002BK0ru9B3Kw=","NZAFZppn/Wqs7LSHUzs8evZYquqmYIVM4bvKZmSYf8I=","1Ss6UKiybGbsxDJbP0n4P0T3EXJ\u002BlKsEktrumiVBEWI=","hisXEDZJKnm8j1lYnIGUEP1nqOAQICvUyeecicojqfw=","7bs1UN3d4FF3eag6JwMo3nL8zK2A9DqyxK/1SlPRe/8=","NY3UUWp2G9nX2aSQmqEsh0B07i3ejLcCkpEyf35TSRY=","9/PS114sw/i94olkveCK\u002Bdwz1QT05jrAX08TO8dCUHQ=","RU2g9utvqD8mWaxgByW9rVQupjeRb57fBuW61777M1c=","EcderlbwgvbqAH/Jo4V2xrDkUK03BHglRnlNKF84Hac=","\u002Bp8cMm4ngQmX//vfT62TQAg1WjsMjXInDDCqF5\u002B3/\u002Bs=","iAhoxkrLujbBXPII9K1D0HEALlzwei7LZApmMXSWHVQ=","OnbAv/bmzQHx\u002BCVaTuzYOhw9dt85snUrhOyWV5leFn0=","JGwA6T1Wt6rcBdAne4Aholwx0ndUZIC4aKi2Aw3kEEg="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
{"GlobalPropertiesHash":"SfjcW13XDPedjwok2WPg9U9hJ1zPlz7xagJP9/9tU+E=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["7VtgCJQTB\u002BE0\u002BEcVgq8hcfOX4mO7g5nypF6w9ykGKjU=","V8nyZFpRhKTuGh8X2zTK8bLmYtwXbTdsxlAfA8aUBNc=","K\u002Bi5dVnnbOzqlKwtDWubIz8vMIiunL2un0gtfGvKbdA=","W6/XdpG30kdc9MuCbTwQylecqz\u002BkBpBTVUzzSdFSPS0=","GbtX1LfE1XfOqTgcDyl40cLVRI8XsgYL83tVProjiak=","L0Os2NU5bYrxGf2UijR32Uy2maNPXosTppRnVyRT4t4=","3bJjj5VWMT2Lz1gtmUfcZ\u002BsX805EilEFdH59rIeIPyQ=","gQr9siG47uMeZWNAti2uU4x6eKyEJSEB1CMiV72ZHC0=","Dhf8kPWXHtEmRvibXMHswfLD\u002B3o1fSXYk1SiyOVui4k=","sEw7rLBAZvLvWoUcgoJljrzwWgQWkEVBtKj2voufx6o=","cHyC9ho5Z\u002BADHh1QUHXr29HoED0FNhsmAhYDSx7Gp/c=","zOrLYxIwE0c6zAIcPVSSUX0fJkQBRW8QaWxG0LBOMFU=","RuzCbsAkcoxcrhCKi9PXSOCHyC/GK8OpYT2HkHPlBYM=","ci1T4rxWNkrU4ASrMsI1bMWwH\u002Bh8RhTlUGEBycV5DYI=","jhsl76xf\u002BoWq\u002B//hDz3nmEkazLui/yVq8u3k958fjsU=","/ZogTRSpViRTS9zC7eF0cM5/mtd6tAHnoq0ETnR9V4o=","Qf6IwVXlecBfH6b7gOH56e1gDd8rWP5FphzYuJKZSsc=","HsymA4WtHbRh1vfUCZFeHQ3XGOxm2Zeh5j4c/96YJhU=","kVPiuaP\u002B3m8V8SOPtUw2Rcb3simUnlFOhgUekWGEyN4=","/l5YGJFatGz3p7TIi2T4LKRDhITSYToDO0utQgPC7Mc=","BAjwNuss0RbgWmSWRWu\u002B5rPQBx0o7A0l19QIkKJefc4=","AeCHXJPn7iM0rYRIbQqSySlKp4QdzIUjH\u002BFAL9TflZw=","8kmRphf8409tYqRx8iENUiku/j2u5josQ9hZITcQ3GQ=","wEwtU8oELWsaIzpF5grHfe7AU4J9QIVRuxKrktFXXbw=","pEqyByX9KaO2fI12C\u002B9FG/GC0Q9ktqWDKZJTkiB54VU=","Jghq4kSnpdUaf1oNmaTlFs28uGtd/7t9PpY5pFexuQo=","I0HjlUwsODusS\u002BYQTe8b6f6L7zehAZs3PqyIL6FWAPQ=","loBSiOJlIF/nHFiPyuFjoSwTw3MSLZseOtOy97oenK4=","unl7CiT37VHQK\u002Bh7mn\u002BoRp4\u002BgsIt9A4Lz\u002B46U0c9iws=","ia2HLf/1yQw4ZvgX7kYXPsJRI73ER2\u002BhgZALIuErV3M=","L9TxQUJWd\u002BqAAX35epuyFvWGAq3zS4Wf2bmtXJdIHzU=","wX53F4F/PdAaNXtULmZ\u002BcyKn\u002BNz6tjFzV3kpMQieRH4=","UJvkKFaWGffOaJOPAfWRIpy07f7hbT\u002BIW\u002Be8ECsqG5Y=","OrIg/0yNFecJ6K/oENxbqCLnmcVTfyfQnV\u002BxgJwxkNE=","HlrcshtAzEL91hgw8\u002BXnGRafzfdixOuqWKtArZ8H53o=","XmtIdTc1hp7PQDoitOdirg9fRxi0NerJti0y4Tbd270=","FBnndED0x2QEgmVhYQZUAs3YLYKK8o32iK7Wg8xVWb4=","fSkB3P1ymetdcnYpzF9/I2P2eLcET\u002BVI3uKrWuuki9g="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
{"GlobalPropertiesHash":"ls1NZ5f6X7fMsuOgnRY2nYVMMl3qs1ERzOXp70nBMio=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["7VtgCJQTB\u002BE0\u002BEcVgq8hcfOX4mO7g5nypF6w9ykGKjU=","V8nyZFpRhKTuGh8X2zTK8bLmYtwXbTdsxlAfA8aUBNc=","K\u002Bi5dVnnbOzqlKwtDWubIz8vMIiunL2un0gtfGvKbdA=","W6/XdpG30kdc9MuCbTwQylecqz\u002BkBpBTVUzzSdFSPS0=","GbtX1LfE1XfOqTgcDyl40cLVRI8XsgYL83tVProjiak=","L0Os2NU5bYrxGf2UijR32Uy2maNPXosTppRnVyRT4t4=","3bJjj5VWMT2Lz1gtmUfcZ\u002BsX805EilEFdH59rIeIPyQ=","gQr9siG47uMeZWNAti2uU4x6eKyEJSEB1CMiV72ZHC0=","Dhf8kPWXHtEmRvibXMHswfLD\u002B3o1fSXYk1SiyOVui4k=","sEw7rLBAZvLvWoUcgoJljrzwWgQWkEVBtKj2voufx6o=","cHyC9ho5Z\u002BADHh1QUHXr29HoED0FNhsmAhYDSx7Gp/c=","zOrLYxIwE0c6zAIcPVSSUX0fJkQBRW8QaWxG0LBOMFU=","RuzCbsAkcoxcrhCKi9PXSOCHyC/GK8OpYT2HkHPlBYM=","ci1T4rxWNkrU4ASrMsI1bMWwH\u002Bh8RhTlUGEBycV5DYI=","jhsl76xf\u002BoWq\u002B//hDz3nmEkazLui/yVq8u3k958fjsU=","/ZogTRSpViRTS9zC7eF0cM5/mtd6tAHnoq0ETnR9V4o=","Qf6IwVXlecBfH6b7gOH56e1gDd8rWP5FphzYuJKZSsc=","HsymA4WtHbRh1vfUCZFeHQ3XGOxm2Zeh5j4c/96YJhU=","kVPiuaP\u002B3m8V8SOPtUw2Rcb3simUnlFOhgUekWGEyN4=","/l5YGJFatGz3p7TIi2T4LKRDhITSYToDO0utQgPC7Mc=","BAjwNuss0RbgWmSWRWu\u002B5rPQBx0o7A0l19QIkKJefc4=","AeCHXJPn7iM0rYRIbQqSySlKp4QdzIUjH\u002BFAL9TflZw=","8kmRphf8409tYqRx8iENUiku/j2u5josQ9hZITcQ3GQ=","wEwtU8oELWsaIzpF5grHfe7AU4J9QIVRuxKrktFXXbw=","pEqyByX9KaO2fI12C\u002B9FG/GC0Q9ktqWDKZJTkiB54VU=","Jghq4kSnpdUaf1oNmaTlFs28uGtd/7t9PpY5pFexuQo=","I0HjlUwsODusS\u002BYQTe8b6f6L7zehAZs3PqyIL6FWAPQ=","loBSiOJlIF/nHFiPyuFjoSwTw3MSLZseOtOy97oenK4=","unl7CiT37VHQK\u002Bh7mn\u002BoRp4\u002BgsIt9A4Lz\u002B46U0c9iws=","ia2HLf/1yQw4ZvgX7kYXPsJRI73ER2\u002BhgZALIuErV3M=","L9TxQUJWd\u002BqAAX35epuyFvWGAq3zS4Wf2bmtXJdIHzU=","wX53F4F/PdAaNXtULmZ\u002BcyKn\u002BNz6tjFzV3kpMQieRH4=","UJvkKFaWGffOaJOPAfWRIpy07f7hbT\u002BIW\u002Be8ECsqG5Y=","OrIg/0yNFecJ6K/oENxbqCLnmcVTfyfQnV\u002BxgJwxkNE=","HlrcshtAzEL91hgw8\u002BXnGRafzfdixOuqWKtArZ8H53o=","XmtIdTc1hp7PQDoitOdirg9fRxi0NerJti0y4Tbd270=","FBnndED0x2QEgmVhYQZUAs3YLYKK8o32iK7Wg8xVWb4=","fSkB3P1ymetdcnYpzF9/I2P2eLcET\u002BVI3uKrWuuki9g="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
|||||||
IcK+mDbByIxkncjDEUMC++sP5BD2aen9IdPCDqCix9U=
|
|
||||||
File diff suppressed because one or more lines are too long
@@ -1,485 +0,0 @@
|
|||||||
{
|
|
||||||
"format": 1,
|
|
||||||
"restore": {
|
|
||||||
"/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj": {}
|
|
||||||
},
|
|
||||||
"projects": {
|
|
||||||
"/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj",
|
|
||||||
"projectName": "DouwcoWebsite",
|
|
||||||
"projectPath": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj",
|
|
||||||
"packagesPath": "/home/douwe/.nuget/packages/",
|
|
||||||
"outputPath": "/mnt/douwe/hdd/Projects/douwco_website/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.104/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]"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
|
||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/douwe/.nuget/packages/</NuGetPackageRoot>
|
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/douwe/.nuget/packages/</NuGetPackageFolders>
|
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<SourceRoot Include="/home/douwe/.nuget/packages/" />
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
|
||||||
@@ -1,490 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 3,
|
|
||||||
"targets": {
|
|
||||||
"net10.0": {}
|
|
||||||
},
|
|
||||||
"libraries": {},
|
|
||||||
"projectFileDependencyGroups": {
|
|
||||||
"net10.0": []
|
|
||||||
},
|
|
||||||
"packageFolders": {
|
|
||||||
"/home/douwe/.nuget/packages/": {}
|
|
||||||
},
|
|
||||||
"project": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj",
|
|
||||||
"projectName": "DouwcoWebsite",
|
|
||||||
"projectPath": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj",
|
|
||||||
"packagesPath": "/home/douwe/.nuget/packages/",
|
|
||||||
"outputPath": "/mnt/douwe/hdd/Projects/douwco_website/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.104/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]"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 2,
|
|
||||||
"dgSpecHash": "K7EZLIpqT8U=",
|
|
||||||
"success": true,
|
|
||||||
"projectFilePath": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj",
|
|
||||||
"expectedPackageFiles": [],
|
|
||||||
"logs": []
|
|
||||||
}
|
|
||||||
6
server/main.cpp
Normal file
6
server/main.cpp
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
int main(){
|
||||||
|
std::cout << "Hello World!" << std::endl;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user