Initial commit

This commit is contained in:
2024-11-24 12:40:51 +01:00
parent 9819604110
commit f3c6338a6a
323 changed files with 11769 additions and 0 deletions
+71
View File
@@ -0,0 +1,71 @@
using System.Text.Json;
using System.Text.Json.Serialization;
using MessagePack;
using Microsoft.AspNetCore.Cors.Infrastructure;
using Models.Model.External;
using NetMQ;
using NetMQ.Sockets;
WebApplicationBuilder builder = WebApplication.CreateSlimBuilder(args);
builder.Services.ConfigureHttpJsonOptions(options =>
{
options.SerializerOptions.TypeInfoResolverChain.Insert(0, AppJsonSerializerContext.Default);
});
builder.Services.AddCors(options =>
{
options.AddPolicy("CorsPolicy", x => x.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader().Build());
});
WebApplication app = builder.Build();
app.UseCors();
RouteGroupBuilder progressApi = app.MapGroup("/progress");
progressApi.AllowAnonymous();
progressApi.DisableAntiforgery();
progressApi.MapGet("/", () =>
{
CommunicationObject communicationObject = new()
{
Command = CommunicationCommand.GetScanningProgress
};
byte[] bytes = MessagePackSerializer.Serialize(communicationObject);
using RequestSocket client = new();
client.Connect("tcp://127.0.0.1:5556");
client.SendFrame(bytes);
byte[] msg = client.ReceiveFrameBytes();
client.Close();
return MessagePackSerializer.Deserialize<ScanningStatus>(msg, MessagePackSerializerOptions.Standard.WithCompression(MessagePackCompression.Lz4BlockArray));
});
RouteGroupBuilder searchApi = app.MapGroup("/search");
progressApi.AllowAnonymous();
searchApi.MapGet("/{term}", (string term) =>
{
CommunicationObject communicationObject = new();
communicationObject.Command = CommunicationCommand.GetSearches;
communicationObject.SearchTerm = term;
byte[] bytes = MessagePackSerializer.Serialize(communicationObject);
using RequestSocket client = new();
client.Connect("tcp://127.0.0.1:5556");
client.SendFrame(bytes);
string msg = client.ReceiveFrameString();
client.Close();
return JsonSerializer.Deserialize<SearchResults?>(msg);
});
app.Run();
[JsonSerializable(typeof(ScanningStatus))]
[JsonSerializable(typeof(SearchResults))]
internal partial class AppJsonSerializerContext : JsonSerializerContext
{
}
+15
View File
@@ -0,0 +1,15 @@
{
"$schema": "http://json.schemastore.org/launchsettings.json",
"profiles": {
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "",
"applicationUrl": "http://localhost:5224",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
+25
View File
@@ -0,0 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<PublishAot>true</PublishAot>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MessagePack" Version="3.0.238-rc.1" />
<PackageReference Include="MessagePack.Annotations" Version="3.0.238-rc.1" />
<PackageReference Include="MessagePackAnalyzer" Version="3.0.238-rc.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NetMQ" Version="4.0.1.13" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Models\Models.csproj" />
</ItemGroup>
</Project>
+11
View File
@@ -0,0 +1,11 @@
@Proxy_HostAddress = http://localhost:5224
GET {{Proxy_HostAddress}}/progress/
Accept: application/json
###
GET {{Proxy_HostAddress}}/search/asd
Accept: application/json
###
+8
View File
@@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Proxy")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Proxy")]
[assembly: System.Reflection.AssemblyTitleAttribute("Proxy")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
05da10c6689ddb0150f956887c9c10297d5f44ae4f5beb7eb09467de83e057d8
@@ -0,0 +1,20 @@
is_global = true
build_property.TargetFramework = net8.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization = true
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Proxy
build_property.RootNamespace = Proxy
build_property.ProjectDir = /home/skingging/Documents/Projects/CSharp/RSE/Proxy/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 8.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = /home/skingging/Documents/Projects/CSharp/RSE/Proxy
build_property._RazorSourceGeneratorDebug =
build_property.EffectiveAnalysisLevelStyle = 8.0
@@ -0,0 +1,17 @@
// <auto-generated/>
global using global::Microsoft.AspNetCore.Builder;
global using global::Microsoft.AspNetCore.Hosting;
global using global::Microsoft.AspNetCore.Http;
global using global::Microsoft.AspNetCore.Routing;
global using global::Microsoft.Extensions.Configuration;
global using global::Microsoft.Extensions.DependencyInjection;
global using global::Microsoft.Extensions.Hosting;
global using global::Microsoft.Extensions.Logging;
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Net.Http.Json;
global using global::System.Threading;
global using global::System.Threading.Tasks;
Binary file not shown.
@@ -0,0 +1 @@
7da8c1e32c02e998ecc16a382bde6441c112779402cde040cf311f49bc0390a3
@@ -0,0 +1,91 @@
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/appsettings.Development.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/appsettings.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/Proxy.staticwebassets.endpoints.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/Proxy
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/Proxy.deps.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/Proxy.runtimeconfig.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/Proxy.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/Proxy.pdb
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/AsyncIO.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/MessagePack.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/MessagePack.Annotations.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/Microsoft.NET.StringTools.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/NaCl.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/NetMQ.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/SQLitePCLRaw.core.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/System.Drawing.Common.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/System.Private.ServiceModel.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/System.Security.Permissions.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/System.ServiceModel.Primitives.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/System.ServiceModel.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/System.Windows.Extensions.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/cs/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/de/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/es/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/fr/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/it/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/ja/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/ko/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/pl/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/pt-BR/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/ru/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/tr/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/zh-Hans/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/zh-Hant/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/linux-x64/native/libsqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/osx-x64/native/libsqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/win7-x64/native/sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/win7-x86/native/sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/Models.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Debug/net8.0/Models.pdb
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/Proxy.csproj.AssemblyReference.cache
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/Proxy.GeneratedMSBuildEditorConfig.editorconfig
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/Proxy.AssemblyInfoInputs.cache
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/Proxy.AssemblyInfo.cs
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/Proxy.csproj.CoreCompileInputs.cache
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/Proxy.MvcApplicationPartsAssemblyInfo.cache
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/scopedcss/bundle/Proxy.styles.css
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/staticwebassets.build.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/staticwebassets.development.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/staticwebassets.build.endpoints.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/staticwebassets/msbuild.Proxy.Microsoft.AspNetCore.StaticWebAssets.props
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/staticwebassets/msbuild.Proxy.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/staticwebassets/msbuild.build.Proxy.props
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Proxy.props
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Proxy.props
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/staticwebassets.pack.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/Proxy.csproj.Up2Date
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/Proxy.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/refint/Proxy.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/Proxy.pdb
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/Proxy.genruntimeconfig.cache
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Debug/net8.0/ref/Proxy.dll
Binary file not shown.
@@ -0,0 +1 @@
6990c25ace5247b1e43a569e01a821d8458426a8168115752a0abcfcf643d95e
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@
{
"Version": 1,
"Endpoints": []
}
@@ -0,0 +1,12 @@
{
"Version": 1,
"Hash": "C2WXXrMfy15KHSB6lR4kMr1rY46BEbFGDxJ5tFtB66s=",
"Source": "Proxy",
"BasePath": "_content/Proxy",
"Mode": "Default",
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [],
"DiscoveryPatterns": [],
"Assets": [],
"Endpoints": []
}
@@ -0,0 +1,4 @@
<Project>
<Import Project="Microsoft.AspNetCore.StaticWebAssetEndpoints.props" />
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="../build/Proxy.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="../buildMultiTargeting/Proxy.props" />
</Project>
+215
View File
@@ -0,0 +1,215 @@
{
"format": 1,
"restore": {
"/home/skingging/Documents/Projects/CSharp/RSE/Proxy/Proxy.csproj": {}
},
"projects": {
"/home/skingging/Documents/Projects/CSharp/RSE/Models/Models.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/home/skingging/Documents/Projects/CSharp/RSE/Models/Models.csproj",
"projectName": "Models",
"projectPath": "/home/skingging/Documents/Projects/CSharp/RSE/Models/Models.csproj",
"packagesPath": "/home/skingging/.nuget/packages/",
"outputPath": "/home/skingging/Documents/Projects/CSharp/RSE/Models/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/home/skingging/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net8.0": {
"targetAlias": "net8.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "all"
}
},
"frameworks": {
"net8.0": {
"targetAlias": "net8.0",
"dependencies": {
"MessagePack": {
"target": "Package",
"version": "[3.0.238-rc.1, )"
},
"MessagePack.Annotations": {
"target": "Package",
"version": "[3.0.238-rc.1, )"
},
"MessagePackAnalyzer": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
"version": "[3.0.238-rc.1, )"
},
"Microsoft.Data.Sqlite": {
"target": "Package",
"version": "[8.0.10, )"
},
"SQLite": {
"target": "Package",
"version": "[3.13.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Ref",
"version": "[8.0.5, 8.0.5]"
},
{
"name": "Microsoft.NETCore.App.Ref",
"version": "[8.0.5, 8.0.5]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/home/skingging/.dotnet/sdk/9.0.100-preview.6.24328.19/PortableRuntimeIdentifierGraph.json"
}
}
},
"/home/skingging/Documents/Projects/CSharp/RSE/Proxy/Proxy.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/home/skingging/Documents/Projects/CSharp/RSE/Proxy/Proxy.csproj",
"projectName": "Proxy",
"projectPath": "/home/skingging/Documents/Projects/CSharp/RSE/Proxy/Proxy.csproj",
"packagesPath": "/home/skingging/.nuget/packages/",
"outputPath": "/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/home/skingging/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net8.0": {
"targetAlias": "net8.0",
"projectReferences": {
"/home/skingging/Documents/Projects/CSharp/RSE/Models/Models.csproj": {
"projectPath": "/home/skingging/Documents/Projects/CSharp/RSE/Models/Models.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "all"
}
},
"frameworks": {
"net8.0": {
"targetAlias": "net8.0",
"dependencies": {
"MessagePack": {
"target": "Package",
"version": "[3.0.238-rc.1, )"
},
"MessagePack.Annotations": {
"target": "Package",
"version": "[3.0.238-rc.1, )"
},
"MessagePackAnalyzer": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
"version": "[3.0.238-rc.1, )"
},
"Microsoft.DotNet.ILCompiler": {
"suppressParent": "All",
"target": "Package",
"version": "[8.0.5, )",
"autoReferenced": true
},
"Microsoft.NET.ILLink.Tasks": {
"suppressParent": "All",
"target": "Package",
"version": "[8.0.5, )",
"autoReferenced": true
},
"NetMQ": {
"target": "Package",
"version": "[4.0.1.13, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Ref",
"version": "[8.0.5, 8.0.5]"
},
{
"name": "Microsoft.NETCore.App.Host.linux-x64",
"version": "[8.0.5, 8.0.5]"
},
{
"name": "Microsoft.NETCore.App.Ref",
"version": "[8.0.5, 8.0.5]"
},
{
"name": "runtime.linux-x64.Microsoft.DotNet.ILCompiler",
"version": "[8.0.5, 8.0.5]"
}
],
"frameworkReferences": {
"Microsoft.AspNetCore.App": {
"privateAssets": "none"
},
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/home/skingging/.dotnet/sdk/9.0.100-preview.6.24328.19/PortableRuntimeIdentifierGraph.json"
}
}
}
}
}
+23
View File
@@ -0,0 +1,23 @@
<?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/skingging/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/skingging/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.10.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/skingging/.nuget/packages/" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.net.illink.tasks/8.0.5/build/Microsoft.NET.ILLink.Tasks.props" Condition="Exists('$(NuGetPackageRoot)microsoft.net.illink.tasks/8.0.5/build/Microsoft.NET.ILLink.Tasks.props')" />
<Import Project="$(NuGetPackageRoot)microsoft.dotnet.ilcompiler/8.0.5/build/Microsoft.DotNet.ILCompiler.props" Condition="Exists('$(NuGetPackageRoot)microsoft.dotnet.ilcompiler/8.0.5/build/Microsoft.DotNet.ILCompiler.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_NET_ILLink_Tasks Condition=" '$(PkgMicrosoft_NET_ILLink_Tasks)' == '' ">/home/skingging/.nuget/packages/microsoft.net.illink.tasks/8.0.5</PkgMicrosoft_NET_ILLink_Tasks>
<PkgMicrosoft_DotNet_ILCompiler Condition=" '$(PkgMicrosoft_DotNet_ILCompiler)' == '' ">/home/skingging/.nuget/packages/microsoft.dotnet.ilcompiler/8.0.5</PkgMicrosoft_DotNet_ILCompiler>
</PropertyGroup>
</Project>
+7
View File
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3/2.1.6/buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets" Condition="Exists('$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3/2.1.6/buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets')" />
<Import Project="$(NuGetPackageRoot)messagepackanalyzer/3.0.238-rc.1/build/MessagePackAnalyzer.targets" Condition="Exists('$(NuGetPackageRoot)messagepackanalyzer/3.0.238-rc.1/build/MessagePackAnalyzer.targets')" />
</ImportGroup>
</Project>
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Proxy")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+981960411028790aaa0b551986f102c57a5995a2")]
[assembly: System.Reflection.AssemblyProductAttribute("Proxy")]
[assembly: System.Reflection.AssemblyTitleAttribute("Proxy")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
0d116f5b80940c9e87220c6e29fcdfed56c53c7d145d68cf7c5063eea6a56502
@@ -0,0 +1,24 @@
is_global = true
build_property.EnableAotAnalyzer = true
build_property.EnableSingleFileAnalyzer = true
build_property.EnableTrimAnalyzer = true
build_property.IncludeAllContentForSelfExtract =
build_property.TargetFramework = net8.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization = true
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Proxy
build_property.RootNamespace = Proxy
build_property.ProjectDir = /home/skingging/Documents/Projects/CSharp/RSE/Proxy/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop = false
build_property.RazorLangVersion = 8.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = /home/skingging/Documents/Projects/CSharp/RSE/Proxy
build_property._RazorSourceGeneratorDebug =
build_property.EffectiveAnalysisLevelStyle = 8.0
@@ -0,0 +1,17 @@
// <auto-generated/>
global using global::Microsoft.AspNetCore.Builder;
global using global::Microsoft.AspNetCore.Hosting;
global using global::Microsoft.AspNetCore.Http;
global using global::Microsoft.AspNetCore.Routing;
global using global::Microsoft.Extensions.Configuration;
global using global::Microsoft.Extensions.DependencyInjection;
global using global::Microsoft.Extensions.Hosting;
global using global::Microsoft.Extensions.Logging;
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Net.Http.Json;
global using global::System.Threading;
global using global::System.Threading.Tasks;
Binary file not shown.
@@ -0,0 +1 @@
d422f44345daed81f463432360518508e607eb54909909879d2aa05b8bb0f96b
@@ -0,0 +1,91 @@
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/appsettings.Development.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/appsettings.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/Proxy.staticwebassets.endpoints.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/Proxy
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/Proxy.deps.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/Proxy.runtimeconfig.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/Proxy.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/Proxy.pdb
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/Proxy.GeneratedMSBuildEditorConfig.editorconfig
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/Proxy.AssemblyInfoInputs.cache
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/Proxy.AssemblyInfo.cs
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/Proxy.csproj.CoreCompileInputs.cache
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/Proxy.MvcApplicationPartsAssemblyInfo.cache
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/scopedcss/bundle/Proxy.styles.css
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/staticwebassets.build.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/staticwebassets.development.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/staticwebassets.build.endpoints.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/staticwebassets/msbuild.Proxy.Microsoft.AspNetCore.StaticWebAssets.props
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/staticwebassets/msbuild.Proxy.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/staticwebassets/msbuild.build.Proxy.props
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.Proxy.props
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.Proxy.props
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/staticwebassets.pack.json
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/Proxy.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/refint/Proxy.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/Proxy.pdb
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/Proxy.genruntimeconfig.cache
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/ref/Proxy.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/AsyncIO.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/MessagePack.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/MessagePack.Annotations.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/Microsoft.NET.StringTools.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/Microsoft.Win32.SystemEvents.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/NaCl.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/NetMQ.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/System.Drawing.Common.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/System.Private.ServiceModel.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/System.Security.Permissions.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/System.ServiceModel.Primitives.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/System.ServiceModel.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/System.Windows.Extensions.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/cs/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/de/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/es/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/fr/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/it/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/ja/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/ko/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/pl/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/pt-BR/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/ru/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/tr/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/zh-Hans/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/zh-Hant/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/Proxy.csproj.AssemblyReference.cache
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/Release/net8.0/Proxy.csproj.Up2Date
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/Microsoft.Data.Sqlite.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/SQLitePCLRaw.batteries_v2.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/SQLitePCLRaw.core.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/linux-x64/native/libsqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/osx-x64/native/libsqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/win7-x64/native/sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/win7-x86/native/sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/linux-arm/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/linux-armel/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/linux-x64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/linux-x86/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/win-arm/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/win-arm64/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/win-x64/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/runtimes/win-x86/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/Models.dll
/home/skingging/Documents/Projects/CSharp/RSE/Proxy/bin/Release/net8.0/Models.pdb
Binary file not shown.
@@ -0,0 +1 @@
3d389afc44756cace86c2723ebdd2d3c9d8f4ed7bd12bfea36b0d21ca34e2e95
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@
{
"Version": 1,
"Endpoints": []
}
@@ -0,0 +1,12 @@
{
"Version": 1,
"Hash": "C2WXXrMfy15KHSB6lR4kMr1rY46BEbFGDxJ5tFtB66s=",
"Source": "Proxy",
"BasePath": "_content/Proxy",
"Mode": "Default",
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [],
"DiscoveryPatterns": [],
"Assets": [],
"Endpoints": []
}
@@ -0,0 +1,4 @@
<Project>
<Import Project="Microsoft.AspNetCore.StaticWebAssetEndpoints.props" />
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="../build/Proxy.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="../buildMultiTargeting/Proxy.props" />
</Project>
File diff suppressed because it is too large Load Diff
+79
View File
@@ -0,0 +1,79 @@
{
"version": 2,
"dgSpecHash": "sW2GqM8uLVQ=",
"success": true,
"projectFilePath": "/home/skingging/Documents/Projects/CSharp/RSE/Proxy/Proxy.csproj",
"expectedPackageFiles": [
"/home/skingging/.nuget/packages/asyncio/0.1.69/asyncio.0.1.69.nupkg.sha512",
"/home/skingging/.nuget/packages/messagepack/3.0.238-rc.1/messagepack.3.0.238-rc.1.nupkg.sha512",
"/home/skingging/.nuget/packages/messagepack.annotations/3.0.238-rc.1/messagepack.annotations.3.0.238-rc.1.nupkg.sha512",
"/home/skingging/.nuget/packages/messagepackanalyzer/3.0.238-rc.1/messagepackanalyzer.3.0.238-rc.1.nupkg.sha512",
"/home/skingging/.nuget/packages/microsoft.bcl.asyncinterfaces/5.0.0/microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512",
"/home/skingging/.nuget/packages/microsoft.data.sqlite/8.0.10/microsoft.data.sqlite.8.0.10.nupkg.sha512",
"/home/skingging/.nuget/packages/microsoft.data.sqlite.core/8.0.10/microsoft.data.sqlite.core.8.0.10.nupkg.sha512",
"/home/skingging/.nuget/packages/microsoft.dotnet.ilcompiler/8.0.5/microsoft.dotnet.ilcompiler.8.0.5.nupkg.sha512",
"/home/skingging/.nuget/packages/microsoft.extensions.objectpool/5.0.10/microsoft.extensions.objectpool.5.0.10.nupkg.sha512",
"/home/skingging/.nuget/packages/microsoft.net.illink.tasks/8.0.5/microsoft.net.illink.tasks.8.0.5.nupkg.sha512",
"/home/skingging/.nuget/packages/microsoft.net.stringtools/17.11.4/microsoft.net.stringtools.17.11.4.nupkg.sha512",
"/home/skingging/.nuget/packages/microsoft.netcore.platforms/5.0.0/microsoft.netcore.platforms.5.0.0.nupkg.sha512",
"/home/skingging/.nuget/packages/microsoft.win32.systemevents/5.0.0/microsoft.win32.systemevents.5.0.0.nupkg.sha512",
"/home/skingging/.nuget/packages/nacl.net/0.1.13/nacl.net.0.1.13.nupkg.sha512",
"/home/skingging/.nuget/packages/netmq/4.0.1.13/netmq.4.0.1.13.nupkg.sha512",
"/home/skingging/.nuget/packages/sqlite/3.13.0/sqlite.3.13.0.nupkg.sha512",
"/home/skingging/.nuget/packages/sqlitepclraw.bundle_e_sqlite3/2.1.6/sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512",
"/home/skingging/.nuget/packages/sqlitepclraw.core/2.1.6/sqlitepclraw.core.2.1.6.nupkg.sha512",
"/home/skingging/.nuget/packages/sqlitepclraw.lib.e_sqlite3/2.1.6/sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512",
"/home/skingging/.nuget/packages/sqlitepclraw.provider.e_sqlite3/2.1.6/sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512",
"/home/skingging/.nuget/packages/system.drawing.common/5.0.0/system.drawing.common.5.0.0.nupkg.sha512",
"/home/skingging/.nuget/packages/system.formats.asn1/5.0.0/system.formats.asn1.5.0.0.nupkg.sha512",
"/home/skingging/.nuget/packages/system.memory/4.5.3/system.memory.4.5.3.nupkg.sha512",
"/home/skingging/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512",
"/home/skingging/.nuget/packages/system.private.servicemodel/4.9.0/system.private.servicemodel.4.9.0.nupkg.sha512",
"/home/skingging/.nuget/packages/system.reflection.dispatchproxy/4.7.1/system.reflection.dispatchproxy.4.7.1.nupkg.sha512",
"/home/skingging/.nuget/packages/system.security.accesscontrol/5.0.0/system.security.accesscontrol.5.0.0.nupkg.sha512",
"/home/skingging/.nuget/packages/system.security.cryptography.cng/5.0.0/system.security.cryptography.cng.5.0.0.nupkg.sha512",
"/home/skingging/.nuget/packages/system.security.cryptography.pkcs/5.0.0/system.security.cryptography.pkcs.5.0.0.nupkg.sha512",
"/home/skingging/.nuget/packages/system.security.cryptography.xml/5.0.0/system.security.cryptography.xml.5.0.0.nupkg.sha512",
"/home/skingging/.nuget/packages/system.security.permissions/5.0.0/system.security.permissions.5.0.0.nupkg.sha512",
"/home/skingging/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512",
"/home/skingging/.nuget/packages/system.servicemodel.primitives/4.9.0/system.servicemodel.primitives.4.9.0.nupkg.sha512",
"/home/skingging/.nuget/packages/system.valuetuple/4.5.0/system.valuetuple.4.5.0.nupkg.sha512",
"/home/skingging/.nuget/packages/system.windows.extensions/5.0.0/system.windows.extensions.5.0.0.nupkg.sha512",
"/home/skingging/.nuget/packages/microsoft.netcore.app.ref/8.0.5/microsoft.netcore.app.ref.8.0.5.nupkg.sha512",
"/home/skingging/.nuget/packages/microsoft.aspnetcore.app.ref/8.0.5/microsoft.aspnetcore.app.ref.8.0.5.nupkg.sha512",
"/home/skingging/.nuget/packages/runtime.linux-x64.microsoft.dotnet.ilcompiler/8.0.5/runtime.linux-x64.microsoft.dotnet.ilcompiler.8.0.5.nupkg.sha512",
"/home/skingging/.nuget/packages/microsoft.netcore.app.host.linux-x64/8.0.5/microsoft.netcore.app.host.linux-x64.8.0.5.nupkg.sha512"
],
"logs": [
{
"code": "NU1904",
"level": "Warning",
"warningLevel": 1,
"message": "Package 'System.Drawing.Common' 5.0.0 has a known critical severity vulnerability, https://github.com/advisories/GHSA-rxg9-xrhp-64gj",
"libraryId": "System.Drawing.Common",
"targetGraphs": [
"net8.0"
]
},
{
"code": "NU1903",
"level": "Warning",
"warningLevel": 1,
"message": "Package 'System.Formats.Asn1' 5.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-447r-wph3-92pm",
"libraryId": "System.Formats.Asn1",
"targetGraphs": [
"net8.0"
]
},
{
"code": "NU1902",
"level": "Warning",
"warningLevel": 1,
"message": "Package 'System.Security.Cryptography.Xml' 5.0.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-vh55-786g-wjwj",
"libraryId": "System.Security.Cryptography.Xml",
"targetGraphs": [
"net8.0"
]
}
]
}
+1
View File
@@ -0,0 +1 @@
"restore":{"projectUniqueName":"/home/skingging/Documents/Projects/CSharp/RSE/Proxy/Proxy.csproj","projectName":"Proxy","projectPath":"/home/skingging/Documents/Projects/CSharp/RSE/Proxy/Proxy.csproj","outputPath":"/home/skingging/Documents/Projects/CSharp/RSE/Proxy/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"/home/skingging/Documents/Projects/CSharp/RSE/Models/Models.csproj":{"projectPath":"/home/skingging/Documents/Projects/CSharp/RSE/Models/Models.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"all"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"MessagePack":{"target":"Package","version":"[3.0.238-rc.1, )"},"MessagePack.Annotations":{"target":"Package","version":"[3.0.238-rc.1, )"},"MessagePackAnalyzer":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[3.0.238-rc.1, )"},"Microsoft.DotNet.ILCompiler":{"suppressParent":"All","target":"Package","version":"[8.0.5, )","autoReferenced":true},"Microsoft.NET.ILLink.Tasks":{"suppressParent":"All","target":"Package","version":"[8.0.5, )","autoReferenced":true},"NetMQ":{"target":"Package","version":"[4.0.1.13, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"downloadDependencies":[{"name":"Microsoft.AspNetCore.App.Ref","version":"[8.0.5, 8.0.5]"},{"name":"Microsoft.NETCore.App.Host.linux-x64","version":"[8.0.5, 8.0.5]"},{"name":"Microsoft.NETCore.App.Ref","version":"[8.0.5, 8.0.5]"},{"name":"runtime.linux-x64.Microsoft.DotNet.ILCompiler","version":"[8.0.5, 8.0.5]"}],"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/skingging/.dotnet/sdk/9.0.100-preview.6.24328.19/PortableRuntimeIdentifierGraph.json"}}
+1
View File
@@ -0,0 +1 @@
17318618135304295
+1
View File
@@ -0,0 +1 @@
17318618135304295