src
This commit is contained in:
parent
cd9977f71f
commit
735dfa54c5
66 changed files with 2548 additions and 0 deletions
27
src/dotnet.worker.sln
Normal file
27
src/dotnet.worker.sln
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.5.2.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test.worker", ".worker\test.worker.csproj", "{74107446-02DC-BE26-B792-8CE657A1C25E}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{74107446-02DC-BE26-B792-8CE657A1C25E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{74107446-02DC-BE26-B792-8CE657A1C25E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{74107446-02DC-BE26-B792-8CE657A1C25E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{74107446-02DC-BE26-B792-8CE657A1C25E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{74107446-02DC-BE26-B792-8CE657A1C25E} = {827E0CD3-B72D-47B6-A68D-7590B98EB39B}
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {099751BD-F2A1-4C29-9C73-DA04A3F0BCE3}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
15
src/worker/Dockerfile
Normal file
15
src/worker/Dockerfile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
|
||||
WORKDIR /App
|
||||
|
||||
# Copy everything
|
||||
COPY . ./
|
||||
# Restore as distinct layers
|
||||
RUN dotnet restore
|
||||
# Build and publish a release
|
||||
RUN dotnet publish -o out
|
||||
|
||||
# Build runtime image
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:9.0
|
||||
WORKDIR /App
|
||||
COPY --from=build /App/out .
|
||||
ENTRYPOINT ["dotnet", "test.worker.dll"]
|
||||
13
src/worker/Program.cs
Normal file
13
src/worker/Program.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
namespace test.worker;
|
||||
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
var builder = Host.CreateApplicationBuilder(args);
|
||||
builder.Services.AddHostedService<Worker>();
|
||||
|
||||
var host = builder.Build();
|
||||
host.Run();
|
||||
}
|
||||
}
|
||||
12
src/worker/Properties/launchSettings.json
Normal file
12
src/worker/Properties/launchSettings.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"$schema": "https://json.schemastore.org/launchsettings.json",
|
||||
"profiles": {
|
||||
"test.worker": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"environmentVariables": {
|
||||
"DOTNET_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
23
src/worker/Worker.cs
Normal file
23
src/worker/Worker.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
namespace test.worker;
|
||||
|
||||
public class Worker : BackgroundService
|
||||
{
|
||||
private readonly ILogger<Worker> _logger;
|
||||
|
||||
public Worker(ILogger<Worker> logger)
|
||||
{
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
|
||||
{
|
||||
while (!stoppingToken.IsCancellationRequested)
|
||||
{
|
||||
if (_logger.IsEnabled(LogLevel.Information))
|
||||
{
|
||||
_logger.LogInformation("Worker running at: {time}", DateTimeOffset.Now);
|
||||
}
|
||||
await Task.Delay(1000, stoppingToken);
|
||||
}
|
||||
}
|
||||
}
|
||||
8
src/worker/appsettings.Development.json
Normal file
8
src/worker/appsettings.Development.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
}
|
||||
}
|
||||
8
src/worker/appsettings.json
Normal file
8
src/worker/appsettings.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Json.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Json.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Physical.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Physical.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Hosting.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Hosting.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Console.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Console.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Debug.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Debug.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.EventLog.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.EventLog.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.EventSource.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.EventSource.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Options.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Options.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll
Executable file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/System.Diagnostics.EventLog.dll
Executable file
BIN
src/worker/bin/Debug/net9.0/System.Diagnostics.EventLog.dll
Executable file
Binary file not shown.
8
src/worker/bin/Debug/net9.0/appsettings.Development.json
Normal file
8
src/worker/bin/Debug/net9.0/appsettings.Development.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
}
|
||||
}
|
||||
8
src/worker/bin/Debug/net9.0/appsettings.json
Normal file
8
src/worker/bin/Debug/net9.0/appsettings.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/test.worker
Executable file
BIN
src/worker/bin/Debug/net9.0/test.worker
Executable file
Binary file not shown.
603
src/worker/bin/Debug/net9.0/test.worker.deps.json
Normal file
603
src/worker/bin/Debug/net9.0/test.worker.deps.json
Normal file
|
|
@ -0,0 +1,603 @@
|
|||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v9.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v9.0": {
|
||||
"test.worker/1.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Hosting": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"test.worker.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Primitives": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Binder/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.6",
|
||||
"Microsoft.Extensions.Primitives": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Json/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.6",
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.Json.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.Json": "9.0.6",
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.6": {
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Diagnostics/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.6",
|
||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Diagnostics.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Options": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.FileProviders.Physical/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.FileSystemGlobbing": "9.0.6",
|
||||
"Microsoft.Extensions.Primitives": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.6": {
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Hosting/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.Binder": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.CommandLine": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.Json": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.UserSecrets": "9.0.6",
|
||||
"Microsoft.Extensions.DependencyInjection": "9.0.6",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Diagnostics": "9.0.6",
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.6",
|
||||
"Microsoft.Extensions.Hosting.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Logging": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.Configuration": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.Console": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.Debug": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.EventLog": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.EventSource": "9.0.6",
|
||||
"Microsoft.Extensions.Options": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Hosting.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Options": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Configuration/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.Binder": "9.0.6",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Logging": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Options": "9.0.6",
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Console/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Logging": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.Configuration": "9.0.6",
|
||||
"Microsoft.Extensions.Options": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.Console.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Debug/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Logging": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.EventLog/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Logging": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Options": "9.0.6",
|
||||
"System.Diagnostics.EventLog": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.EventSource/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Logging": "9.0.6",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Options": "9.0.6",
|
||||
"Microsoft.Extensions.Primitives": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Options/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Primitives": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Options.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.6": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Configuration.Binder": "9.0.6",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
|
||||
"Microsoft.Extensions.Options": "9.0.6",
|
||||
"Microsoft.Extensions.Primitives": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/9.0.6": {
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Primitives.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.EventLog/9.0.6": {
|
||||
"runtime": {
|
||||
"lib/net9.0/System.Diagnostics.EventLog.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
},
|
||||
"runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"test.worker/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.Extensions.Configuration/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-VWB5jdkxHsRiuoniTqwOL32R4OWyp5If/bAucLjRJczRVNcwb8iCXKLjn3Inv8fv+jHMVMnvQLg7xhSys+y5PA==",
|
||||
"path": "microsoft.extensions.configuration/9.0.6",
|
||||
"hashPath": "microsoft.extensions.configuration.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-3GgMIi2jP8g1fBW93Z9b9Unamc0SIsgyhiCmC91gq4loTixK9vQMuxxUsfJ1kRGwn+/FqLKwOHqmn0oYWn3Fvw==",
|
||||
"path": "microsoft.extensions.configuration.abstractions/9.0.6",
|
||||
"hashPath": "microsoft.extensions.configuration.abstractions.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Binder/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Opl/7SIrwDy9WjHn/vU2thQ8CUtrIWHLr+89I7/0VYNEJQvpL24zvqYrh83cH38RzNKHji0WGVkCVP6HJChVVw==",
|
||||
"path": "microsoft.extensions.configuration.binder/9.0.6",
|
||||
"hashPath": "microsoft.extensions.configuration.binder.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-DC5I4Y1nK35jY4piDqQCzWjDXzT6ECMctBAxgAJoc6pn0k6uyxcDeOuVDRooFui/N65ptn9xT5mk9eO4mSTj/g==",
|
||||
"path": "microsoft.extensions.configuration.commandline/9.0.6",
|
||||
"hashPath": "microsoft.extensions.configuration.commandline.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-RGYG2JBak9lf2rIPiZUVmWjUqoxaHPy3XPhPsJyIQ8QqK47rKvJz7jxVYefTnYdM5LTEiGFBdC7v3+SiosvmkQ==",
|
||||
"path": "microsoft.extensions.configuration.environmentvariables/9.0.6",
|
||||
"hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-pCEueasI5JhJ24KYzMFxtG40zyLnWpcQYawpARh9FNq9XbWozuWgexmdkPa8p8YoVNlpi3ecKfcjfoRMkKAufw==",
|
||||
"path": "microsoft.extensions.configuration.fileextensions/9.0.6",
|
||||
"hashPath": "microsoft.extensions.configuration.fileextensions.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Json/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-N0dgOYQ9tDzJouL9Tyx2dgMCcHV2pBaY8yVtorbDqYYwiDRS2zd1TbhTA2FMHqXF3SMjBoO+gONZcDoA79gdSA==",
|
||||
"path": "microsoft.extensions.configuration.json/9.0.6",
|
||||
"hashPath": "microsoft.extensions.configuration.json.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-0ZZMzdvNwIS0f09S0IcaEbKFm+Xc41vRROsA/soeKEpzRISTDdiVwGlzdldbXEsuPjNVvNHyvIP8YW2hfIig0w==",
|
||||
"path": "microsoft.extensions.configuration.usersecrets/9.0.6",
|
||||
"hashPath": "microsoft.extensions.configuration.usersecrets.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-vS65HMo5RS10DD543fknsyVDxihMcVxVn3/hNaILgBxWYnOLxWIeCIO9X0QFuCvPRNjClvXe9Aj8KaQNx7vFkQ==",
|
||||
"path": "microsoft.extensions.dependencyinjection/9.0.6",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-0Zn6nR/6g+90MxskZyOOMPQvnPnrrGu6bytPwkV+azDcTtCSuQ1+GJUrg8Klmnrjk1i6zMpw2lXijl+tw7Q3kA==",
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.6",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Diagnostics/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-mIqCzZseDK9SqTRy4LxtjLwjlUu6aH5UdA6j0vgVER14yki9oRqLF+SmBiF6OlwsBSeL6dMQ8dmq02JMeE2puQ==",
|
||||
"path": "microsoft.extensions.diagnostics/9.0.6",
|
||||
"hashPath": "microsoft.extensions.diagnostics.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-GIoXX7VDcTEsNM6yvffTBaOwnPQELGI5dzExR7L2O7AUkDsHBYIZawUbuwfq3cYzz8dIAAJotQYJMzH7qy27Ng==",
|
||||
"path": "microsoft.extensions.diagnostics.abstractions/9.0.6",
|
||||
"hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-q9FPkSGVA9ipI255p3PBAvWNXas5Tzjyp/DwYSwT+46mIFw9fWZahsF6vHpoxLt5/vtANotH2sAm7HunuFIx9g==",
|
||||
"path": "microsoft.extensions.fileproviders.abstractions/9.0.6",
|
||||
"hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.FileProviders.Physical/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-l+dFA0NRl90vSIiJNy5d7V0kpTEOWHTqbgoWYzlTwF5uiM5sWJ953haaELKE05jkyJdnemVTnqjrlgo4wo7oyg==",
|
||||
"path": "microsoft.extensions.fileproviders.physical/9.0.6",
|
||||
"hashPath": "microsoft.extensions.fileproviders.physical.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-1HJCAbwukNEoYbHgHbKHmenU0V/0huw8+i7Qtf5rLUG1E+3kEwRJQxpwD3wbTEagIgPSQisNgJTvmUX9yYVc6g==",
|
||||
"path": "microsoft.extensions.filesystemglobbing/9.0.6",
|
||||
"hashPath": "microsoft.extensions.filesystemglobbing.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Hosting/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Iu1UyXUnjMhoOwThKM0kCyjgWqqQnuujsbPMnF44ITUbmETT7RAVlozNgev2L/damwNoPZKpmwArRKBy2IOAZg==",
|
||||
"path": "microsoft.extensions.hosting/9.0.6",
|
||||
"hashPath": "microsoft.extensions.hosting.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-G9T95JbcG/wQpeVIzg0IMwxI+uTywDmbxWUWN2P0mdna35rmuTqgTrZ4SU5rcfUT3EJfbI9N4K8UyCAAc6QK8Q==",
|
||||
"path": "microsoft.extensions.hosting.abstractions/9.0.6",
|
||||
"hashPath": "microsoft.extensions.hosting.abstractions.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-XBzjitTFaQhF8EbJ645vblZezV1p52ePTxKHoVkRidHF11Xkjxg94qr0Rvp2qyxK2vBJ4OIZ41NB15YUyxTGMQ==",
|
||||
"path": "microsoft.extensions.logging/9.0.6",
|
||||
"hashPath": "microsoft.extensions.logging.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-LFnyBNK7WtFmKdnHu3v0HOYQ8BcjYuy0jdC9pgCJ/rbLKoJEG9/dBzSKMEeeWDbDeoWS0TIxOC8a9CM5ufca3A==",
|
||||
"path": "microsoft.extensions.logging.abstractions/9.0.6",
|
||||
"hashPath": "microsoft.extensions.logging.abstractions.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Configuration/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-lCgpxE5r6v43SB40/yUVnSWZUUqUZF5iUWizhkx4gqvq0L0rMw5g8adWKGO7sfIaSbCiU0et85sDQWswhLcceg==",
|
||||
"path": "microsoft.extensions.logging.configuration/9.0.6",
|
||||
"hashPath": "microsoft.extensions.logging.configuration.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Console/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-L1O0M3MrqGlkrPYMLzcCphQpCG0lSHfTSPrm1otALNBzTPiO8rxxkjhBIIa2onKv92UP30Y4QaiigVMTx8YcxQ==",
|
||||
"path": "microsoft.extensions.logging.console/9.0.6",
|
||||
"hashPath": "microsoft.extensions.logging.console.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Debug/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-u21euQdOjaEwmlnnB1Zd4XGqOmWI8FkoGeUleV7n4BZ8HPQC/jrYzX/B5Cz3uI/FXjd//W88clPfkGIbSif7Jw==",
|
||||
"path": "microsoft.extensions.logging.debug/9.0.6",
|
||||
"hashPath": "microsoft.extensions.logging.debug.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.EventLog/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-IyyGy7xNJAjdlFYXc7SZ7kS3CWd3Ma4hing9QGtzXi+LXm8RWCEXdKA1cPx5AeFmdg3rVG+ADGIn44K14O+vFA==",
|
||||
"path": "microsoft.extensions.logging.eventlog/9.0.6",
|
||||
"hashPath": "microsoft.extensions.logging.eventlog.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.EventSource/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ayCRr/8ON3aINH81ak9l3vLAF/0pV/xrfChCbIlT2YnHAd4TYBWLcWhzbJWwPFV4XmJFrx/z8oq+gZzIc/74OA==",
|
||||
"path": "microsoft.extensions.logging.eventsource/9.0.6",
|
||||
"hashPath": "microsoft.extensions.logging.eventsource.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Options/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-wUPhNM1zsI58Dy10xRdF2+pnsisiUuETg5ZBncyAEEUm/CQ9Q1vmivyUWH8RDbAlqyixf2dJNQ2XZb7HsKUEQw==",
|
||||
"path": "microsoft.extensions.options/9.0.6",
|
||||
"hashPath": "microsoft.extensions.options.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-2lnp8nrvfzyp+5zvfeULm/hkZsDsKkl2ziBt5T8EZKoON5q+XRpRLoWcSPo8mP7GNZXpxKMBVjFNIZNbBIcnRw==",
|
||||
"path": "microsoft.extensions.options.configurationextensions/9.0.6",
|
||||
"hashPath": "microsoft.extensions.options.configurationextensions.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-BHniU24QV67qp1pJknqYSofAPYGmijGI8D+ci9yfw33iuFdyOeB9lWTg78ThyYLyQwZw3s0vZ36VMb0MqbUuLw==",
|
||||
"path": "microsoft.extensions.primitives/9.0.6",
|
||||
"hashPath": "microsoft.extensions.primitives.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.EventLog/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-lum+Dv+8S4gqN5H1C576UcQe0M2buoRjEUVs4TctXRSWjBH3ay3w2KyQrOo1yPdRs1I+xK69STz+4mjIisFI5w==",
|
||||
"path": "system.diagnostics.eventlog/9.0.6",
|
||||
"hashPath": "system.diagnostics.eventlog.9.0.6.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
src/worker/bin/Debug/net9.0/test.worker.dll
Normal file
BIN
src/worker/bin/Debug/net9.0/test.worker.dll
Normal file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/test.worker.pdb
Normal file
BIN
src/worker/bin/Debug/net9.0/test.worker.pdb
Normal file
Binary file not shown.
12
src/worker/bin/Debug/net9.0/test.worker.runtimeconfig.json
Normal file
12
src/worker/bin/Debug/net9.0/test.worker.runtimeconfig.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net9.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "9.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
|
||||
BIN
src/worker/obj/Debug/net9.0/apphost
Executable file
BIN
src/worker/obj/Debug/net9.0/apphost
Executable file
Binary file not shown.
BIN
src/worker/obj/Debug/net9.0/ref/test.worker.dll
Normal file
BIN
src/worker/obj/Debug/net9.0/ref/test.worker.dll
Normal file
Binary file not shown.
BIN
src/worker/obj/Debug/net9.0/refint/test.worker.dll
Normal file
BIN
src/worker/obj/Debug/net9.0/refint/test.worker.dll
Normal file
Binary file not shown.
0
src/worker/obj/Debug/net9.0/test.wor.5D53496D.Up2Date
Normal file
0
src/worker/obj/Debug/net9.0/test.wor.5D53496D.Up2Date
Normal file
23
src/worker/obj/Debug/net9.0/test.worker.AssemblyInfo.cs
Normal file
23
src/worker/obj/Debug/net9.0/test.worker.AssemblyInfo.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <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: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("dotnet-test.worker-155cc199-70a0-44da-994f-61f90df99323")]
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("test.worker")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("test.worker")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("test.worker")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
a1bf677225e320ffbf0bbc6863695161922d41f2e27f7cef6e875dfd1dd05536
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
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 = test.worker
|
||||
build_property.ProjectDir = /home/matiaspou/src/tmp/dotnet.worker/src/worker/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 9.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
12
src/worker/obj/Debug/net9.0/test.worker.GlobalUsings.g.cs
Normal file
12
src/worker/obj/Debug/net9.0/test.worker.GlobalUsings.g.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
// <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;
|
||||
BIN
src/worker/obj/Debug/net9.0/test.worker.assets.cache
Normal file
BIN
src/worker/obj/Debug/net9.0/test.worker.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
68f0485da3a34efef61d591070c4e59d0654b4eea9d4ee22a121ef0223f26785
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/appsettings.Development.json
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/appsettings.json
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/test.worker
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/test.worker.deps.json
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/test.worker.runtimeconfig.json
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/test.worker.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/test.worker.pdb
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Json.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Physical.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Hosting.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Console.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Debug.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.EventLog.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.EventSource.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Options.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/System.Diagnostics.EventLog.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/bin/Debug/net9.0/runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/obj/Debug/net9.0/test.worker.csproj.AssemblyReference.cache
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/obj/Debug/net9.0/test.worker.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/obj/Debug/net9.0/test.worker.AssemblyInfoInputs.cache
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/obj/Debug/net9.0/test.worker.AssemblyInfo.cs
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/obj/Debug/net9.0/test.worker.csproj.CoreCompileInputs.cache
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/obj/Debug/net9.0/test.wor.5D53496D.Up2Date
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/obj/Debug/net9.0/test.worker.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/obj/Debug/net9.0/refint/test.worker.dll
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/obj/Debug/net9.0/test.worker.pdb
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/obj/Debug/net9.0/test.worker.genruntimeconfig.cache
|
||||
/home/matiaspou/src/tmp/dotnet.worker/src/worker/obj/Debug/net9.0/ref/test.worker.dll
|
||||
BIN
src/worker/obj/Debug/net9.0/test.worker.dll
Normal file
BIN
src/worker/obj/Debug/net9.0/test.worker.dll
Normal file
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
93196d1f9f5555f9630bde4ec6301f1f573dcdd83909a271ccb4095ea7e740f8
|
||||
BIN
src/worker/obj/Debug/net9.0/test.worker.pdb
Normal file
BIN
src/worker/obj/Debug/net9.0/test.worker.pdb
Normal file
Binary file not shown.
1556
src/worker/obj/project.assets.json
Normal file
1556
src/worker/obj/project.assets.json
Normal file
File diff suppressed because it is too large
Load diff
37
src/worker/obj/project.nuget.cache
Normal file
37
src/worker/obj/project.nuget.cache
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "qC+gxU4C+As=",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/matiaspou/src/tmp/dotnet.worker/src/worker/test.worker.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.configuration/9.0.6/microsoft.extensions.configuration.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.configuration.abstractions/9.0.6/microsoft.extensions.configuration.abstractions.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.configuration.binder/9.0.6/microsoft.extensions.configuration.binder.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.configuration.commandline/9.0.6/microsoft.extensions.configuration.commandline.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.configuration.environmentvariables/9.0.6/microsoft.extensions.configuration.environmentvariables.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.configuration.fileextensions/9.0.6/microsoft.extensions.configuration.fileextensions.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.configuration.json/9.0.6/microsoft.extensions.configuration.json.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.configuration.usersecrets/9.0.6/microsoft.extensions.configuration.usersecrets.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.6/microsoft.extensions.dependencyinjection.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/9.0.6/microsoft.extensions.dependencyinjection.abstractions.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.diagnostics/9.0.6/microsoft.extensions.diagnostics.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.diagnostics.abstractions/9.0.6/microsoft.extensions.diagnostics.abstractions.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.fileproviders.abstractions/9.0.6/microsoft.extensions.fileproviders.abstractions.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.fileproviders.physical/9.0.6/microsoft.extensions.fileproviders.physical.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.filesystemglobbing/9.0.6/microsoft.extensions.filesystemglobbing.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.hosting/9.0.6/microsoft.extensions.hosting.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.hosting.abstractions/9.0.6/microsoft.extensions.hosting.abstractions.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.logging/9.0.6/microsoft.extensions.logging.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.logging.abstractions/9.0.6/microsoft.extensions.logging.abstractions.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.logging.configuration/9.0.6/microsoft.extensions.logging.configuration.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.logging.console/9.0.6/microsoft.extensions.logging.console.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.logging.debug/9.0.6/microsoft.extensions.logging.debug.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.logging.eventlog/9.0.6/microsoft.extensions.logging.eventlog.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.logging.eventsource/9.0.6/microsoft.extensions.logging.eventsource.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.options/9.0.6/microsoft.extensions.options.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.options.configurationextensions/9.0.6/microsoft.extensions.options.configurationextensions.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/microsoft.extensions.primitives/9.0.6/microsoft.extensions.primitives.9.0.6.nupkg.sha512",
|
||||
"/home/matiaspou/.nuget/packages/system.diagnostics.eventlog/9.0.6/system.diagnostics.eventlog.9.0.6.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
73
src/worker/obj/test.worker.csproj.nuget.dgspec.json
Normal file
73
src/worker/obj/test.worker.csproj.nuget.dgspec.json
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/home/matiaspou/src/tmp/dotnet.worker/src/worker/test.worker.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/home/matiaspou/src/tmp/dotnet.worker/src/worker/test.worker.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/matiaspou/src/tmp/dotnet.worker/src/worker/test.worker.csproj",
|
||||
"projectName": "test.worker",
|
||||
"projectPath": "/home/matiaspou/src/tmp/dotnet.worker/src/worker/test.worker.csproj",
|
||||
"packagesPath": "/home/matiaspou/.nuget/packages/",
|
||||
"outputPath": "/home/matiaspou/src/tmp/dotnet.worker/src/worker/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/matiaspou/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net9.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "9.0.300"
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Hosting": {
|
||||
"target": "Package",
|
||||
"version": "[9.0.6, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.301/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
18
src/worker/obj/test.worker.csproj.nuget.g.props
Normal file
18
src/worker/obj/test.worker.csproj.nuget.g.props
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/matiaspou/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/matiaspou/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/matiaspou/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/9.0.6/buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/9.0.6/buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
9
src/worker/obj/test.worker.csproj.nuget.g.targets
Normal file
9
src/worker/obj/test.worker.csproj.nuget.g.targets
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options/9.0.6/buildTransitive/net8.0/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/9.0.6/buildTransitive/net8.0/Microsoft.Extensions.Options.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.binder/9.0.6/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.binder/9.0.6/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/9.0.6/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/9.0.6/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/9.0.6/buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/9.0.6/buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
13
src/worker/test.worker.csproj
Normal file
13
src/worker/test.worker.csproj
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk.Worker">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<UserSecretsId>dotnet-test.worker-155cc199-70a0-44da-994f-61f90df99323</UserSecretsId>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.6" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue