Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a65e72c49 | |||
| f8bbd1199d | |||
| 294438145a | |||
| 413360ece2 | |||
| a0b9f05ae3 | |||
| caa7436d51 | |||
| 5eec358b68 | |||
| 7c1cbb44f8 | |||
| 06ea991a6c | |||
| 156ae148a7 | |||
| f65d05402a | |||
| b1078e4860 | |||
| 38cbd48a11 | |||
| 4ec7cef15a | |||
| 5bdd934e42 |
@@ -67,3 +67,6 @@ Thumbs.db
|
|||||||
|
|
||||||
# Ignore all files with a _svn directory, which is used by Subversion
|
# Ignore all files with a _svn directory, which is used by Subversion
|
||||||
_svn/
|
_svn/
|
||||||
|
publish/delete
|
||||||
|
publish/appsettings.Development.json
|
||||||
|
publish/appsettings.json
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
# dotnet
|
|
||||||
|
|
||||||
dotnet run
|
|
||||||
git add .
|
|
||||||
git commit -m "Add steam running games"
|
|
||||||
git push origin master
|
|
||||||
dotnet publish -c Release -o ./publish
|
|
||||||
@@ -1,200 +0,0 @@
|
|||||||
using System.Diagnostics;
|
|
||||||
using Microsoft.AspNetCore.Builder;
|
|
||||||
using Microsoft.AspNetCore.Hosting;
|
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
|
||||||
using Microsoft.Extensions.Hosting;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using Microsoft.AspNetCore.Http;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
using System.Management;
|
|
||||||
|
|
||||||
namespace ResourceMonitorService
|
|
||||||
{
|
|
||||||
public class Worker : BackgroundService
|
|
||||||
{
|
|
||||||
private readonly IHostApplicationLifetime _lifetime;
|
|
||||||
|
|
||||||
public Worker(IHostApplicationLifetime lifetime)
|
|
||||||
{
|
|
||||||
_lifetime = lifetime;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
|
|
||||||
{
|
|
||||||
var builder = WebApplication.CreateBuilder();
|
|
||||||
builder.Services.AddControllers().AddNewtonsoftJson();
|
|
||||||
var app = builder.Build();
|
|
||||||
|
|
||||||
app.MapGet("/api/resource-usage", async context =>
|
|
||||||
{
|
|
||||||
var currentTime = GetCurrentTime();
|
|
||||||
|
|
||||||
var computerInfo = GetComputerInfo();
|
|
||||||
var cpuUsage = GetCpuUsage();
|
|
||||||
var ramUsage = GetRamUsage();
|
|
||||||
var gpuUsage = GetGpuUsage();
|
|
||||||
var runningGame = GetCurrentlyRunningGame();
|
|
||||||
|
|
||||||
var resourceUsage = new
|
|
||||||
{
|
|
||||||
CurrentTime = currentTime,
|
|
||||||
ComputerInfo = computerInfo,
|
|
||||||
CPU = cpuUsage,
|
|
||||||
RAM = ramUsage,
|
|
||||||
GPU = gpuUsage,
|
|
||||||
CurrentlyRunningGame = runningGame
|
|
||||||
};
|
|
||||||
|
|
||||||
var json = JsonConvert.SerializeObject(resourceUsage);
|
|
||||||
context.Response.ContentType = "application/json";
|
|
||||||
await context.Response.WriteAsync(json);
|
|
||||||
});
|
|
||||||
|
|
||||||
app.RunAsync(stoppingToken);
|
|
||||||
|
|
||||||
await Task.Delay(Timeout.Infinite, stoppingToken);
|
|
||||||
}
|
|
||||||
|
|
||||||
private object GetComputerInfo()
|
|
||||||
{
|
|
||||||
return new
|
|
||||||
{
|
|
||||||
MachineName = Environment.MachineName,
|
|
||||||
OSVersion = RuntimeInformation.OSDescription,
|
|
||||||
OSArchitecture = RuntimeInformation.OSArchitecture.ToString(),
|
|
||||||
ProcessorCount = Environment.ProcessorCount
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private object GetCpuUsage()
|
|
||||||
{
|
|
||||||
var cpuCounter = new PerformanceCounter("Processor", "% Processor Time", "_Total");
|
|
||||||
cpuCounter.NextValue();
|
|
||||||
Thread.Sleep(1000); // Wait a second to get a valid reading
|
|
||||||
|
|
||||||
var usage = cpuCounter.NextValue();
|
|
||||||
if (usage > 80)
|
|
||||||
{
|
|
||||||
// Get the current processes and sort them by CPU usage in descending order
|
|
||||||
var processes = Process.GetProcesses().OrderByDescending(p => p.TotalProcessorTime);
|
|
||||||
|
|
||||||
// Create a new anonymous type containing the CPU usage, RAM usage, and the top 3 highest CPU-using processes
|
|
||||||
return new
|
|
||||||
{
|
|
||||||
Usage = usage,
|
|
||||||
Process1 = new
|
|
||||||
{
|
|
||||||
Name = processes.ElementAt(0).ProcessName,
|
|
||||||
TotalProcessorTime = processes.ElementAt(0).TotalProcessorTime,
|
|
||||||
WorkingSet64 = processes.ElementAt(0).WorkingSet64 / (1024 * 1024) // Convert to MB
|
|
||||||
},
|
|
||||||
Process2 = new
|
|
||||||
{
|
|
||||||
Name = processes.ElementAt(1).ProcessName,
|
|
||||||
TotalProcessorTime = processes.ElementAt(1).TotalProcessorTime,
|
|
||||||
WorkingSet64 = processes.ElementAt(1).WorkingSet64 / (1024 * 1024) // Convert to MB
|
|
||||||
},
|
|
||||||
Process3 = new
|
|
||||||
{
|
|
||||||
Name = processes.ElementAt(2).ProcessName,
|
|
||||||
TotalProcessorTime = processes.ElementAt(2).TotalProcessorTime,
|
|
||||||
WorkingSet64 = processes.ElementAt(2).WorkingSet64 / (1024 * 1024) // Convert to MB
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return new
|
|
||||||
{
|
|
||||||
Usage = usage
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private float GetRamUsage()
|
|
||||||
{
|
|
||||||
var ramCounter = new PerformanceCounter("Memory", "Available MBytes");
|
|
||||||
var totalMemory = GetTotalPhysicalMemory();
|
|
||||||
var availableMemory = ramCounter.NextValue() * 1024 * 1024;
|
|
||||||
return (float)(totalMemory - availableMemory) / totalMemory * 100;
|
|
||||||
}
|
|
||||||
|
|
||||||
private ulong GetTotalPhysicalMemory()
|
|
||||||
{
|
|
||||||
ulong totalMemory = 0;
|
|
||||||
var searcher = new ManagementObjectSearcher("SELECT TotalPhysicalMemory FROM Win32_ComputerSystem");
|
|
||||||
foreach (var obj in searcher.Get())
|
|
||||||
{
|
|
||||||
totalMemory = (ulong)obj["TotalPhysicalMemory"];
|
|
||||||
}
|
|
||||||
return totalMemory;
|
|
||||||
}
|
|
||||||
|
|
||||||
private object GetGpuUsage()
|
|
||||||
{
|
|
||||||
NvmlWrapper.NvmlInit();
|
|
||||||
IntPtr device;
|
|
||||||
NvmlWrapper.NvmlDeviceGetHandleByIndex(0, out device);
|
|
||||||
NvmlWrapper.NvmlUtilization utilization;
|
|
||||||
NvmlWrapper.NvmlDeviceGetUtilizationRates(device, out utilization);
|
|
||||||
|
|
||||||
uint temperature;
|
|
||||||
NvmlWrapper.NvmlDeviceGetTemperature(device, 0, out temperature);
|
|
||||||
|
|
||||||
uint fanSpeed;
|
|
||||||
NvmlWrapper.NvmlDeviceGetFanSpeed(device, out fanSpeed);
|
|
||||||
|
|
||||||
NvmlWrapper.NvmlShutdown();
|
|
||||||
|
|
||||||
return new
|
|
||||||
{
|
|
||||||
Usage = utilization.Gpu,
|
|
||||||
Temperature = temperature,
|
|
||||||
FanSpeed = fanSpeed
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private object GetCurrentlyRunningGame()
|
|
||||||
{
|
|
||||||
var processes = Process.GetProcesses();
|
|
||||||
|
|
||||||
foreach (var process in processes)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var filePath = process.MainModule.FileName;
|
|
||||||
if (filePath.Contains(@"\steamapps\common\"))
|
|
||||||
{
|
|
||||||
// Extract the game directory name
|
|
||||||
var parts = filePath.Split(new[] { @"\steamapps\common\" }, StringSplitOptions.None);
|
|
||||||
if (parts.Length > 1)
|
|
||||||
{
|
|
||||||
var gamePath = parts[1];
|
|
||||||
var gameName = gamePath.Split(Path.DirectorySeparatorChar)[0];
|
|
||||||
return new
|
|
||||||
{
|
|
||||||
GameName = gameName,
|
|
||||||
ExecutableName = Path.GetFileName(filePath),
|
|
||||||
FullPath = filePath,
|
|
||||||
ProcessId = process.Id,
|
|
||||||
MemoryUsage = process.WorkingSet64 / (1024 * 1024) + " MB", // Memory usage in MB
|
|
||||||
CpuTime = process.TotalProcessorTime.ToString(),
|
|
||||||
StartTime = process.StartTime.ToString("G"), // General date/time pattern
|
|
||||||
UserName = Environment.UserName // The user running the process
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (Exception)
|
|
||||||
{
|
|
||||||
// Handle access exceptions or continue if not important
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return "No Steam game is currently running.";
|
|
||||||
}
|
|
||||||
private string GetCurrentTime()
|
|
||||||
{
|
|
||||||
return DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
// <autogenerated />
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// This code was generated by a tool.
|
|
||||||
//
|
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
|
||||||
// the code is regenerated.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("ResourceMonitorService")]
|
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+297c90d55ddfc8f23ee02a37dcab1ed38a5bd12a")]
|
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("ResourceMonitorService")]
|
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("ResourceMonitorService")]
|
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
||||||
|
|
||||||
// Generated by the MSBuild WriteCodeFragment class.
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
64e97da166502b5616af8a0afd23c13327d9ec634922364a05e8037d38d0e65d
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
is_global = true
|
|
||||||
build_property.TargetFramework = net9.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 = ResourceMonitorService
|
|
||||||
build_property.ProjectDir = C:\Work\DEV\ResourceUsageAPI\
|
|
||||||
build_property.EnableComHosting =
|
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
|
||||||
build_property.EffectiveAnalysisLevelStyle = 9.0
|
|
||||||
build_property.EnableCodeStyleSeverity =
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
// <auto-generated/>
|
|
||||||
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.Threading;
|
|
||||||
global using global::System.Threading.Tasks;
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
ResourceMonitorService
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
sc create ResourceMonitorServicerrr binPath= "%~dp0ResourceMonitorService.exe --windows-service" start= auto
|
|
||||||
sc description ResourceMonitorServicerrr "A service that monitors system resource usage and exposes it via a web API."
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,648 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETCoreApp,Version=v9.0",
|
|
||||||
"signature": ""
|
|
||||||
},
|
|
||||||
"compilationOptions": {},
|
|
||||||
"targets": {
|
|
||||||
".NETCoreApp,Version=v9.0": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices": "9.0.0",
|
|
||||||
"System.Diagnostics.PerformanceCounter": "9.0.0",
|
|
||||||
"System.Management": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"ResourceMonitorService.dll": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.CSharp": "4.7.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.JsonPatch.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.JsonPatch": "9.0.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3",
|
|
||||||
"Newtonsoft.Json.Bson": "1.0.2"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventSource": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"System.ServiceProcess.ServiceController": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Hosting.WindowsServices.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
|
||||||
"assemblyVersion": "13.0.0.0",
|
|
||||||
"fileVersion": "13.0.3.27908"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"dependencies": {
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
|
|
||||||
"assemblyVersion": "1.0.0.0",
|
|
||||||
"fileVersion": "1.0.2.22727"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.CodeDom.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0",
|
|
||||||
"System.Security.Cryptography.ProtectedData": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Configuration.ConfigurationManager.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Configuration.ConfigurationManager": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.CodeDom": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Management.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Management.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/4UONYoAIeexPoAmbzBPkVGA6KAY7t0BM+1sr0fKss2V1ERCdcM+Llub4X5Ma+LJ60oPp6KzM0e3j+Pp/JHCNw==",
|
|
||||||
"path": "microsoft.aspnetcore.jsonpatch/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.jsonpatch.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTFDEmZi3GheCSPrBxzyE63+d5unln2vYldo/nOm1xet/4rpEk2oJYcwpclPQ13E+LZBF9XixkgwYTUwqznlWg==",
|
|
||||||
"path": "microsoft.aspnetcore.mvc.newtonsoftjson/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
|
|
||||||
"path": "microsoft.csharp/4.7.0",
|
|
||||||
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==",
|
|
||||||
"path": "microsoft.extensions.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==",
|
|
||||||
"path": "microsoft.extensions.configuration.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.binder/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==",
|
|
||||||
"path": "microsoft.extensions.configuration.commandline/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==",
|
|
||||||
"path": "microsoft.extensions.configuration.environmentvariables/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.fileextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==",
|
|
||||||
"path": "microsoft.extensions.configuration.json/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==",
|
|
||||||
"path": "microsoft.extensions.configuration.usersecrets/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==",
|
|
||||||
"path": "microsoft.extensions.diagnostics/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==",
|
|
||||||
"path": "microsoft.extensions.diagnostics.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.physical/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==",
|
|
||||||
"path": "microsoft.extensions.filesystemglobbing/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==",
|
|
||||||
"path": "microsoft.extensions.hosting/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==",
|
|
||||||
"path": "microsoft.extensions.hosting.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==",
|
|
||||||
"path": "microsoft.extensions.hosting.windowsservices/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==",
|
|
||||||
"path": "microsoft.extensions.logging/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==",
|
|
||||||
"path": "microsoft.extensions.logging.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==",
|
|
||||||
"path": "microsoft.extensions.logging.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==",
|
|
||||||
"path": "microsoft.extensions.logging.console/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==",
|
|
||||||
"path": "microsoft.extensions.logging.debug/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==",
|
|
||||||
"path": "microsoft.extensions.logging.eventlog/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==",
|
|
||||||
"path": "microsoft.extensions.logging.eventsource/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==",
|
|
||||||
"path": "microsoft.extensions.options/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==",
|
|
||||||
"path": "microsoft.extensions.options.configurationextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==",
|
|
||||||
"path": "microsoft.extensions.primitives/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
|
||||||
"path": "newtonsoft.json/13.0.3",
|
|
||||||
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
|
|
||||||
"path": "newtonsoft.json.bson/1.0.2",
|
|
||||||
"hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==",
|
|
||||||
"path": "system.codedom/9.0.0",
|
|
||||||
"hashPath": "system.codedom.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==",
|
|
||||||
"path": "system.configuration.configurationmanager/9.0.0",
|
|
||||||
"hashPath": "system.configuration.configurationmanager.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==",
|
|
||||||
"path": "system.diagnostics.eventlog/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1SSqHtWZUdAC0j0UCw2ZWV4iOWB7nPZFkseqPsjdaypVu7ue1xsUJMobXkpHEDFNTrL0DpOdT7k6qDfqmFkQ6g==",
|
|
||||||
"path": "system.diagnostics.performancecounter/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.performancecounter.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-bVh4xAMI5grY5GZoklKcMBLirhC8Lqzp63Ft3zXJacwGAlLyFdF4k0qz4pnKIlO6HyL2Z4zqmHm9UkzEo6FFsA==",
|
|
||||||
"path": "system.management/9.0.0",
|
|
||||||
"hashPath": "system.management.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-CJW+x/F6fmRQ7N6K8paasTw9PDZp4t7G76UjGNlSDgoHPF0h08vTzLYbLZpOLEJSg35d5wy2jCXGo84EN05DpQ==",
|
|
||||||
"path": "system.security.cryptography.protecteddata/9.0.0",
|
|
||||||
"hashPath": "system.security.cryptography.protecteddata.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==",
|
|
||||||
"path": "system.serviceprocess.servicecontroller/9.0.0",
|
|
||||||
"hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeOptions": {
|
|
||||||
"tfm": "net9.0",
|
|
||||||
"frameworks": [
|
|
||||||
{
|
|
||||||
"name": "Microsoft.NETCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Microsoft.AspNetCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"configProperties": {
|
|
||||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
|
||||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,648 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETCoreApp,Version=v9.0",
|
|
||||||
"signature": ""
|
|
||||||
},
|
|
||||||
"compilationOptions": {},
|
|
||||||
"targets": {
|
|
||||||
".NETCoreApp,Version=v9.0": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices": "9.0.0",
|
|
||||||
"System.Diagnostics.PerformanceCounter": "9.0.0",
|
|
||||||
"System.Management": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"ResourceMonitorService.dll": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.CSharp": "4.7.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.JsonPatch.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.JsonPatch": "9.0.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3",
|
|
||||||
"Newtonsoft.Json.Bson": "1.0.2"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventSource": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"System.ServiceProcess.ServiceController": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Hosting.WindowsServices.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
|
||||||
"assemblyVersion": "13.0.0.0",
|
|
||||||
"fileVersion": "13.0.3.27908"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"dependencies": {
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
|
|
||||||
"assemblyVersion": "1.0.0.0",
|
|
||||||
"fileVersion": "1.0.2.22727"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.CodeDom.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0",
|
|
||||||
"System.Security.Cryptography.ProtectedData": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Configuration.ConfigurationManager.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Configuration.ConfigurationManager": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.CodeDom": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Management.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Management.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/4UONYoAIeexPoAmbzBPkVGA6KAY7t0BM+1sr0fKss2V1ERCdcM+Llub4X5Ma+LJ60oPp6KzM0e3j+Pp/JHCNw==",
|
|
||||||
"path": "microsoft.aspnetcore.jsonpatch/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.jsonpatch.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTFDEmZi3GheCSPrBxzyE63+d5unln2vYldo/nOm1xet/4rpEk2oJYcwpclPQ13E+LZBF9XixkgwYTUwqznlWg==",
|
|
||||||
"path": "microsoft.aspnetcore.mvc.newtonsoftjson/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
|
|
||||||
"path": "microsoft.csharp/4.7.0",
|
|
||||||
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==",
|
|
||||||
"path": "microsoft.extensions.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==",
|
|
||||||
"path": "microsoft.extensions.configuration.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.binder/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==",
|
|
||||||
"path": "microsoft.extensions.configuration.commandline/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==",
|
|
||||||
"path": "microsoft.extensions.configuration.environmentvariables/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.fileextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==",
|
|
||||||
"path": "microsoft.extensions.configuration.json/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==",
|
|
||||||
"path": "microsoft.extensions.configuration.usersecrets/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==",
|
|
||||||
"path": "microsoft.extensions.diagnostics/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==",
|
|
||||||
"path": "microsoft.extensions.diagnostics.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.physical/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==",
|
|
||||||
"path": "microsoft.extensions.filesystemglobbing/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==",
|
|
||||||
"path": "microsoft.extensions.hosting/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==",
|
|
||||||
"path": "microsoft.extensions.hosting.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==",
|
|
||||||
"path": "microsoft.extensions.hosting.windowsservices/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==",
|
|
||||||
"path": "microsoft.extensions.logging/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==",
|
|
||||||
"path": "microsoft.extensions.logging.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==",
|
|
||||||
"path": "microsoft.extensions.logging.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==",
|
|
||||||
"path": "microsoft.extensions.logging.console/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==",
|
|
||||||
"path": "microsoft.extensions.logging.debug/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==",
|
|
||||||
"path": "microsoft.extensions.logging.eventlog/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==",
|
|
||||||
"path": "microsoft.extensions.logging.eventsource/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==",
|
|
||||||
"path": "microsoft.extensions.options/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==",
|
|
||||||
"path": "microsoft.extensions.options.configurationextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==",
|
|
||||||
"path": "microsoft.extensions.primitives/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
|
||||||
"path": "newtonsoft.json/13.0.3",
|
|
||||||
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
|
|
||||||
"path": "newtonsoft.json.bson/1.0.2",
|
|
||||||
"hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==",
|
|
||||||
"path": "system.codedom/9.0.0",
|
|
||||||
"hashPath": "system.codedom.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==",
|
|
||||||
"path": "system.configuration.configurationmanager/9.0.0",
|
|
||||||
"hashPath": "system.configuration.configurationmanager.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==",
|
|
||||||
"path": "system.diagnostics.eventlog/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1SSqHtWZUdAC0j0UCw2ZWV4iOWB7nPZFkseqPsjdaypVu7ue1xsUJMobXkpHEDFNTrL0DpOdT7k6qDfqmFkQ6g==",
|
|
||||||
"path": "system.diagnostics.performancecounter/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.performancecounter.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-bVh4xAMI5grY5GZoklKcMBLirhC8Lqzp63Ft3zXJacwGAlLyFdF4k0qz4pnKIlO6HyL2Z4zqmHm9UkzEo6FFsA==",
|
|
||||||
"path": "system.management/9.0.0",
|
|
||||||
"hashPath": "system.management.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-CJW+x/F6fmRQ7N6K8paasTw9PDZp4t7G76UjGNlSDgoHPF0h08vTzLYbLZpOLEJSg35d5wy2jCXGo84EN05DpQ==",
|
|
||||||
"path": "system.security.cryptography.protecteddata/9.0.0",
|
|
||||||
"hashPath": "system.security.cryptography.protecteddata.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==",
|
|
||||||
"path": "system.serviceprocess.servicecontroller/9.0.0",
|
|
||||||
"hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeOptions": {
|
|
||||||
"tfm": "net9.0",
|
|
||||||
"frameworks": [
|
|
||||||
{
|
|
||||||
"name": "Microsoft.NETCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Microsoft.AspNetCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"configProperties": {
|
|
||||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
|
||||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,648 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETCoreApp,Version=v9.0",
|
|
||||||
"signature": ""
|
|
||||||
},
|
|
||||||
"compilationOptions": {},
|
|
||||||
"targets": {
|
|
||||||
".NETCoreApp,Version=v9.0": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices": "9.0.0",
|
|
||||||
"System.Diagnostics.PerformanceCounter": "9.0.0",
|
|
||||||
"System.Management": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"ResourceMonitorService.dll": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.CSharp": "4.7.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.JsonPatch.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.JsonPatch": "9.0.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3",
|
|
||||||
"Newtonsoft.Json.Bson": "1.0.2"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventSource": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"System.ServiceProcess.ServiceController": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Hosting.WindowsServices.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
|
||||||
"assemblyVersion": "13.0.0.0",
|
|
||||||
"fileVersion": "13.0.3.27908"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"dependencies": {
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
|
|
||||||
"assemblyVersion": "1.0.0.0",
|
|
||||||
"fileVersion": "1.0.2.22727"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.CodeDom.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0",
|
|
||||||
"System.Security.Cryptography.ProtectedData": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Configuration.ConfigurationManager.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Configuration.ConfigurationManager": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.CodeDom": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Management.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Management.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/4UONYoAIeexPoAmbzBPkVGA6KAY7t0BM+1sr0fKss2V1ERCdcM+Llub4X5Ma+LJ60oPp6KzM0e3j+Pp/JHCNw==",
|
|
||||||
"path": "microsoft.aspnetcore.jsonpatch/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.jsonpatch.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTFDEmZi3GheCSPrBxzyE63+d5unln2vYldo/nOm1xet/4rpEk2oJYcwpclPQ13E+LZBF9XixkgwYTUwqznlWg==",
|
|
||||||
"path": "microsoft.aspnetcore.mvc.newtonsoftjson/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
|
|
||||||
"path": "microsoft.csharp/4.7.0",
|
|
||||||
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==",
|
|
||||||
"path": "microsoft.extensions.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==",
|
|
||||||
"path": "microsoft.extensions.configuration.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.binder/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==",
|
|
||||||
"path": "microsoft.extensions.configuration.commandline/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==",
|
|
||||||
"path": "microsoft.extensions.configuration.environmentvariables/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.fileextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==",
|
|
||||||
"path": "microsoft.extensions.configuration.json/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==",
|
|
||||||
"path": "microsoft.extensions.configuration.usersecrets/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==",
|
|
||||||
"path": "microsoft.extensions.diagnostics/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==",
|
|
||||||
"path": "microsoft.extensions.diagnostics.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.physical/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==",
|
|
||||||
"path": "microsoft.extensions.filesystemglobbing/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==",
|
|
||||||
"path": "microsoft.extensions.hosting/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==",
|
|
||||||
"path": "microsoft.extensions.hosting.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==",
|
|
||||||
"path": "microsoft.extensions.hosting.windowsservices/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==",
|
|
||||||
"path": "microsoft.extensions.logging/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==",
|
|
||||||
"path": "microsoft.extensions.logging.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==",
|
|
||||||
"path": "microsoft.extensions.logging.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==",
|
|
||||||
"path": "microsoft.extensions.logging.console/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==",
|
|
||||||
"path": "microsoft.extensions.logging.debug/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==",
|
|
||||||
"path": "microsoft.extensions.logging.eventlog/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==",
|
|
||||||
"path": "microsoft.extensions.logging.eventsource/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==",
|
|
||||||
"path": "microsoft.extensions.options/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==",
|
|
||||||
"path": "microsoft.extensions.options.configurationextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==",
|
|
||||||
"path": "microsoft.extensions.primitives/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
|
||||||
"path": "newtonsoft.json/13.0.3",
|
|
||||||
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
|
|
||||||
"path": "newtonsoft.json.bson/1.0.2",
|
|
||||||
"hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==",
|
|
||||||
"path": "system.codedom/9.0.0",
|
|
||||||
"hashPath": "system.codedom.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==",
|
|
||||||
"path": "system.configuration.configurationmanager/9.0.0",
|
|
||||||
"hashPath": "system.configuration.configurationmanager.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==",
|
|
||||||
"path": "system.diagnostics.eventlog/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1SSqHtWZUdAC0j0UCw2ZWV4iOWB7nPZFkseqPsjdaypVu7ue1xsUJMobXkpHEDFNTrL0DpOdT7k6qDfqmFkQ6g==",
|
|
||||||
"path": "system.diagnostics.performancecounter/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.performancecounter.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-bVh4xAMI5grY5GZoklKcMBLirhC8Lqzp63Ft3zXJacwGAlLyFdF4k0qz4pnKIlO6HyL2Z4zqmHm9UkzEo6FFsA==",
|
|
||||||
"path": "system.management/9.0.0",
|
|
||||||
"hashPath": "system.management.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-CJW+x/F6fmRQ7N6K8paasTw9PDZp4t7G76UjGNlSDgoHPF0h08vTzLYbLZpOLEJSg35d5wy2jCXGo84EN05DpQ==",
|
|
||||||
"path": "system.security.cryptography.protecteddata/9.0.0",
|
|
||||||
"hashPath": "system.security.cryptography.protecteddata.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==",
|
|
||||||
"path": "system.serviceprocess.servicecontroller/9.0.0",
|
|
||||||
"hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeOptions": {
|
|
||||||
"tfm": "net9.0",
|
|
||||||
"frameworks": [
|
|
||||||
{
|
|
||||||
"name": "Microsoft.NETCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Microsoft.AspNetCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"configProperties": {
|
|
||||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
|
||||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"RunAsWindowsService": true,
|
|
||||||
"Kestrel": {
|
|
||||||
"Endpoints": {
|
|
||||||
"Http": {
|
|
||||||
"Url": "http://*:5000"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,648 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETCoreApp,Version=v9.0",
|
|
||||||
"signature": ""
|
|
||||||
},
|
|
||||||
"compilationOptions": {},
|
|
||||||
"targets": {
|
|
||||||
".NETCoreApp,Version=v9.0": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices": "9.0.0",
|
|
||||||
"System.Diagnostics.PerformanceCounter": "9.0.0",
|
|
||||||
"System.Management": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"ResourceMonitorService.dll": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.CSharp": "4.7.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.JsonPatch.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.JsonPatch": "9.0.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3",
|
|
||||||
"Newtonsoft.Json.Bson": "1.0.2"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventSource": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"System.ServiceProcess.ServiceController": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Hosting.WindowsServices.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
|
||||||
"assemblyVersion": "13.0.0.0",
|
|
||||||
"fileVersion": "13.0.3.27908"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"dependencies": {
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
|
|
||||||
"assemblyVersion": "1.0.0.0",
|
|
||||||
"fileVersion": "1.0.2.22727"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.CodeDom.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0",
|
|
||||||
"System.Security.Cryptography.ProtectedData": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Configuration.ConfigurationManager.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Configuration.ConfigurationManager": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.CodeDom": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Management.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Management.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/4UONYoAIeexPoAmbzBPkVGA6KAY7t0BM+1sr0fKss2V1ERCdcM+Llub4X5Ma+LJ60oPp6KzM0e3j+Pp/JHCNw==",
|
|
||||||
"path": "microsoft.aspnetcore.jsonpatch/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.jsonpatch.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTFDEmZi3GheCSPrBxzyE63+d5unln2vYldo/nOm1xet/4rpEk2oJYcwpclPQ13E+LZBF9XixkgwYTUwqznlWg==",
|
|
||||||
"path": "microsoft.aspnetcore.mvc.newtonsoftjson/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
|
|
||||||
"path": "microsoft.csharp/4.7.0",
|
|
||||||
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==",
|
|
||||||
"path": "microsoft.extensions.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==",
|
|
||||||
"path": "microsoft.extensions.configuration.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.binder/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==",
|
|
||||||
"path": "microsoft.extensions.configuration.commandline/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==",
|
|
||||||
"path": "microsoft.extensions.configuration.environmentvariables/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.fileextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==",
|
|
||||||
"path": "microsoft.extensions.configuration.json/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==",
|
|
||||||
"path": "microsoft.extensions.configuration.usersecrets/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==",
|
|
||||||
"path": "microsoft.extensions.diagnostics/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==",
|
|
||||||
"path": "microsoft.extensions.diagnostics.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.physical/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==",
|
|
||||||
"path": "microsoft.extensions.filesystemglobbing/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==",
|
|
||||||
"path": "microsoft.extensions.hosting/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==",
|
|
||||||
"path": "microsoft.extensions.hosting.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==",
|
|
||||||
"path": "microsoft.extensions.hosting.windowsservices/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==",
|
|
||||||
"path": "microsoft.extensions.logging/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==",
|
|
||||||
"path": "microsoft.extensions.logging.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==",
|
|
||||||
"path": "microsoft.extensions.logging.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==",
|
|
||||||
"path": "microsoft.extensions.logging.console/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==",
|
|
||||||
"path": "microsoft.extensions.logging.debug/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==",
|
|
||||||
"path": "microsoft.extensions.logging.eventlog/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==",
|
|
||||||
"path": "microsoft.extensions.logging.eventsource/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==",
|
|
||||||
"path": "microsoft.extensions.options/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==",
|
|
||||||
"path": "microsoft.extensions.options.configurationextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==",
|
|
||||||
"path": "microsoft.extensions.primitives/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
|
||||||
"path": "newtonsoft.json/13.0.3",
|
|
||||||
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
|
|
||||||
"path": "newtonsoft.json.bson/1.0.2",
|
|
||||||
"hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==",
|
|
||||||
"path": "system.codedom/9.0.0",
|
|
||||||
"hashPath": "system.codedom.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==",
|
|
||||||
"path": "system.configuration.configurationmanager/9.0.0",
|
|
||||||
"hashPath": "system.configuration.configurationmanager.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==",
|
|
||||||
"path": "system.diagnostics.eventlog/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1SSqHtWZUdAC0j0UCw2ZWV4iOWB7nPZFkseqPsjdaypVu7ue1xsUJMobXkpHEDFNTrL0DpOdT7k6qDfqmFkQ6g==",
|
|
||||||
"path": "system.diagnostics.performancecounter/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.performancecounter.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-bVh4xAMI5grY5GZoklKcMBLirhC8Lqzp63Ft3zXJacwGAlLyFdF4k0qz4pnKIlO6HyL2Z4zqmHm9UkzEo6FFsA==",
|
|
||||||
"path": "system.management/9.0.0",
|
|
||||||
"hashPath": "system.management.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-CJW+x/F6fmRQ7N6K8paasTw9PDZp4t7G76UjGNlSDgoHPF0h08vTzLYbLZpOLEJSg35d5wy2jCXGo84EN05DpQ==",
|
|
||||||
"path": "system.security.cryptography.protecteddata/9.0.0",
|
|
||||||
"hashPath": "system.security.cryptography.protecteddata.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==",
|
|
||||||
"path": "system.serviceprocess.servicecontroller/9.0.0",
|
|
||||||
"hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeOptions": {
|
|
||||||
"tfm": "net9.0",
|
|
||||||
"frameworks": [
|
|
||||||
{
|
|
||||||
"name": "Microsoft.NETCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Microsoft.AspNetCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"configProperties": {
|
|
||||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
|
||||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"RunAsWindowsService": true,
|
|
||||||
"Kestrel": {
|
|
||||||
"Endpoints": {
|
|
||||||
"Http": {
|
|
||||||
"Url": "http://localhost:5000"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,648 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETCoreApp,Version=v9.0",
|
|
||||||
"signature": ""
|
|
||||||
},
|
|
||||||
"compilationOptions": {},
|
|
||||||
"targets": {
|
|
||||||
".NETCoreApp,Version=v9.0": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices": "9.0.0",
|
|
||||||
"System.Diagnostics.PerformanceCounter": "9.0.0",
|
|
||||||
"System.Management": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"ResourceMonitorService.dll": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.CSharp": "4.7.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.JsonPatch.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.JsonPatch": "9.0.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3",
|
|
||||||
"Newtonsoft.Json.Bson": "1.0.2"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventSource": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"System.ServiceProcess.ServiceController": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Hosting.WindowsServices.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
|
||||||
"assemblyVersion": "13.0.0.0",
|
|
||||||
"fileVersion": "13.0.3.27908"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"dependencies": {
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
|
|
||||||
"assemblyVersion": "1.0.0.0",
|
|
||||||
"fileVersion": "1.0.2.22727"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.CodeDom.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0",
|
|
||||||
"System.Security.Cryptography.ProtectedData": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Configuration.ConfigurationManager.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Configuration.ConfigurationManager": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.CodeDom": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Management.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Management.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/4UONYoAIeexPoAmbzBPkVGA6KAY7t0BM+1sr0fKss2V1ERCdcM+Llub4X5Ma+LJ60oPp6KzM0e3j+Pp/JHCNw==",
|
|
||||||
"path": "microsoft.aspnetcore.jsonpatch/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.jsonpatch.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTFDEmZi3GheCSPrBxzyE63+d5unln2vYldo/nOm1xet/4rpEk2oJYcwpclPQ13E+LZBF9XixkgwYTUwqznlWg==",
|
|
||||||
"path": "microsoft.aspnetcore.mvc.newtonsoftjson/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
|
|
||||||
"path": "microsoft.csharp/4.7.0",
|
|
||||||
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==",
|
|
||||||
"path": "microsoft.extensions.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==",
|
|
||||||
"path": "microsoft.extensions.configuration.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.binder/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==",
|
|
||||||
"path": "microsoft.extensions.configuration.commandline/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==",
|
|
||||||
"path": "microsoft.extensions.configuration.environmentvariables/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.fileextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==",
|
|
||||||
"path": "microsoft.extensions.configuration.json/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==",
|
|
||||||
"path": "microsoft.extensions.configuration.usersecrets/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==",
|
|
||||||
"path": "microsoft.extensions.diagnostics/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==",
|
|
||||||
"path": "microsoft.extensions.diagnostics.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.physical/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==",
|
|
||||||
"path": "microsoft.extensions.filesystemglobbing/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==",
|
|
||||||
"path": "microsoft.extensions.hosting/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==",
|
|
||||||
"path": "microsoft.extensions.hosting.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==",
|
|
||||||
"path": "microsoft.extensions.hosting.windowsservices/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==",
|
|
||||||
"path": "microsoft.extensions.logging/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==",
|
|
||||||
"path": "microsoft.extensions.logging.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==",
|
|
||||||
"path": "microsoft.extensions.logging.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==",
|
|
||||||
"path": "microsoft.extensions.logging.console/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==",
|
|
||||||
"path": "microsoft.extensions.logging.debug/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==",
|
|
||||||
"path": "microsoft.extensions.logging.eventlog/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==",
|
|
||||||
"path": "microsoft.extensions.logging.eventsource/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==",
|
|
||||||
"path": "microsoft.extensions.options/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==",
|
|
||||||
"path": "microsoft.extensions.options.configurationextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==",
|
|
||||||
"path": "microsoft.extensions.primitives/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
|
||||||
"path": "newtonsoft.json/13.0.3",
|
|
||||||
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
|
|
||||||
"path": "newtonsoft.json.bson/1.0.2",
|
|
||||||
"hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==",
|
|
||||||
"path": "system.codedom/9.0.0",
|
|
||||||
"hashPath": "system.codedom.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==",
|
|
||||||
"path": "system.configuration.configurationmanager/9.0.0",
|
|
||||||
"hashPath": "system.configuration.configurationmanager.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==",
|
|
||||||
"path": "system.diagnostics.eventlog/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1SSqHtWZUdAC0j0UCw2ZWV4iOWB7nPZFkseqPsjdaypVu7ue1xsUJMobXkpHEDFNTrL0DpOdT7k6qDfqmFkQ6g==",
|
|
||||||
"path": "system.diagnostics.performancecounter/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.performancecounter.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-bVh4xAMI5grY5GZoklKcMBLirhC8Lqzp63Ft3zXJacwGAlLyFdF4k0qz4pnKIlO6HyL2Z4zqmHm9UkzEo6FFsA==",
|
|
||||||
"path": "system.management/9.0.0",
|
|
||||||
"hashPath": "system.management.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-CJW+x/F6fmRQ7N6K8paasTw9PDZp4t7G76UjGNlSDgoHPF0h08vTzLYbLZpOLEJSg35d5wy2jCXGo84EN05DpQ==",
|
|
||||||
"path": "system.security.cryptography.protecteddata/9.0.0",
|
|
||||||
"hashPath": "system.security.cryptography.protecteddata.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==",
|
|
||||||
"path": "system.serviceprocess.servicecontroller/9.0.0",
|
|
||||||
"hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-19
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeOptions": {
|
|
||||||
"tfm": "net9.0",
|
|
||||||
"frameworks": [
|
|
||||||
{
|
|
||||||
"name": "Microsoft.NETCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Microsoft.AspNetCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"configProperties": {
|
|
||||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
|
||||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"RunAsWindowsService": true,
|
|
||||||
"Kestrel": {
|
|
||||||
"Endpoints": {
|
|
||||||
"Http": {
|
|
||||||
"Url": "http://localhost:5000"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-648
@@ -1,648 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETCoreApp,Version=v9.0",
|
|
||||||
"signature": ""
|
|
||||||
},
|
|
||||||
"compilationOptions": {},
|
|
||||||
"targets": {
|
|
||||||
".NETCoreApp,Version=v9.0": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices": "9.0.0",
|
|
||||||
"System.Diagnostics.PerformanceCounter": "9.0.0",
|
|
||||||
"System.Management": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"ResourceMonitorService.dll": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.CSharp": "4.7.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.JsonPatch.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.JsonPatch": "9.0.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3",
|
|
||||||
"Newtonsoft.Json.Bson": "1.0.2"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventSource": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"System.ServiceProcess.ServiceController": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Hosting.WindowsServices.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
|
||||||
"assemblyVersion": "13.0.0.0",
|
|
||||||
"fileVersion": "13.0.3.27908"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"dependencies": {
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
|
|
||||||
"assemblyVersion": "1.0.0.0",
|
|
||||||
"fileVersion": "1.0.2.22727"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.CodeDom.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0",
|
|
||||||
"System.Security.Cryptography.ProtectedData": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Configuration.ConfigurationManager.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Configuration.ConfigurationManager": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.CodeDom": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Management.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Management.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/4UONYoAIeexPoAmbzBPkVGA6KAY7t0BM+1sr0fKss2V1ERCdcM+Llub4X5Ma+LJ60oPp6KzM0e3j+Pp/JHCNw==",
|
|
||||||
"path": "microsoft.aspnetcore.jsonpatch/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.jsonpatch.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTFDEmZi3GheCSPrBxzyE63+d5unln2vYldo/nOm1xet/4rpEk2oJYcwpclPQ13E+LZBF9XixkgwYTUwqznlWg==",
|
|
||||||
"path": "microsoft.aspnetcore.mvc.newtonsoftjson/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
|
|
||||||
"path": "microsoft.csharp/4.7.0",
|
|
||||||
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==",
|
|
||||||
"path": "microsoft.extensions.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==",
|
|
||||||
"path": "microsoft.extensions.configuration.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.binder/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==",
|
|
||||||
"path": "microsoft.extensions.configuration.commandline/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==",
|
|
||||||
"path": "microsoft.extensions.configuration.environmentvariables/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.fileextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==",
|
|
||||||
"path": "microsoft.extensions.configuration.json/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==",
|
|
||||||
"path": "microsoft.extensions.configuration.usersecrets/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==",
|
|
||||||
"path": "microsoft.extensions.diagnostics/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==",
|
|
||||||
"path": "microsoft.extensions.diagnostics.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.physical/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==",
|
|
||||||
"path": "microsoft.extensions.filesystemglobbing/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==",
|
|
||||||
"path": "microsoft.extensions.hosting/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==",
|
|
||||||
"path": "microsoft.extensions.hosting.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==",
|
|
||||||
"path": "microsoft.extensions.hosting.windowsservices/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==",
|
|
||||||
"path": "microsoft.extensions.logging/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==",
|
|
||||||
"path": "microsoft.extensions.logging.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==",
|
|
||||||
"path": "microsoft.extensions.logging.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==",
|
|
||||||
"path": "microsoft.extensions.logging.console/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==",
|
|
||||||
"path": "microsoft.extensions.logging.debug/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==",
|
|
||||||
"path": "microsoft.extensions.logging.eventlog/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==",
|
|
||||||
"path": "microsoft.extensions.logging.eventsource/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==",
|
|
||||||
"path": "microsoft.extensions.options/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==",
|
|
||||||
"path": "microsoft.extensions.options.configurationextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==",
|
|
||||||
"path": "microsoft.extensions.primitives/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
|
||||||
"path": "newtonsoft.json/13.0.3",
|
|
||||||
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
|
|
||||||
"path": "newtonsoft.json.bson/1.0.2",
|
|
||||||
"hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==",
|
|
||||||
"path": "system.codedom/9.0.0",
|
|
||||||
"hashPath": "system.codedom.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==",
|
|
||||||
"path": "system.configuration.configurationmanager/9.0.0",
|
|
||||||
"hashPath": "system.configuration.configurationmanager.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==",
|
|
||||||
"path": "system.diagnostics.eventlog/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1SSqHtWZUdAC0j0UCw2ZWV4iOWB7nPZFkseqPsjdaypVu7ue1xsUJMobXkpHEDFNTrL0DpOdT7k6qDfqmFkQ6g==",
|
|
||||||
"path": "system.diagnostics.performancecounter/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.performancecounter.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-bVh4xAMI5grY5GZoklKcMBLirhC8Lqzp63Ft3zXJacwGAlLyFdF4k0qz4pnKIlO6HyL2Z4zqmHm9UkzEo6FFsA==",
|
|
||||||
"path": "system.management/9.0.0",
|
|
||||||
"hashPath": "system.management.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-CJW+x/F6fmRQ7N6K8paasTw9PDZp4t7G76UjGNlSDgoHPF0h08vTzLYbLZpOLEJSg35d5wy2jCXGo84EN05DpQ==",
|
|
||||||
"path": "system.security.cryptography.protecteddata/9.0.0",
|
|
||||||
"hashPath": "system.security.cryptography.protecteddata.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==",
|
|
||||||
"path": "system.serviceprocess.servicecontroller/9.0.0",
|
|
||||||
"hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-19
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeOptions": {
|
|
||||||
"tfm": "net9.0",
|
|
||||||
"frameworks": [
|
|
||||||
{
|
|
||||||
"name": "Microsoft.NETCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Microsoft.AspNetCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"configProperties": {
|
|
||||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
|
||||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"RunAsWindowsService": true,
|
|
||||||
"Kestrel": {
|
|
||||||
"Endpoints": {
|
|
||||||
"Http": {
|
|
||||||
"Url": "http://localhost:5000"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-648
@@ -1,648 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETCoreApp,Version=v9.0",
|
|
||||||
"signature": ""
|
|
||||||
},
|
|
||||||
"compilationOptions": {},
|
|
||||||
"targets": {
|
|
||||||
".NETCoreApp,Version=v9.0": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices": "9.0.0",
|
|
||||||
"System.Diagnostics.PerformanceCounter": "9.0.0",
|
|
||||||
"System.Management": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"ResourceMonitorService.dll": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.CSharp": "4.7.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.JsonPatch.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.JsonPatch": "9.0.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3",
|
|
||||||
"Newtonsoft.Json.Bson": "1.0.2"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventSource": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"System.ServiceProcess.ServiceController": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Hosting.WindowsServices.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
|
||||||
"assemblyVersion": "13.0.0.0",
|
|
||||||
"fileVersion": "13.0.3.27908"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"dependencies": {
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
|
|
||||||
"assemblyVersion": "1.0.0.0",
|
|
||||||
"fileVersion": "1.0.2.22727"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.CodeDom.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0",
|
|
||||||
"System.Security.Cryptography.ProtectedData": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Configuration.ConfigurationManager.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Configuration.ConfigurationManager": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.CodeDom": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Management.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Management.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/4UONYoAIeexPoAmbzBPkVGA6KAY7t0BM+1sr0fKss2V1ERCdcM+Llub4X5Ma+LJ60oPp6KzM0e3j+Pp/JHCNw==",
|
|
||||||
"path": "microsoft.aspnetcore.jsonpatch/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.jsonpatch.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTFDEmZi3GheCSPrBxzyE63+d5unln2vYldo/nOm1xet/4rpEk2oJYcwpclPQ13E+LZBF9XixkgwYTUwqznlWg==",
|
|
||||||
"path": "microsoft.aspnetcore.mvc.newtonsoftjson/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
|
|
||||||
"path": "microsoft.csharp/4.7.0",
|
|
||||||
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==",
|
|
||||||
"path": "microsoft.extensions.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==",
|
|
||||||
"path": "microsoft.extensions.configuration.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.binder/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==",
|
|
||||||
"path": "microsoft.extensions.configuration.commandline/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==",
|
|
||||||
"path": "microsoft.extensions.configuration.environmentvariables/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.fileextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==",
|
|
||||||
"path": "microsoft.extensions.configuration.json/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==",
|
|
||||||
"path": "microsoft.extensions.configuration.usersecrets/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==",
|
|
||||||
"path": "microsoft.extensions.diagnostics/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==",
|
|
||||||
"path": "microsoft.extensions.diagnostics.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.physical/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==",
|
|
||||||
"path": "microsoft.extensions.filesystemglobbing/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==",
|
|
||||||
"path": "microsoft.extensions.hosting/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==",
|
|
||||||
"path": "microsoft.extensions.hosting.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==",
|
|
||||||
"path": "microsoft.extensions.hosting.windowsservices/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==",
|
|
||||||
"path": "microsoft.extensions.logging/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==",
|
|
||||||
"path": "microsoft.extensions.logging.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==",
|
|
||||||
"path": "microsoft.extensions.logging.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==",
|
|
||||||
"path": "microsoft.extensions.logging.console/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==",
|
|
||||||
"path": "microsoft.extensions.logging.debug/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==",
|
|
||||||
"path": "microsoft.extensions.logging.eventlog/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==",
|
|
||||||
"path": "microsoft.extensions.logging.eventsource/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==",
|
|
||||||
"path": "microsoft.extensions.options/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==",
|
|
||||||
"path": "microsoft.extensions.options.configurationextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==",
|
|
||||||
"path": "microsoft.extensions.primitives/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
|
||||||
"path": "newtonsoft.json/13.0.3",
|
|
||||||
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
|
|
||||||
"path": "newtonsoft.json.bson/1.0.2",
|
|
||||||
"hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==",
|
|
||||||
"path": "system.codedom/9.0.0",
|
|
||||||
"hashPath": "system.codedom.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==",
|
|
||||||
"path": "system.configuration.configurationmanager/9.0.0",
|
|
||||||
"hashPath": "system.configuration.configurationmanager.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==",
|
|
||||||
"path": "system.diagnostics.eventlog/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1SSqHtWZUdAC0j0UCw2ZWV4iOWB7nPZFkseqPsjdaypVu7ue1xsUJMobXkpHEDFNTrL0DpOdT7k6qDfqmFkQ6g==",
|
|
||||||
"path": "system.diagnostics.performancecounter/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.performancecounter.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-bVh4xAMI5grY5GZoklKcMBLirhC8Lqzp63Ft3zXJacwGAlLyFdF4k0qz4pnKIlO6HyL2Z4zqmHm9UkzEo6FFsA==",
|
|
||||||
"path": "system.management/9.0.0",
|
|
||||||
"hashPath": "system.management.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-CJW+x/F6fmRQ7N6K8paasTw9PDZp4t7G76UjGNlSDgoHPF0h08vTzLYbLZpOLEJSg35d5wy2jCXGo84EN05DpQ==",
|
|
||||||
"path": "system.security.cryptography.protecteddata/9.0.0",
|
|
||||||
"hashPath": "system.security.cryptography.protecteddata.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==",
|
|
||||||
"path": "system.serviceprocess.servicecontroller/9.0.0",
|
|
||||||
"hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-19
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeOptions": {
|
|
||||||
"tfm": "net9.0",
|
|
||||||
"frameworks": [
|
|
||||||
{
|
|
||||||
"name": "Microsoft.NETCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Microsoft.AspNetCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"configProperties": {
|
|
||||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
|
||||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-8
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"RunAsWindowsService": true,
|
|
||||||
"Kestrel": {
|
|
||||||
"Endpoints": {
|
|
||||||
"Http": {
|
|
||||||
"Url": "http://*:5000"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-648
@@ -1,648 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETCoreApp,Version=v9.0",
|
|
||||||
"signature": ""
|
|
||||||
},
|
|
||||||
"compilationOptions": {},
|
|
||||||
"targets": {
|
|
||||||
".NETCoreApp,Version=v9.0": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices": "9.0.0",
|
|
||||||
"System.Diagnostics.PerformanceCounter": "9.0.0",
|
|
||||||
"System.Management": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"ResourceMonitorService.dll": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.CSharp": "4.7.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.JsonPatch.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.JsonPatch": "9.0.0",
|
|
||||||
"Newtonsoft.Json": "13.0.3",
|
|
||||||
"Newtonsoft.Json.Bson": "1.0.2"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52903"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventSource": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Hosting": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "9.0.0",
|
|
||||||
"System.ServiceProcess.ServiceController": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/Microsoft.Extensions.Hosting.WindowsServices.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "9.0.0",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Options": "9.0.0",
|
|
||||||
"Microsoft.Extensions.Primitives": "9.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
|
||||||
"assemblyVersion": "13.0.0.0",
|
|
||||||
"fileVersion": "13.0.3.27908"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"dependencies": {
|
|
||||||
"Newtonsoft.Json": "13.0.3"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
|
|
||||||
"assemblyVersion": "1.0.0.0",
|
|
||||||
"fileVersion": "1.0.2.22727"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.CodeDom.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0",
|
|
||||||
"System.Security.Cryptography.ProtectedData": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Configuration.ConfigurationManager.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Configuration.ConfigurationManager": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Diagnostics.PerformanceCounter.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.CodeDom": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Management.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.Management.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Diagnostics.EventLog": "9.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeTargets": {
|
|
||||||
"runtimes/win/lib/net9.0/System.ServiceProcess.ServiceController.dll": {
|
|
||||||
"rid": "win",
|
|
||||||
"assetType": "runtime",
|
|
||||||
"assemblyVersion": "9.0.0.0",
|
|
||||||
"fileVersion": "9.0.24.52809"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"ResourceMonitorService/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.JsonPatch/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/4UONYoAIeexPoAmbzBPkVGA6KAY7t0BM+1sr0fKss2V1ERCdcM+Llub4X5Ma+LJ60oPp6KzM0e3j+Pp/JHCNw==",
|
|
||||||
"path": "microsoft.aspnetcore.jsonpatch/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.jsonpatch.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.Mvc.NewtonsoftJson/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTFDEmZi3GheCSPrBxzyE63+d5unln2vYldo/nOm1xet/4rpEk2oJYcwpclPQ13E+LZBF9XixkgwYTUwqznlWg==",
|
|
||||||
"path": "microsoft.aspnetcore.mvc.newtonsoftjson/9.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.CSharp/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
|
|
||||||
"path": "microsoft.csharp/4.7.0",
|
|
||||||
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==",
|
|
||||||
"path": "microsoft.extensions.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==",
|
|
||||||
"path": "microsoft.extensions.configuration.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Binder/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.binder/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==",
|
|
||||||
"path": "microsoft.extensions.configuration.commandline/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==",
|
|
||||||
"path": "microsoft.extensions.configuration.environmentvariables/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==",
|
|
||||||
"path": "microsoft.extensions.configuration.fileextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.Json/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==",
|
|
||||||
"path": "microsoft.extensions.configuration.json/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==",
|
|
||||||
"path": "microsoft.extensions.configuration.usersecrets/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==",
|
|
||||||
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==",
|
|
||||||
"path": "microsoft.extensions.diagnostics/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==",
|
|
||||||
"path": "microsoft.extensions.diagnostics.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==",
|
|
||||||
"path": "microsoft.extensions.fileproviders.physical/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==",
|
|
||||||
"path": "microsoft.extensions.filesystemglobbing/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==",
|
|
||||||
"path": "microsoft.extensions.hosting/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==",
|
|
||||||
"path": "microsoft.extensions.hosting.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Hosting.WindowsServices/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-OQ7aTejEpkj1OPibhvKYhygUSoKQ+O5YYuBmJxOCC3+F5v7d4szYfvOGd8aegK8/ARFTJqpeXZq1wyIwEza6lg==",
|
|
||||||
"path": "microsoft.extensions.hosting.windowsservices/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.hosting.windowsservices.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==",
|
|
||||||
"path": "microsoft.extensions.logging/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==",
|
|
||||||
"path": "microsoft.extensions.logging.abstractions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Configuration/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==",
|
|
||||||
"path": "microsoft.extensions.logging.configuration/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Console/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==",
|
|
||||||
"path": "microsoft.extensions.logging.console/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.Debug/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==",
|
|
||||||
"path": "microsoft.extensions.logging.debug/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==",
|
|
||||||
"path": "microsoft.extensions.logging.eventlog/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Logging.EventSource/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==",
|
|
||||||
"path": "microsoft.extensions.logging.eventsource/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==",
|
|
||||||
"path": "microsoft.extensions.options/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==",
|
|
||||||
"path": "microsoft.extensions.options.configurationextensions/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.Primitives/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==",
|
|
||||||
"path": "microsoft.extensions.primitives/9.0.0",
|
|
||||||
"hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json/13.0.3": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
|
||||||
"path": "newtonsoft.json/13.0.3",
|
|
||||||
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Newtonsoft.Json.Bson/1.0.2": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
|
|
||||||
"path": "newtonsoft.json.bson/1.0.2",
|
|
||||||
"hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.CodeDom/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==",
|
|
||||||
"path": "system.codedom/9.0.0",
|
|
||||||
"hashPath": "system.codedom.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==",
|
|
||||||
"path": "system.configuration.configurationmanager/9.0.0",
|
|
||||||
"hashPath": "system.configuration.configurationmanager.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.EventLog/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==",
|
|
||||||
"path": "system.diagnostics.eventlog/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Diagnostics.PerformanceCounter/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-1SSqHtWZUdAC0j0UCw2ZWV4iOWB7nPZFkseqPsjdaypVu7ue1xsUJMobXkpHEDFNTrL0DpOdT7k6qDfqmFkQ6g==",
|
|
||||||
"path": "system.diagnostics.performancecounter/9.0.0",
|
|
||||||
"hashPath": "system.diagnostics.performancecounter.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Management/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-bVh4xAMI5grY5GZoklKcMBLirhC8Lqzp63Ft3zXJacwGAlLyFdF4k0qz4pnKIlO6HyL2Z4zqmHm9UkzEo6FFsA==",
|
|
||||||
"path": "system.management/9.0.0",
|
|
||||||
"hashPath": "system.management.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.ProtectedData/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-CJW+x/F6fmRQ7N6K8paasTw9PDZp4t7G76UjGNlSDgoHPF0h08vTzLYbLZpOLEJSg35d5wy2jCXGo84EN05DpQ==",
|
|
||||||
"path": "system.security.cryptography.protecteddata/9.0.0",
|
|
||||||
"hashPath": "system.security.cryptography.protecteddata.9.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.ServiceProcess.ServiceController/9.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-ciFstNZEWYf40HbwzdQLdgQpgpnjkleC1z0jMqBKRdkEQqQ6I/Aht0x9fTBODnaQTtcF+scvrdimoDbfNap/aQ==",
|
|
||||||
"path": "system.serviceprocess.servicecontroller/9.0.0",
|
|
||||||
"hashPath": "system.serviceprocess.servicecontroller.9.0.0.nupkg.sha512"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-19
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeOptions": {
|
|
||||||
"tfm": "net9.0",
|
|
||||||
"frameworks": [
|
|
||||||
{
|
|
||||||
"name": "Microsoft.NETCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Microsoft.AspNetCore.App",
|
|
||||||
"version": "9.0.0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"configProperties": {
|
|
||||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
|
||||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-8
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-16
@@ -1,16 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"RunAsWindowsService": true,
|
|
||||||
"Kestrel": {
|
|
||||||
"Endpoints": {
|
|
||||||
"Http": {
|
|
||||||
"Url": "http://*:5000"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -9,6 +9,15 @@ public static class NvmlWrapper
|
|||||||
[DllImport("nvml.dll", EntryPoint = "nvmlShutdown")]
|
[DllImport("nvml.dll", EntryPoint = "nvmlShutdown")]
|
||||||
public static extern int NvmlShutdown();
|
public static extern int NvmlShutdown();
|
||||||
|
|
||||||
|
// Get device count
|
||||||
|
/* [DllImport("nvml.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||||
|
private static extern int nvmlDeviceGetCount_v2(ref uint deviceCount); */
|
||||||
|
|
||||||
|
/* public static int NvmlDeviceGetCount(ref uint deviceCount)
|
||||||
|
{
|
||||||
|
return nvmlDeviceGetCount_v2(ref deviceCount);
|
||||||
|
} */
|
||||||
|
|
||||||
[DllImport("nvml.dll", EntryPoint = "nvmlDeviceGetHandleByIndex_v2")]
|
[DllImport("nvml.dll", EntryPoint = "nvmlDeviceGetHandleByIndex_v2")]
|
||||||
public static extern int NvmlDeviceGetHandleByIndex(int index, out IntPtr device);
|
public static extern int NvmlDeviceGetHandleByIndex(int index, out IntPtr device);
|
||||||
|
|
||||||
@@ -0,0 +1,119 @@
|
|||||||
|
# Resource Usage API
|
||||||
|
|
||||||
|
This project is a background service developed using ASP.NET Core that monitors system resource usage, such as CPU, RAM, GPU, and running games. The service provides APIs to fetch the current resource usage and kill specified processes.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- **Resource Monitoring**: Fetches detailed information about the system's resources, including:
|
||||||
|
- Current Time
|
||||||
|
- Computer Information (Machine Name, OS Version, Architecture, Processor Count)
|
||||||
|
- CPU Usage
|
||||||
|
- RAM Usage
|
||||||
|
- GPU Usage
|
||||||
|
- Currently Running Steam Games (if any)
|
||||||
|
|
||||||
|
- **Process Management**: Provides an API to kill processes by their process ID.
|
||||||
|
|
||||||
|
## Directory Structure
|
||||||
|
|
||||||
|
```
|
||||||
|
ResourceUsageAPI/
|
||||||
|
├── Worker.cs
|
||||||
|
├── Program.cs
|
||||||
|
├── Startup.cs
|
||||||
|
└── NvmlWrapper.cs
|
||||||
|
```
|
||||||
|
|
||||||
|
## Code Analysis
|
||||||
|
|
||||||
|
### Worker.cs
|
||||||
|
|
||||||
|
This file contains the main logic for monitoring system resources and exposing APIs.
|
||||||
|
|
||||||
|
- **Dependencies**: Uses `System.Diagnostics`, `Microsoft.AspNetCore.Builder`, `Newtonsoft.Json` among others.
|
||||||
|
- **Methods**:
|
||||||
|
- `ExecuteAsync`: Sets up the ASP.NET Core web application, defines routes for resource usage and process management, and runs the server.
|
||||||
|
- `GetComputerInfo`: Retrieves basic system information.
|
||||||
|
- `GetCpuUsage`: Fetches CPU usage and lists top three processes by CPU usage if usage is over 80%.
|
||||||
|
- `GetRamUsage`: Calculates RAM usage percentage.
|
||||||
|
- `GetTotalPhysicalMemory`: Retrieves total physical memory size.
|
||||||
|
- `GetGpuUsage`: Uses NVIDIA Management Library (NVML) to fetch GPU usage, temperature, and fan speed.
|
||||||
|
- `GetCurrentlyRunningGame`: Detects if a Steam game is running by checking process paths.
|
||||||
|
- `GetCurrentTime`: Returns the current time.
|
||||||
|
|
||||||
|
### Program.cs
|
||||||
|
|
||||||
|
This file sets up the hosting environment for the application.
|
||||||
|
|
||||||
|
- **Dependencies**: Uses `Microsoft.Extensions.DependencyInjection` and `Microsoft.Extensions.Hosting`.
|
||||||
|
- **Methods**:
|
||||||
|
- `Main`: Entry point of the application, builds and runs the host.
|
||||||
|
- `CreateHostBuilder`: Configures services and determines if the application should run as a Windows service based on command-line arguments or environment variables.
|
||||||
|
|
||||||
|
### Startup.cs
|
||||||
|
|
||||||
|
This file is not used in the current implementation since all routing and configuration are done within `Worker.cs`.
|
||||||
|
|
||||||
|
- **Dependencies**: Uses `Microsoft.AspNetCore.Builder` and `Microsoft.AspNetCore.Hosting`.
|
||||||
|
- **Methods**:
|
||||||
|
- `ConfigureServices`: Placeholder method for adding services.
|
||||||
|
- `Configure`: Placeholder method for configuring application HTTP requests pipeline.
|
||||||
|
|
||||||
|
### NvmlWrapper.cs
|
||||||
|
|
||||||
|
This file provides a C# wrapper for the NVIDIA Management Library (NVML) functions.
|
||||||
|
|
||||||
|
- **Dependencies**: Uses `System` and `System.Runtime.InteropServices`.
|
||||||
|
- **Methods**:
|
||||||
|
- Importing NVML DLL functions to interact with GPU hardware.
|
||||||
|
- Structures like `NvmlUtilization` are defined for handling utilization rates returned by NVML.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
1. **Build the Project**: Use your preferred .NET build tool (e.g., `dotnet build`) to compile the project.
|
||||||
|
2. **Run the Application**:
|
||||||
|
- To run as a console application, execute the compiled binary directly.
|
||||||
|
- To run as a Windows service, use the command-line argument `--windows-service` or set the environment variable `RUN_AS_SERVICE` to `"true"`.
|
||||||
|
|
||||||
|
## APIs
|
||||||
|
|
||||||
|
- **Get Resource Usage**:
|
||||||
|
- URL: `/api/resource-usage`
|
||||||
|
- Method: GET
|
||||||
|
- Description: Retrieves current system resource usage.
|
||||||
|
|
||||||
|
- **Kill Process**:
|
||||||
|
- URL: `/api/kill-process`
|
||||||
|
- Method: POST
|
||||||
|
- Body: JSON with the process ID (`{"id": "1234"}`)
|
||||||
|
- Description: Kills the specified process.
|
||||||
|
|
||||||
|
## Important Notes
|
||||||
|
|
||||||
|
- Ensure that the NVIDIA Management Library (NVML) is installed on the system for GPU monitoring to work.
|
||||||
|
- The application allows CORS from all origins, which should be configured securely in production environments.
|
||||||
|
- Error handling and logging are minimal; consider adding robust error handling and logging mechanisms for a production-ready solution.
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
Feel free to contribute by opening issues or submitting pull requests. Make sure to follow the project's coding style and best practices.
|
||||||
|
|
||||||
|
|
||||||
|
# devnote
|
||||||
|
dotnet run
|
||||||
|
git add .
|
||||||
|
git commit -m "Add steam running games"
|
||||||
|
git push origin master
|
||||||
|
dotnet publish -c Release -o ./publish
|
||||||
|
|
||||||
|
# devtest
|
||||||
|
Invoke-WebRequest -Uri "http://localhost:5000/api/kill-process" -Method POST -Body "1234" -Headers @{ "X-API-KEY" = "b7f3e8a1-4c2d-4d9f-9a6e-2a1c5d7f8e9a" }
|
||||||
|
|
||||||
|
Invoke-WebRequest -Uri "http://192.168.50.52:5000/api/resource-usage" -Method GET -Headers @{ "X-API-KEY" = "b7f3e8a1-4c2d-4d9f-9a6e-2a1c5d7f8e9a" }
|
||||||
|
|
||||||
|
Use 'shutdown', 'restart', or 'cancel'.
|
||||||
|
Invoke-WebRequest -Uri "http://192.168.50.52:5000/api/force-shutdown" `
|
||||||
|
-Method POST `
|
||||||
|
-Headers @{ "X-API-KEY" = "b7f3e8a1-4c2d-4d9f-9a6e-2a1c5d7f8e9a" } `
|
||||||
|
-Body '{"Action": "shutdown", "DelaySeconds": 120}' `
|
||||||
|
-ContentType "application/json"
|
||||||
@@ -0,0 +1,445 @@
|
|||||||
|
using System.Diagnostics;
|
||||||
|
using Microsoft.AspNetCore.Builder;
|
||||||
|
using Microsoft.AspNetCore.Hosting;
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using Microsoft.Extensions.Hosting;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using Microsoft.AspNetCore.Http;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
using System.Management;
|
||||||
|
|
||||||
|
namespace ResourceMonitorService
|
||||||
|
{
|
||||||
|
public class Worker : BackgroundService
|
||||||
|
{
|
||||||
|
private readonly IHostApplicationLifetime _lifetime;
|
||||||
|
|
||||||
|
public Worker(IHostApplicationLifetime lifetime)
|
||||||
|
{
|
||||||
|
_lifetime = lifetime;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
|
||||||
|
{
|
||||||
|
var builder = WebApplication.CreateBuilder();
|
||||||
|
builder.Services.AddCors(options =>
|
||||||
|
{
|
||||||
|
options.AddPolicy("AllowAllOrigins",
|
||||||
|
builder => builder
|
||||||
|
.WithOrigins("http://localhost:4200","http://192.168.50.52:4200","http://vmwin11:4200")
|
||||||
|
.AllowAnyHeader()
|
||||||
|
.AllowAnyMethod());
|
||||||
|
});
|
||||||
|
builder.Services.AddControllers().AddNewtonsoftJson();
|
||||||
|
|
||||||
|
// Read the API key from appsettings.json
|
||||||
|
var configuration = builder.Configuration;
|
||||||
|
var apiKey = configuration["ApiSettings:ApiKey"];
|
||||||
|
|
||||||
|
var app = builder.Build();
|
||||||
|
|
||||||
|
// Middleware to validate API key
|
||||||
|
// This middleware checks for the presence of the API key in the request headers
|
||||||
|
// and compares it with the expected API key from appsettings.json.
|
||||||
|
// If the API key is missing or invalid, it returns a 401 Unauthorized response.
|
||||||
|
//
|
||||||
|
/* app.Use(async (context, next) =>
|
||||||
|
{
|
||||||
|
if (!context.Request.Headers.TryGetValue("X-API-KEY", out var extractedApiKey) || extractedApiKey != apiKey)
|
||||||
|
{
|
||||||
|
context.Response.StatusCode = StatusCodes.Status401Unauthorized;
|
||||||
|
await context.Response.WriteAsync("Unauthorized: Invalid API Key");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
await next();
|
||||||
|
}); */
|
||||||
|
// Apply CORS policy to allow all origins
|
||||||
|
app.UseCors("AllowAllOrigins");
|
||||||
|
|
||||||
|
app.MapGet("/api/resource-usage", async context =>
|
||||||
|
{
|
||||||
|
var currentTime = GetCurrentTime();
|
||||||
|
|
||||||
|
var computerInfo = GetComputerInfo();
|
||||||
|
var cpuUsage = GetCpuUsage();
|
||||||
|
var ramUsage = GetRamUsage();
|
||||||
|
var gpuUsage = GetGpuUsage();
|
||||||
|
var runningGame = GetCurrentlyRunningGame();
|
||||||
|
|
||||||
|
var resourceUsage = new
|
||||||
|
{
|
||||||
|
CurrentTime = currentTime,
|
||||||
|
ComputerInfo = computerInfo,
|
||||||
|
CPU = cpuUsage,
|
||||||
|
RAM = ramUsage,
|
||||||
|
GPU = gpuUsage,
|
||||||
|
CurrentlyRunningGame = runningGame
|
||||||
|
};
|
||||||
|
|
||||||
|
var json = JsonConvert.SerializeObject(resourceUsage);
|
||||||
|
context.Response.ContentType = "application/json";
|
||||||
|
await context.Response.WriteAsync(json);
|
||||||
|
});
|
||||||
|
|
||||||
|
app.MapPost("/api/kill-process", async context =>
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var idStr = await new StreamReader(context.Request.Body).ReadToEndAsync();
|
||||||
|
int processId = Convert.ToInt32(idStr);
|
||||||
|
|
||||||
|
Process[] processes = Process.GetProcesses().Where(p => p.Id == processId).ToArray();
|
||||||
|
|
||||||
|
if (processes.Length > 0)
|
||||||
|
{
|
||||||
|
foreach (var process in processes)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
process.Kill();
|
||||||
|
await context.Response.WriteAsync($"Process with ID {processId} has been killed.");
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
await context.Response.WriteAsync($"Error killing process with ID {processId}: {ex.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
await context.Response.WriteAsync($"No process found with ID {processId}.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
await context.Response.WriteAsync($"An error occurred: {ex.Message}");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
/* curl -X POST http://localhost:5000/api/force-shutdown -d "5000" */
|
||||||
|
/* Invoke-WebRequest -Uri "http://localhost:5000/api/force-shutdown" -Method POST -Body "50000" -ContentType "text/plain" */
|
||||||
|
app.MapPost("/api/force-shutdown", async context =>
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var requestBody = await new StreamReader(context.Request.Body).ReadToEndAsync();
|
||||||
|
var parameters = JsonConvert.DeserializeObject<dynamic>(requestBody);
|
||||||
|
|
||||||
|
string? action = parameters?.Action?.ToString()?.ToLower(); // "shutdown" or "restart"
|
||||||
|
int delaySeconds = parameters?.DelaySeconds ?? 0;
|
||||||
|
|
||||||
|
// Validate action input
|
||||||
|
if (action != "shutdown" && action != "restart" && action != "cancel")
|
||||||
|
{
|
||||||
|
await context.Response.WriteAsync("Invalid action. Use 'shutdown', 'restart', or 'cancel'.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//if action is stop, then cancel the shutdown
|
||||||
|
if (action == "cancel")
|
||||||
|
{
|
||||||
|
var processStartInfoCancel = new ProcessStartInfo
|
||||||
|
{
|
||||||
|
FileName = "shutdown",
|
||||||
|
Arguments = "/a",
|
||||||
|
CreateNoWindow = true,
|
||||||
|
UseShellExecute = false
|
||||||
|
};
|
||||||
|
|
||||||
|
Process.Start(processStartInfoCancel);
|
||||||
|
await context.Response.WriteAsync("Shutdown cancelled.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validate delay input
|
||||||
|
if (delaySeconds < 0)
|
||||||
|
{
|
||||||
|
await context.Response.WriteAsync("Delay must be a non-negative integer.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Determine the shutdown command
|
||||||
|
string shutdownCommand = action == "shutdown" ? $"/s /f /t {delaySeconds}" : $"/r /f /t {delaySeconds}";
|
||||||
|
|
||||||
|
var processStartInfo = new ProcessStartInfo
|
||||||
|
{
|
||||||
|
FileName = "shutdown",
|
||||||
|
Arguments = shutdownCommand,
|
||||||
|
CreateNoWindow = true,
|
||||||
|
UseShellExecute = false
|
||||||
|
};
|
||||||
|
|
||||||
|
Process.Start(processStartInfo);
|
||||||
|
|
||||||
|
await context.Response.WriteAsync($"{action.ToUpper()} command executed with a delay of {delaySeconds} seconds.");
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
await context.Response.WriteAsync($"An error occurred: {ex.Message}");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
app.MapGet("/api/stop", async context =>
|
||||||
|
{
|
||||||
|
await context.Response.WriteAsync("Stopping the service...");
|
||||||
|
_lifetime.StopApplication();
|
||||||
|
});
|
||||||
|
|
||||||
|
app.MapGet("/", () => "Resource Monitor Service is running.");
|
||||||
|
app.MapGet("/api/current-time", () => Results.Ok(GetCurrentTime()));
|
||||||
|
app.MapGet("/api/computer-info", () => Results.Ok(GetComputerInfo()));
|
||||||
|
app.MapGet("/api/cpu-usage", () => Results.Ok(GetCpuUsage()));
|
||||||
|
app.MapGet("/api/ram-usage", () => Results.Ok(GetRamUsage()));
|
||||||
|
app.MapGet("/api/gpu-usage", () => Results.Ok(GetGpuUsage()));
|
||||||
|
app.MapGet("/api/running-game", () => Results.Ok(GetCurrentlyRunningGame()));
|
||||||
|
app.MapGet("/api/total-physical-memory", () => Results.Ok(GetTotalPhysicalMemory()));
|
||||||
|
app.MapGet("/api/total-available-memory", () => Results.Ok(new { TotalAvailableMemory = Environment.WorkingSet }));
|
||||||
|
|
||||||
|
app.MapGet("/health", () => Results.Ok("Service is healthy."));
|
||||||
|
|
||||||
|
|
||||||
|
_ = app.RunAsync(stoppingToken);
|
||||||
|
|
||||||
|
await Task.Delay(Timeout.Infinite, stoppingToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
private object GetComputerInfo()
|
||||||
|
{
|
||||||
|
return new
|
||||||
|
{
|
||||||
|
MachineName = Environment.MachineName,
|
||||||
|
OSVersion = RuntimeInformation.OSDescription,
|
||||||
|
OSArchitecture = RuntimeInformation.OSArchitecture.ToString(),
|
||||||
|
ProcessorCount = Environment.ProcessorCount
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private object GetCpuUsage()
|
||||||
|
{
|
||||||
|
#pragma warning disable CA1416 // Validate platform compatibility
|
||||||
|
var cpuCounter = new PerformanceCounter("Processor", "% Processor Time", "_Total");
|
||||||
|
#pragma warning restore CA1416 // Validate platform compatibility
|
||||||
|
#pragma warning disable CA1416 // Validate platform compatibility
|
||||||
|
cpuCounter.NextValue();
|
||||||
|
#pragma warning restore CA1416 // Validate platform compatibility
|
||||||
|
Thread.Sleep(1000); // Wait a second to get a valid reading
|
||||||
|
|
||||||
|
#pragma warning disable CA1416 // Validate platform compatibility
|
||||||
|
var usage = cpuCounter.NextValue();
|
||||||
|
#pragma warning restore CA1416 // Validate platform compatibility
|
||||||
|
if (usage > 80)
|
||||||
|
{
|
||||||
|
// Get the current processes and sort them by CPU usage in descending order
|
||||||
|
var processes = Process.GetProcesses()
|
||||||
|
.Select(p =>
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return new
|
||||||
|
{
|
||||||
|
Process = p,
|
||||||
|
TotalProcessorTime = p.TotalProcessorTime
|
||||||
|
};
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
return null; // Skip processes that throw exceptions
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.Where(p => p != null)
|
||||||
|
.OrderByDescending(p => p!.TotalProcessorTime)
|
||||||
|
.Select(p => p!.Process)
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
// Create a new anonymous type containing the CPU usage, RAM usage, and the top 3 highest CPU-using processes
|
||||||
|
return new
|
||||||
|
{
|
||||||
|
Usage = usage,
|
||||||
|
Process1 = processes.Count > 0 ? new
|
||||||
|
{
|
||||||
|
Name = processes[0].ProcessName,
|
||||||
|
TotalProcessorTime = processes[0].TotalProcessorTime,
|
||||||
|
WorkingSet64 = processes[0].WorkingSet64 / (1024 * 1024) // Convert to MB
|
||||||
|
} : null,
|
||||||
|
Process2 = processes.Count > 1 ? new
|
||||||
|
{
|
||||||
|
Name = processes[1].ProcessName,
|
||||||
|
TotalProcessorTime = processes[1].TotalProcessorTime,
|
||||||
|
WorkingSet64 = processes[1].WorkingSet64 / (1024 * 1024) // Convert to MB
|
||||||
|
} : null,
|
||||||
|
Process3 = processes.Count > 2 ? new
|
||||||
|
{
|
||||||
|
Name = processes[2].ProcessName,
|
||||||
|
TotalProcessorTime = processes[2].TotalProcessorTime,
|
||||||
|
WorkingSet64 = processes[2].WorkingSet64 / (1024 * 1024) // Convert to MB
|
||||||
|
} : null
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return new
|
||||||
|
{
|
||||||
|
Usage = usage
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private float GetRamUsage()
|
||||||
|
{
|
||||||
|
#pragma warning disable CA1416 // Validate platform compatibility
|
||||||
|
var ramCounter = new PerformanceCounter("Memory", "Available MBytes");
|
||||||
|
#pragma warning restore CA1416 // Validate platform compatibility
|
||||||
|
var totalMemory = GetTotalPhysicalMemory();
|
||||||
|
#pragma warning disable CA1416 // Validate platform compatibility
|
||||||
|
var availableMemory = ramCounter.NextValue() * 1024 * 1024;
|
||||||
|
#pragma warning restore CA1416 // Validate platform compatibility
|
||||||
|
return (float)(totalMemory - availableMemory) / totalMemory * 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
private ulong GetTotalPhysicalMemory()
|
||||||
|
{
|
||||||
|
ulong totalMemory = 0;
|
||||||
|
#pragma warning disable CA1416 // Validate platform compatibility
|
||||||
|
var searcher = new ManagementObjectSearcher("SELECT TotalPhysicalMemory FROM Win32_ComputerSystem");
|
||||||
|
#pragma warning restore CA1416 // Validate platform compatibility
|
||||||
|
#pragma warning disable CA1416 // Validate platform compatibility
|
||||||
|
foreach (var obj in searcher.Get())
|
||||||
|
{
|
||||||
|
#pragma warning disable CA1416 // Validate platform compatibility
|
||||||
|
totalMemory = (ulong)obj["TotalPhysicalMemory"];
|
||||||
|
#pragma warning restore CA1416 // Validate platform compatibility
|
||||||
|
}
|
||||||
|
#pragma warning restore CA1416 // Validate platform compatibility
|
||||||
|
return totalMemory;
|
||||||
|
}
|
||||||
|
|
||||||
|
private object GetGpuUsage()
|
||||||
|
{
|
||||||
|
/* if (!IsNvidiaGpuPresent())
|
||||||
|
{
|
||||||
|
return new
|
||||||
|
{
|
||||||
|
Usage = 0,
|
||||||
|
Temperature = 0,
|
||||||
|
FanSpeed = 0,
|
||||||
|
IsAvailable = false,
|
||||||
|
Message = "No NVIDIA GPU detected"
|
||||||
|
};
|
||||||
|
} */
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
|
||||||
|
NvmlWrapper.NvmlInit();
|
||||||
|
IntPtr device;
|
||||||
|
NvmlWrapper.NvmlDeviceGetHandleByIndex(0, out device);
|
||||||
|
NvmlWrapper.NvmlUtilization utilization;
|
||||||
|
NvmlWrapper.NvmlDeviceGetUtilizationRates(device, out utilization);
|
||||||
|
|
||||||
|
uint temperature;
|
||||||
|
NvmlWrapper.NvmlDeviceGetTemperature(device, 0, out temperature);
|
||||||
|
|
||||||
|
uint fanSpeed;
|
||||||
|
NvmlWrapper.NvmlDeviceGetFanSpeed(device, out fanSpeed);
|
||||||
|
|
||||||
|
NvmlWrapper.NvmlShutdown();
|
||||||
|
|
||||||
|
return new
|
||||||
|
{
|
||||||
|
Usage = utilization.Gpu,
|
||||||
|
Temperature = temperature,
|
||||||
|
FanSpeed = fanSpeed,
|
||||||
|
IsAvailable = false,
|
||||||
|
Error = ""
|
||||||
|
};
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return new
|
||||||
|
{
|
||||||
|
Usage = 0,
|
||||||
|
Temperature = 0,
|
||||||
|
FanSpeed = 0,
|
||||||
|
IsAvailable = false,
|
||||||
|
Error = ex.Message
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* private bool IsNvidiaGpuPresent()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// Method 1: Try to initialize NVML
|
||||||
|
NvmlWrapper.NvmlInit();
|
||||||
|
uint deviceCount = 0;
|
||||||
|
NvmlWrapper.NvmlDeviceGetCount(ref deviceCount);
|
||||||
|
NvmlWrapper.NvmlShutdown();
|
||||||
|
|
||||||
|
return deviceCount > 0;
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
// Method 2: Fallback to checking using WMI
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (var searcher = new ManagementObjectSearcher("SELECT * FROM Win32_VideoController WHERE Name LIKE '%NVIDIA%'"))
|
||||||
|
{
|
||||||
|
var collection = searcher.Get();
|
||||||
|
return collection.Count > 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} */
|
||||||
|
|
||||||
|
private object GetCurrentlyRunningGame()
|
||||||
|
{
|
||||||
|
var processes = Process.GetProcesses();
|
||||||
|
|
||||||
|
foreach (var process in processes)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
#pragma warning disable CS8602 // Dereference of a possibly null reference.
|
||||||
|
var filePath = process.MainModule.FileName;
|
||||||
|
#pragma warning restore CS8602 // Dereference of a possibly null reference.
|
||||||
|
if (filePath.Contains(@"\steamapps\common\"))
|
||||||
|
{
|
||||||
|
// Extract the game directory name
|
||||||
|
var parts = filePath.Split(new[] { @"\steamapps\common\" }, StringSplitOptions.None);
|
||||||
|
if (parts.Length > 1)
|
||||||
|
{
|
||||||
|
var gamePath = parts[1];
|
||||||
|
var gameName = gamePath.Split(Path.DirectorySeparatorChar)[0];
|
||||||
|
return new
|
||||||
|
{
|
||||||
|
GameName = gameName,
|
||||||
|
ExecutableName = Path.GetFileName(filePath),
|
||||||
|
FullPath = filePath,
|
||||||
|
ProcessId = process.Id,
|
||||||
|
MemoryUsage = process.WorkingSet64 / (1024 * 1024) + " MB", // Memory usage in MB
|
||||||
|
CpuTime = process.TotalProcessorTime.ToString(),
|
||||||
|
StartTime = process.StartTime.ToString("G"), // General date/time pattern
|
||||||
|
UserName = Environment.UserName // The user running the process
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
// Handle access exceptions or continue if not important
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "No Steam game is currently running.";
|
||||||
|
}
|
||||||
|
private string GetCurrentTime()
|
||||||
|
{
|
||||||
|
return DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -12,5 +12,8 @@
|
|||||||
"Url": "http://*:5000"
|
"Url": "http://*:5000"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"ApiSettings": {
|
||||||
|
"ApiKey": "b7f3e8a1-4c2d-4d9f-9a6e-2a1c5d7f8e9a"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
# PowerShell script to create a new inbound rule in Windows Firewall
|
# PowerShell script to create a new inbound rule in Windows Firewall
|
||||||
$port = 5000
|
$port = 5000
|
||||||
$ruleName = "ResourceMonitorService"
|
$ruleName = "ResourceMonitorServicePublish"
|
||||||
if (Get-NetFirewallRule -DisplayName $ruleName) {
|
if (Get-NetFirewallRule -DisplayName $ruleName) {
|
||||||
Write-Host "Rule already exists, not creating a new one"
|
Write-Host "Rule already exists, not creating a new one"
|
||||||
} else {
|
} else {
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
sc create ResourceMonitorService binPath="%~dp0ResourceMonitorService.exe --windows-service" start= auto
|
||||||
|
sc description ResourceMonitorService "A service that monitors system resource usage and exposes it via a web API."
|
||||||
|
|
||||||
|
|
||||||
@@ -12,5 +12,8 @@
|
|||||||
"Url": "http://*:5000"
|
"Url": "http://*:5000"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"ApiSettings": {
|
||||||
|
"ApiKey": "b7f3e8a1-4c2d-4d9f-9a6e-2a1c5d7f8e9a"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -12,5 +12,8 @@
|
|||||||
"Url": "http://*:5000"
|
"Url": "http://*:5000"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"ApiSettings": {
|
||||||
|
"ApiKey": "b7f3e8a1-4c2d-4d9f-9a6e-2a1c5d7f8e9a"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+3
@@ -12,5 +12,8 @@
|
|||||||
"Url": "http://*:5000"
|
"Url": "http://*:5000"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"ApiSettings": {
|
||||||
|
"ApiKey": "b7f3e8a1-4c2d-4d9f-9a6e-2a1c5d7f8e9a"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
import dynamic from 'next/dynamic';
|
|
||||||
|
|
||||||
const components = {
|
|
||||||
// other components
|
|
||||||
resourceUsage: dynamic(() => import('./resourceUsage/component')),
|
|
||||||
yourwidget: dynamic(() => import("./yourwidget/component"))
|
|
||||||
};
|
|
||||||
|
|
||||||
export default components;
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
import resourceUsage from "./resourceUsage/widget";
|
|
||||||
import yourwidget from "./yourwidget/widget";
|
|
||||||
const widgets = {
|
|
||||||
// other widgets
|
|
||||||
resourceUsage: resourceUsage,
|
|
||||||
yourwidget: yourwidget
|
|
||||||
};
|
|
||||||
|
|
||||||
export default widgets;
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
import { useTranslation } from "next-i18next";
|
|
||||||
import Container from "components/services/widget/container";
|
|
||||||
import Block from "components/services/widget/block";
|
|
||||||
import useWidgetAPI from "utils/proxy/use-widget-api";
|
|
||||||
|
|
||||||
export default function Component({ service }) {
|
|
||||||
const { t } = useTranslation();
|
|
||||||
const { widget } = service;
|
|
||||||
const { data, error } = useWidgetAPI(widget, "info");
|
|
||||||
|
|
||||||
if (error) {
|
|
||||||
return <Container service={service} error={error} />;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!data) {
|
|
||||||
return (
|
|
||||||
<Container service={service}>
|
|
||||||
<Block label="Loading..." />
|
|
||||||
</Container>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Container service={service}>
|
|
||||||
<Block label="Machine Name" value={data.ComputerInfo.MachineName} />
|
|
||||||
<Block label="OS Version" value={data.ComputerInfo.OSVersion} />
|
|
||||||
<Block label="OS Architecture" value={data.ComputerInfo.OSArchitecture} />
|
|
||||||
<Block label="Processor Count" value={data.ComputerInfo.ProcessorCount} />
|
|
||||||
<Block label="CPU Usage" value={data.CPU} />
|
|
||||||
<Block label="RAM Usage" value={data.RAM} />
|
|
||||||
<Block label="GPU Usage" value={data.GPU.Usage} />
|
|
||||||
<Block label="GPU Temperature" value={data.GPU.Temperature} />
|
|
||||||
<Block label="GPU Fan Speed" value={data.GPU.FanSpeed} />
|
|
||||||
<Block label="Currently Running Game" value={data.CurrentlyRunningGame} />
|
|
||||||
</Container>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
import genericProxyHandler from "utils/proxy/handlers/generic";
|
|
||||||
|
|
||||||
const widget = {
|
|
||||||
api: "http://192.168.50.201:5000/api/resource-usage",
|
|
||||||
proxyHandler: genericProxyHandler,
|
|
||||||
mappings: {
|
|
||||||
info: {
|
|
||||||
endpoint: ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default widget;
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
import { useTranslation } from "next-i18next";
|
|
||||||
|
|
||||||
import Container from "components/services/widget/container";
|
|
||||||
import Block from "components/services/widget/block";
|
|
||||||
import useWidgetAPI from "utils/proxy/use-widget-api";
|
|
||||||
|
|
||||||
export default function Component({ service }) {
|
|
||||||
const { t } = useTranslation();
|
|
||||||
const { widget } = service;
|
|
||||||
const { data, error } = useWidgetAPI(widget, "info");
|
|
||||||
|
|
||||||
if (error) {
|
|
||||||
return <Container service={service} error={error} />;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!data) {
|
|
||||||
return (
|
|
||||||
<Container service={service}>
|
|
||||||
<Block label="yourwidget.key1" />
|
|
||||||
<Block label="yourwidget.key2" />
|
|
||||||
<Block label="yourwidget.key3" />
|
|
||||||
</Container>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Container service={service}>
|
|
||||||
<Block label="yourwidget.key1" value={t("common.number", { value: data.key1 })} />
|
|
||||||
<Block label="yourwidget.key2" value={t("common.number", { value: data.key2 })} />
|
|
||||||
<Block label="yourwidget.key3" value={t("common.number", { value: data.key3 })} />
|
|
||||||
</Container>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
import genericProxyHandler from "utils/proxy/handlers/generic";
|
|
||||||
|
|
||||||
const widget = {
|
|
||||||
api: "{url}/{endpoint}" ,
|
|
||||||
proxyHandler: genericProxyHandler ,
|
|
||||||
|
|
||||||
mappings: {
|
|
||||||
info: {
|
|
||||||
endpoint: "v1/info" ,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default widget;
|
|
||||||
Reference in New Issue
Block a user