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
+97
View File
@@ -0,0 +1,97 @@
using MessagePack;
using Models.Model.External;
using NetMQ;
using NetMQ.Sockets;
namespace Manager;
public static class Commands
{
public static void GetProgress()
{
Console.WriteLine("Getting progress ...");
CommunicationObject communicationObject = new();
communicationObject.Command = CommunicationCommand.GetScanningProgress;
ScanningStatus temp = GetProgress(communicationObject);
Console.WriteLine($"Total filtered: {temp.TotalFiltered:n0}");
Console.WriteLine($"Total discarded: {temp.TotalDiscarded:n0}");
Console.WriteLine($"Total percentage scanned: {temp.PercentageOfIpv4Scanned}");
Console.WriteLine($"Total Ips left: {temp.AmountOfIpv4Left:n0}");
Console.WriteLine($"Filtered DB size: {temp.FilteredDbSize} Kb");
Console.WriteLine($"Discarded DB size: {temp.DiscardedDbSize} Kb");
Console.WriteLine($"Mydb DB size: {temp.MyDbSize} Kb");
}
public static void StopServer()
{
CommunicationObject communicationObject = new();
communicationObject.Command = CommunicationCommand.StopScanning;
Console.WriteLine(SendAndRecieveStringMessage(communicationObject));
}
public static void GarbageCollect()
{
CommunicationObject communicationObject = new();
communicationObject.Command = CommunicationCommand.GarbageCollect;
Console.WriteLine(SendAndRecieveStringMessage(communicationObject));
}
public static void Vacuum()
{
CommunicationObject communicationObject = new();
communicationObject.Command = CommunicationCommand.DbVacuum;
Console.WriteLine(SendAndRecieveStringMessage(communicationObject));
}
public static void ReIndex()
{
CommunicationObject communicationObject = new();
communicationObject.Command = CommunicationCommand.DbReindex;
Console.WriteLine(SendAndRecieveStringMessage(communicationObject));
}
public static void GetHelp()
{
Console.WriteLine("Available commands:" + '\n');
Console.WriteLine(" stop - stops the server" + '\n');
Console.WriteLine(" clear - clears the console" + '\n');
Console.WriteLine(" q - quits the program" + '\n');
Console.WriteLine(" p - print the progress information of the scanner" + '\n');
Console.WriteLine(" g - manual garbage collect on the server" + '\n');
Console.WriteLine(" r - manual reindex the databases" + '\n');
Console.WriteLine(" v - manual vacuum the databases" + '\n');
Console.WriteLine(" help - shows this help" + '\n');
}
private static string SendAndRecieveStringMessage(CommunicationObject communicationObject)
{
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<string>(msg, MessagePackSerializerOptions.Standard.WithCompression(MessagePackCompression.Lz4BlockArray));;
}
private static ScanningStatus GetProgress(CommunicationObject communicationObject)
{
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));
}
}
+32
View File
@@ -0,0 +1,32 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<Platform>x64</Platform>
<Optimize>true</Optimize>
<!--<PublishAot>true</PublishAot>-->
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>link</TrimMode>
<TrimmerRemoveSymbols>true</TrimmerRemoveSymbols>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Models\Models.csproj" />
</ItemGroup>
<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>
</Project>
+54
View File
@@ -0,0 +1,54 @@
using Manager;
bool stop = false;
do
{
string? input = Console.ReadLine();
if (string.Equals(input, "stop"))
{
Commands.StopServer();
}
else if (string.Equals(input, "q"))
{
stop = true;
}
else if (string.Equals(input, "clear"))
{
Console.Clear();
}
else if (string.Equals(input, "p"))
{
Commands.GetProgress();
}
else if (string.Equals(input, "g"))
{
Commands.GarbageCollect();
}
else if (string.Equals(input, "v"))
{
Commands.Vacuum();
}
else if (string.Equals(input, "r"))
{
Commands.ReIndex();
}
else if (string.Equals(input, "help"))
{
Commands.GetHelp();
}
else
{
Commands.GetHelp();
}
} while (!stop);
@@ -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("Manager")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Manager")]
[assembly: System.Reflection.AssemblyTitleAttribute("Manager")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
f2edcd1f3bfbc6ac17d0373459972a7238e7e008421899c57c54c58830729d72
@@ -0,0 +1,18 @@
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 =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Manager
build_property.ProjectDir = /home/skingging/Documents/Projects/CSharp/RSE/Manager/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop = false
build_property.EffectiveAnalysisLevelStyle = 8.0
@@ -0,0 +1,8 @@
// <auto-generated/>
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.Threading;
global using global::System.Threading.Tasks;
Binary file not shown.
@@ -0,0 +1 @@
8a6f7d84ab86fbf6e31c6cd183b6a18699f427c82afa1a699c8c1b4000eac5c1
@@ -0,0 +1,81 @@
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/Manager
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/Manager.deps.json
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/Manager.runtimeconfig.json
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/Manager.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/Manager.pdb
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/AsyncIO.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/MessagePack.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/MessagePack.Annotations.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/Microsoft.Extensions.ObjectPool.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/Microsoft.NET.StringTools.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/NaCl.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/NetMQ.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/SQLitePCLRaw.core.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/System.Drawing.Common.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/System.Private.ServiceModel.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/System.Security.Cryptography.Pkcs.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/System.Security.Cryptography.Xml.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/System.Security.Permissions.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/System.ServiceModel.Primitives.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/System.ServiceModel.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/System.Windows.Extensions.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/cs/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/de/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/es/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/fr/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/it/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/ja/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/ko/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/pl/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/pt-BR/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/ru/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/tr/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/zh-Hans/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/zh-Hant/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/linux-x64/native/libsqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/osx-x64/native/libsqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/win7-x64/native/sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/win7-x86/native/sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/Models.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Debug/net8.0/Models.pdb
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Debug/net8.0/Manager.csproj.AssemblyReference.cache
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Debug/net8.0/Manager.GeneratedMSBuildEditorConfig.editorconfig
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Debug/net8.0/Manager.AssemblyInfoInputs.cache
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Debug/net8.0/Manager.AssemblyInfo.cs
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Debug/net8.0/Manager.csproj.CoreCompileInputs.cache
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Debug/net8.0/Manager.csproj.Up2Date
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Debug/net8.0/Manager.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Debug/net8.0/refint/Manager.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Debug/net8.0/Manager.pdb
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Debug/net8.0/Manager.genruntimeconfig.cache
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Debug/net8.0/ref/Manager.dll
Binary file not shown.
@@ -0,0 +1 @@
631bcb08105fa9011fb32a31d6f9b20b3fb506f102dbd4ae41818759f3965d8b
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,212 @@
{
"format": 1,
"restore": {
"/home/skingging/Documents/Projects/CSharp/RSE/Manager/Manager.csproj": {}
},
"projects": {
"/home/skingging/Documents/Projects/CSharp/RSE/Manager/Manager.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/home/skingging/Documents/Projects/CSharp/RSE/Manager/Manager.csproj",
"projectName": "Manager",
"projectPath": "/home/skingging/Documents/Projects/CSharp/RSE/Manager/Manager.csproj",
"packagesPath": "/home/skingging/.nuget/packages/",
"outputPath": "/home/skingging/Documents/Projects/CSharp/RSE/Manager/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.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/home/skingging/.dotnet/sdk/9.0.100-preview.6.24328.19/PortableRuntimeIdentifierGraph.json"
}
}
},
"/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"
}
}
}
}
}
+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>
@@ -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("Manager")]
[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("Manager")]
[assembly: System.Reflection.AssemblyTitleAttribute("Manager")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
17839627f63727ed46df8c31fee63615d813cf203af1f1d26871eb358af64608
@@ -0,0 +1,18 @@
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 =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Manager
build_property.ProjectDir = /home/skingging/Documents/Projects/CSharp/RSE/Manager/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop = false
build_property.EffectiveAnalysisLevelStyle = 8.0
@@ -0,0 +1,8 @@
// <auto-generated/>
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.Threading;
global using global::System.Threading.Tasks;
Binary file not shown.
@@ -0,0 +1 @@
67262f1fb3b38bb983915fec4ee7ed691b554d01aeb6a5f6c03407378767fd8d
@@ -0,0 +1,81 @@
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/Manager
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/Manager.deps.json
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/Manager.runtimeconfig.json
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/Manager.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/Manager.pdb
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/MessagePack.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/MessagePack.Annotations.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/Microsoft.Data.Sqlite.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/Microsoft.NET.StringTools.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/SQLitePCLRaw.batteries_v2.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/SQLitePCLRaw.core.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/linux-x64/native/libsqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/osx-x64/native/libsqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/win7-x64/native/sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/win7-x86/native/sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/linux-arm/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/linux-armel/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/linux-x64/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/linux-x86/native/libe_sqlite3.so
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/win-arm/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/win-arm64/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/win-x64/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/win-x86/native/e_sqlite3.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/Models.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/NetMQ.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/Models.pdb
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Release/net8.0/Manager.csproj.AssemblyReference.cache
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Release/net8.0/Manager.GeneratedMSBuildEditorConfig.editorconfig
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Release/net8.0/Manager.AssemblyInfoInputs.cache
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Release/net8.0/Manager.AssemblyInfo.cs
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Release/net8.0/Manager.csproj.CoreCompileInputs.cache
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Release/net8.0/Manager.csproj.Up2Date
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Release/net8.0/Manager.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Release/net8.0/refint/Manager.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Release/net8.0/Manager.pdb
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Release/net8.0/Manager.genruntimeconfig.cache
/home/skingging/Documents/Projects/CSharp/RSE/Manager/obj/Release/net8.0/ref/Manager.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/AsyncIO.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/Microsoft.Extensions.ObjectPool.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/Microsoft.Win32.SystemEvents.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/NaCl.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/System.Drawing.Common.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/System.Private.ServiceModel.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/System.Security.Cryptography.Pkcs.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/System.Security.Cryptography.Xml.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/System.Security.Permissions.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/System.ServiceModel.Primitives.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/System.ServiceModel.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/System.Windows.Extensions.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/cs/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/de/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/es/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/fr/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/it/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/ja/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/ko/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/pl/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/pt-BR/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/ru/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/tr/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/zh-Hans/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/zh-Hant/System.Private.ServiceModel.resources.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll
/home/skingging/Documents/Projects/CSharp/RSE/Manager/bin/Release/net8.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll
Binary file not shown.
@@ -0,0 +1 @@
91934220b3585b775045ee04419d7f6c7c41d4d18256bb3420151045395c8b3c
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large Load Diff
+79
View File
@@ -0,0 +1,79 @@
{
"version": 2,
"dgSpecHash": "RiFuDez0ZZ8=",
"success": true,
"projectFilePath": "/home/skingging/Documents/Projects/CSharp/RSE/Manager/Manager.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/Manager/Manager.csproj","projectName":"Manager","projectPath":"/home/skingging/Documents/Projects/CSharp/RSE/Manager/Manager.csproj","outputPath":"/home/skingging/Documents/Projects/CSharp/RSE/Manager/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.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/skingging/.dotnet/sdk/9.0.100-preview.6.24328.19/PortableRuntimeIdentifierGraph.json"}}
@@ -0,0 +1 @@
17314870008461004
+1
View File
@@ -0,0 +1 @@
17314870008461004