diff --git a/Nexus.Api/Nexus.Api.csproj b/Nexus.Api/Nexus.Api.csproj
new file mode 100644
index 0000000..92e0d10
--- /dev/null
+++ b/Nexus.Api/Nexus.Api.csproj
@@ -0,0 +1,13 @@
+
+
+
+ net10.0
+ enable
+ enable
+
+
+
+
+
+
+
diff --git a/Nexus.Api/Nexus.Api.http b/Nexus.Api/Nexus.Api.http
new file mode 100644
index 0000000..675990e
--- /dev/null
+++ b/Nexus.Api/Nexus.Api.http
@@ -0,0 +1,6 @@
+@Nexus.Api_HostAddress = http://localhost:5115
+
+GET {{Nexus.Api_HostAddress}}/weatherforecast/
+Accept: application/json
+
+###
diff --git a/Nexus.Api/Program.cs b/Nexus.Api/Program.cs
new file mode 100644
index 0000000..ee9d65d
--- /dev/null
+++ b/Nexus.Api/Program.cs
@@ -0,0 +1,41 @@
+var builder = WebApplication.CreateBuilder(args);
+
+// Add services to the container.
+// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi
+builder.Services.AddOpenApi();
+
+var app = builder.Build();
+
+// Configure the HTTP request pipeline.
+if (app.Environment.IsDevelopment())
+{
+ app.MapOpenApi();
+}
+
+app.UseHttpsRedirection();
+
+var summaries = new[]
+{
+ "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
+};
+
+app.MapGet("/weatherforecast", () =>
+{
+ var forecast = Enumerable.Range(1, 5).Select(index =>
+ new WeatherForecast
+ (
+ DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
+ Random.Shared.Next(-20, 55),
+ summaries[Random.Shared.Next(summaries.Length)]
+ ))
+ .ToArray();
+ return forecast;
+})
+.WithName("GetWeatherForecast");
+
+app.Run();
+
+record WeatherForecast(DateOnly Date, int TemperatureC, string? Summary)
+{
+ public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
+}
diff --git a/Nexus.Api/Properties/launchSettings.json b/Nexus.Api/Properties/launchSettings.json
new file mode 100644
index 0000000..9cb3945
--- /dev/null
+++ b/Nexus.Api/Properties/launchSettings.json
@@ -0,0 +1,23 @@
+{
+ "$schema": "https://json.schemastore.org/launchsettings.json",
+ "profiles": {
+ "http": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": false,
+ "applicationUrl": "http://localhost:5115",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "https": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": false,
+ "applicationUrl": "https://localhost:7081;http://localhost:5115",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/Nexus.Api/appsettings.Development.json b/Nexus.Api/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/Nexus.Api/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/Nexus.Api/appsettings.json b/Nexus.Api/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/Nexus.Api/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/Nexus.Api/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll b/Nexus.Api/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll
new file mode 100644
index 0000000..a2cd7ae
Binary files /dev/null and b/Nexus.Api/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll differ
diff --git a/Nexus.Api/bin/Debug/net10.0/Microsoft.OpenApi.dll b/Nexus.Api/bin/Debug/net10.0/Microsoft.OpenApi.dll
new file mode 100644
index 0000000..96cb5dc
Binary files /dev/null and b/Nexus.Api/bin/Debug/net10.0/Microsoft.OpenApi.dll differ
diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Api.deps.json b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.deps.json
new file mode 100644
index 0000000..d47799c
--- /dev/null
+++ b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.deps.json
@@ -0,0 +1,59 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v10.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v10.0": {
+ "Nexus.Api/1.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.OpenApi": "10.0.9"
+ },
+ "runtime": {
+ "Nexus.Api.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.OpenApi/10.0.9": {
+ "dependencies": {
+ "Microsoft.OpenApi": "2.0.0"
+ },
+ "runtime": {
+ "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "assemblyVersion": "10.0.9.0",
+ "fileVersion": "10.0.926.27113"
+ }
+ }
+ },
+ "Microsoft.OpenApi/2.0.0": {
+ "runtime": {
+ "lib/net8.0/Microsoft.OpenApi.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Nexus.Api/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.OpenApi/10.0.9": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1ihb8FO9cGgEK1/m3CTtT/SfnynwmiZib0W2pcDVj3KSWk/Sca4VOXEtaptKQc582zpFrzTFiwkGRCglt6H+WQ==",
+ "path": "microsoft.aspnetcore.openapi/10.0.9",
+ "hashPath": "microsoft.aspnetcore.openapi.10.0.9.nupkg.sha512"
+ },
+ "Microsoft.OpenApi/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==",
+ "path": "microsoft.openapi/2.0.0",
+ "hashPath": "microsoft.openapi.2.0.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Api.dll b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.dll
new file mode 100644
index 0000000..4c2335e
Binary files /dev/null and b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.dll differ
diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Api.exe b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.exe
new file mode 100644
index 0000000..30c0dbf
Binary files /dev/null and b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.exe differ
diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Api.pdb b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.pdb
new file mode 100644
index 0000000..23d9f03
Binary files /dev/null and b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.pdb differ
diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Api.runtimeconfig.json b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.runtimeconfig.json
new file mode 100644
index 0000000..ed5401a
--- /dev/null
+++ b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.runtimeconfig.json
@@ -0,0 +1,19 @@
+{
+ "runtimeOptions": {
+ "tfm": "net10.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "10.0.0"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "10.0.0"
+ }
+ ],
+ "configProperties": {
+ "System.GC.Server": true,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Api.staticwebassets.endpoints.json b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.staticwebassets.endpoints.json
new file mode 100644
index 0000000..5576e88
--- /dev/null
+++ b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.staticwebassets.endpoints.json
@@ -0,0 +1 @@
+{"Version":1,"ManifestType":"Build","Endpoints":[]}
\ No newline at end of file
diff --git a/Nexus.Api/bin/Debug/net10.0/appsettings.Development.json b/Nexus.Api/bin/Debug/net10.0/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/Nexus.Api/bin/Debug/net10.0/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/Nexus.Api/bin/Debug/net10.0/appsettings.json b/Nexus.Api/bin/Debug/net10.0/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/Nexus.Api/bin/Debug/net10.0/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/Nexus.Api/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/Nexus.Api/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..925b135
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfo.cs b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfo.cs
new file mode 100644
index 0000000..3b72423
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Nexus.Api")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+eefd4137a53ba05850de78203414d84e1973158d")]
+[assembly: System.Reflection.AssemblyProductAttribute("Nexus.Api")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Nexus.Api")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfoInputs.cache b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..4e58831
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+9ee2341c884258d8a4beccbcb8c0ad7faaca48bfa10fca7a7dd8ed19700d49bf
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.GeneratedMSBuildEditorConfig.editorconfig b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..1120075
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,24 @@
+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.EntryPointFilePath =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Nexus.Api
+build_property.RootNamespace = Nexus.Api
+build_property.ProjectDir = C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.RazorLangVersion = 10.0
+build_property.SupportLocalizedComponentNames =
+build_property.GenerateRazorMetadataSourceChecksumAttributes =
+build_property.MSBuildProjectDirectory = C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api
+build_property._RazorSourceGeneratorDebug =
+build_property.EffectiveAnalysisLevelStyle = 10.0
+build_property.EnableCodeStyleSeverity =
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.GlobalUsings.g.cs b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.GlobalUsings.g.cs
new file mode 100644
index 0000000..5e6145d
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.GlobalUsings.g.cs
@@ -0,0 +1,17 @@
+//
+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;
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.MvcApplicationPartsAssemblyInfo.cache b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.MvcApplicationPartsAssemblyInfo.cache
new file mode 100644
index 0000000..e69de29
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.MvcApplicationPartsAssemblyInfo.cs b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.MvcApplicationPartsAssemblyInfo.cs
new file mode 100644
index 0000000..1c3041b
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.MvcApplicationPartsAssemblyInfo.cs
@@ -0,0 +1,16 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.assets.cache b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.assets.cache
new file mode 100644
index 0000000..9388c9a
Binary files /dev/null and b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.assets.cache differ
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.AssemblyReference.cache b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..ef82320
Binary files /dev/null and b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.AssemblyReference.cache differ
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.CoreCompileInputs.cache b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..7f66e77
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+54ea1ffabf1bc43175f76a2fabe09637eddee1e102e6857d01a90ca7779fd013
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.FileListAbsolute.txt b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..32c8378
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.FileListAbsolute.txt
@@ -0,0 +1,33 @@
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\bin\Debug\net10.0\appsettings.Development.json
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\bin\Debug\net10.0\appsettings.json
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\bin\Debug\net10.0\Nexus.Api.staticwebassets.endpoints.json
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\bin\Debug\net10.0\Nexus.Api.exe
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\bin\Debug\net10.0\Nexus.Api.deps.json
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\bin\Debug\net10.0\Nexus.Api.runtimeconfig.json
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\bin\Debug\net10.0\Nexus.Api.dll
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\bin\Debug\net10.0\Nexus.Api.pdb
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\bin\Debug\net10.0\Microsoft.AspNetCore.OpenApi.dll
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\bin\Debug\net10.0\Microsoft.OpenApi.dll
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\Nexus.Api.csproj.AssemblyReference.cache
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\rpswa.dswa.cache.json
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\Nexus.Api.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\Nexus.Api.AssemblyInfoInputs.cache
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\Nexus.Api.AssemblyInfo.cs
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\Nexus.Api.csproj.CoreCompileInputs.cache
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\Nexus.Api.MvcApplicationPartsAssemblyInfo.cs
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\Nexus.Api.MvcApplicationPartsAssemblyInfo.cache
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\rjimswa.dswa.cache.json
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\rjsmrazor.dswa.cache.json
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\rjsmcshtml.dswa.cache.json
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\scopedcss\bundle\Nexus.Api.styles.css
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\staticwebassets.build.json
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\staticwebassets.build.json.cache
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\staticwebassets.development.json
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\staticwebassets.build.endpoints.json
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\swae.build.ex.cache
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\Nexus.Api.csproj.Up2Date
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\Nexus.Api.dll
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\refint\Nexus.Api.dll
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\Nexus.Api.pdb
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\Nexus.Api.genruntimeconfig.cache
+C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Api\obj\Debug\net10.0\ref\Nexus.Api.dll
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.Up2Date b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.dll b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.dll
new file mode 100644
index 0000000..4c2335e
Binary files /dev/null and b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.dll differ
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.genruntimeconfig.cache b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.genruntimeconfig.cache
new file mode 100644
index 0000000..d16b1e1
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.genruntimeconfig.cache
@@ -0,0 +1 @@
+a01c3ddbe54b2aa1d6a5e674a164efb9d2f3c8365a39d27ae92830746db75c2b
diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.pdb b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.pdb
new file mode 100644
index 0000000..23d9f03
Binary files /dev/null and b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.pdb differ
diff --git a/Nexus.Api/obj/Debug/net10.0/apphost.exe b/Nexus.Api/obj/Debug/net10.0/apphost.exe
new file mode 100644
index 0000000..30c0dbf
Binary files /dev/null and b/Nexus.Api/obj/Debug/net10.0/apphost.exe differ
diff --git a/Nexus.Api/obj/Debug/net10.0/ref/Nexus.Api.dll b/Nexus.Api/obj/Debug/net10.0/ref/Nexus.Api.dll
new file mode 100644
index 0000000..6103326
Binary files /dev/null and b/Nexus.Api/obj/Debug/net10.0/ref/Nexus.Api.dll differ
diff --git a/Nexus.Api/obj/Debug/net10.0/refint/Nexus.Api.dll b/Nexus.Api/obj/Debug/net10.0/refint/Nexus.Api.dll
new file mode 100644
index 0000000..6103326
Binary files /dev/null and b/Nexus.Api/obj/Debug/net10.0/refint/Nexus.Api.dll differ
diff --git a/Nexus.Api/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/Nexus.Api/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
new file mode 100644
index 0000000..89276f6
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"yvQCrxdTvFPB05QkB5EFF6+ZMfU7SATb5Wjcmfx3bQg=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["vxNcTGmjBmutCwzItnKjVb7Py0xCnrwPq9XzBVvlrvg=","AwZT8pl6C8KGTyLuGSCR\u002B87l7qfqdNmQSDuOKFCoVLY=","sNXe8\u002BK9gPJF91Dz10bt/nU5pUNQMsEfKslCV08CCl8=","6aoOtNsYYs7lt6Gm0fTYUQLwbv4EfHKNA5AbTWH0kps=","I0Bl\u002BElu\u002BS1RIpKLoYC4ggLIcD06A\u002BxRI2D4J/1WhDk="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/Nexus.Api/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/Nexus.Api/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
new file mode 100644
index 0000000..0e6f176
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"LvTzCZwSXjBKR/4iQAAaxQvqqdXT3s7QSjLWlEaEjXY=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["vxNcTGmjBmutCwzItnKjVb7Py0xCnrwPq9XzBVvlrvg=","AwZT8pl6C8KGTyLuGSCR\u002B87l7qfqdNmQSDuOKFCoVLY=","sNXe8\u002BK9gPJF91Dz10bt/nU5pUNQMsEfKslCV08CCl8=","6aoOtNsYYs7lt6Gm0fTYUQLwbv4EfHKNA5AbTWH0kps=","I0Bl\u002BElu\u002BS1RIpKLoYC4ggLIcD06A\u002BxRI2D4J/1WhDk="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/Nexus.Api/obj/Debug/net10.0/rpswa.dswa.cache.json b/Nexus.Api/obj/Debug/net10.0/rpswa.dswa.cache.json
new file mode 100644
index 0000000..a455db8
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/rpswa.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"8hLADdIZUWzj9M9y16r3VtZcxP7zc6nKt0LJrHE8lDs=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["vxNcTGmjBmutCwzItnKjVb7Py0xCnrwPq9XzBVvlrvg=","AwZT8pl6C8KGTyLuGSCR\u002B87l7qfqdNmQSDuOKFCoVLY="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/Nexus.Api/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/Nexus.Api/obj/Debug/net10.0/staticwebassets.build.endpoints.json
new file mode 100644
index 0000000..5576e88
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/staticwebassets.build.endpoints.json
@@ -0,0 +1 @@
+{"Version":1,"ManifestType":"Build","Endpoints":[]}
\ No newline at end of file
diff --git a/Nexus.Api/obj/Debug/net10.0/staticwebassets.build.json b/Nexus.Api/obj/Debug/net10.0/staticwebassets.build.json
new file mode 100644
index 0000000..c50101b
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/staticwebassets.build.json
@@ -0,0 +1 @@
+{"Version":1,"Hash":"9DybWTEu7yr85hU/FXp9xUehFSY72KmoF+EyMgagJOE=","Source":"Nexus.Api","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]}
\ No newline at end of file
diff --git a/Nexus.Api/obj/Debug/net10.0/staticwebassets.build.json.cache b/Nexus.Api/obj/Debug/net10.0/staticwebassets.build.json.cache
new file mode 100644
index 0000000..4a66954
--- /dev/null
+++ b/Nexus.Api/obj/Debug/net10.0/staticwebassets.build.json.cache
@@ -0,0 +1 @@
+9DybWTEu7yr85hU/FXp9xUehFSY72KmoF+EyMgagJOE=
\ No newline at end of file
diff --git a/Nexus.Api/obj/Debug/net10.0/swae.build.ex.cache b/Nexus.Api/obj/Debug/net10.0/swae.build.ex.cache
new file mode 100644
index 0000000..e69de29
diff --git a/Nexus.Api/obj/Nexus.Api.csproj.nuget.dgspec.json b/Nexus.Api/obj/Nexus.Api.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..3840b8c
--- /dev/null
+++ b/Nexus.Api/obj/Nexus.Api.csproj.nuget.dgspec.json
@@ -0,0 +1,494 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\Nexus.Api.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\Nexus.Api.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\Nexus.Api.csproj",
+ "projectName": "Nexus.Api",
+ "projectPath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\Nexus.Api.csproj",
+ "packagesPath": "C:\\Users\\klein\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\klein\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net10.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net10.0": {
+ "framework": "net10.0",
+ "targetAlias": "net10.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "all"
+ },
+ "SdkAnalysisLevel": "10.0.300"
+ },
+ "frameworks": {
+ "net10.0": {
+ "framework": "net10.0",
+ "targetAlias": "net10.0",
+ "dependencies": {
+ "Microsoft.AspNetCore.OpenApi": {
+ "target": "Package",
+ "version": "[10.0.9, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.301/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]"
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Nexus.Api/obj/Nexus.Api.csproj.nuget.g.props b/Nexus.Api/obj/Nexus.Api.csproj.nuget.g.props
new file mode 100644
index 0000000..13cd922
--- /dev/null
+++ b/Nexus.Api/obj/Nexus.Api.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\klein\.nuget\packages\
+ PackageReference
+ 7.0.0
+
+
+
+
+
\ No newline at end of file
diff --git a/Nexus.Api/obj/Nexus.Api.csproj.nuget.g.targets b/Nexus.Api/obj/Nexus.Api.csproj.nuget.g.targets
new file mode 100644
index 0000000..00759b6
--- /dev/null
+++ b/Nexus.Api/obj/Nexus.Api.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Nexus.Api/obj/project.assets.json b/Nexus.Api/obj/project.assets.json
new file mode 100644
index 0000000..705fc50
--- /dev/null
+++ b/Nexus.Api/obj/project.assets.json
@@ -0,0 +1,586 @@
+{
+ "version": 4,
+ "targets": {
+ "net10.0": {
+ "Microsoft.AspNetCore.OpenApi/10.0.9": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.OpenApi": "2.0.0"
+ },
+ "compile": {
+ "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "related": ".xml"
+ }
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ],
+ "build": {
+ "build/Microsoft.AspNetCore.OpenApi.targets": {}
+ }
+ },
+ "Microsoft.OpenApi/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Microsoft.OpenApi.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.OpenApi.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.AspNetCore.OpenApi/10.0.9": {
+ "sha512": "1ihb8FO9cGgEK1/m3CTtT/SfnynwmiZib0W2pcDVj3KSWk/Sca4VOXEtaptKQc582zpFrzTFiwkGRCglt6H+WQ==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.openapi/10.0.9",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "analyzers/dotnet/cs/Microsoft.AspNetCore.OpenApi.SourceGenerators.dll",
+ "build/Microsoft.AspNetCore.OpenApi.targets",
+ "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll",
+ "lib/net10.0/Microsoft.AspNetCore.OpenApi.xml",
+ "microsoft.aspnetcore.openapi.10.0.9.nupkg.sha512",
+ "microsoft.aspnetcore.openapi.nuspec"
+ ]
+ },
+ "Microsoft.OpenApi/2.0.0": {
+ "sha512": "GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==",
+ "type": "package",
+ "path": "microsoft.openapi/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/net8.0/Microsoft.OpenApi.dll",
+ "lib/net8.0/Microsoft.OpenApi.pdb",
+ "lib/net8.0/Microsoft.OpenApi.xml",
+ "lib/netstandard2.0/Microsoft.OpenApi.dll",
+ "lib/netstandard2.0/Microsoft.OpenApi.pdb",
+ "lib/netstandard2.0/Microsoft.OpenApi.xml",
+ "microsoft.openapi.2.0.0.nupkg.sha512",
+ "microsoft.openapi.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net10.0": [
+ "Microsoft.AspNetCore.OpenApi >= 10.0.9"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\klein\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\Nexus.Api.csproj",
+ "projectName": "Nexus.Api",
+ "projectPath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\Nexus.Api.csproj",
+ "packagesPath": "C:\\Users\\klein\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\klein\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net10.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net10.0": {
+ "framework": "net10.0",
+ "targetAlias": "net10.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "all"
+ },
+ "SdkAnalysisLevel": "10.0.300"
+ },
+ "frameworks": {
+ "net10.0": {
+ "framework": "net10.0",
+ "targetAlias": "net10.0",
+ "dependencies": {
+ "Microsoft.AspNetCore.OpenApi": {
+ "target": "Package",
+ "version": "[10.0.9, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.301/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]"
+ }
+ }
+ }
+ },
+ "logs": [
+ {
+ "code": "NU1903",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Microsoft.OpenApi' 2.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-v5pm-xwqc-g5wc",
+ "libraryId": "Microsoft.OpenApi",
+ "targetGraphs": [
+ "net10.0"
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Nexus.Api/obj/project.nuget.cache b/Nexus.Api/obj/project.nuget.cache
new file mode 100644
index 0000000..59e0421
--- /dev/null
+++ b/Nexus.Api/obj/project.nuget.cache
@@ -0,0 +1,24 @@
+{
+ "version": 2,
+ "dgSpecHash": "uAubsbiDDts=",
+ "success": true,
+ "projectFilePath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\Nexus.Api.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\klein\\.nuget\\packages\\microsoft.aspnetcore.openapi\\10.0.9\\microsoft.aspnetcore.openapi.10.0.9.nupkg.sha512",
+ "C:\\Users\\klein\\.nuget\\packages\\microsoft.openapi\\2.0.0\\microsoft.openapi.2.0.0.nupkg.sha512"
+ ],
+ "logs": [
+ {
+ "code": "NU1903",
+ "level": "Warning",
+ "message": "Package 'Microsoft.OpenApi' 2.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-v5pm-xwqc-g5wc",
+ "projectPath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\Nexus.Api.csproj",
+ "warningLevel": 1,
+ "filePath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\Nexus.Api.csproj",
+ "libraryId": "Microsoft.OpenApi",
+ "targetGraphs": [
+ "net10.0"
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Nexus.slnx b/Nexus.slnx
new file mode 100644
index 0000000..5125d8b
--- /dev/null
+++ b/Nexus.slnx
@@ -0,0 +1,3 @@
+
+
+