[initial] - initial Dockerfile, dotnet project
This commit is contained in:
parent
bca82b1c5c
commit
9910828888
66 changed files with 2553 additions and 0 deletions
15
Dockerfile
Normal file
15
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-initial-repo.dll"]
|
||||
13
src/worker/Program.cs
Normal file
13
src/worker/Program.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
namespace test_initial_repo;
|
||||
|
||||
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_initial_repo": {
|
||||
"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_initial_repo;
|
||||
|
||||
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-initial-repo
Executable file
BIN
src/worker/bin/Debug/net9.0/test-initial-repo
Executable file
Binary file not shown.
603
src/worker/bin/Debug/net9.0/test-initial-repo.deps.json
Normal file
603
src/worker/bin/Debug/net9.0/test-initial-repo.deps.json
Normal file
|
|
@ -0,0 +1,603 @@
|
|||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v9.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v9.0": {
|
||||
"test-initial-repo/1.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Hosting": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"test-initial-repo.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Primitives": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Binder/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.3",
|
||||
"Microsoft.Extensions.Primitives": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Json/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.3",
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.Json.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.Json": "9.0.3",
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": {
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Diagnostics/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.3",
|
||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Diagnostics.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Options": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.FileProviders.Physical/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.FileSystemGlobbing": "9.0.3",
|
||||
"Microsoft.Extensions.Primitives": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.3": {
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Hosting/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.Binder": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.CommandLine": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.Json": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.UserSecrets": "9.0.3",
|
||||
"Microsoft.Extensions.DependencyInjection": "9.0.3",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Diagnostics": "9.0.3",
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.FileProviders.Physical": "9.0.3",
|
||||
"Microsoft.Extensions.Hosting.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Logging": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Configuration": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Console": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Debug": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.EventLog": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.EventSource": "9.0.3",
|
||||
"Microsoft.Extensions.Options": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Hosting.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Options": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Configuration/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.Binder": "9.0.3",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Logging": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Options": "9.0.3",
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Console/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Logging": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Configuration": "9.0.3",
|
||||
"Microsoft.Extensions.Options": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.Console.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Debug/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Logging": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.EventLog/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Logging": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Options": "9.0.3",
|
||||
"System.Diagnostics.EventLog": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.EventSource/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Logging": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Options": "9.0.3",
|
||||
"Microsoft.Extensions.Primitives": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Options/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Primitives": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Options.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Configuration.Binder": "9.0.3",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3",
|
||||
"Microsoft.Extensions.Options": "9.0.3",
|
||||
"Microsoft.Extensions.Primitives": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/9.0.3": {
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.Extensions.Primitives.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.EventLog/9.0.3": {
|
||||
"runtime": {
|
||||
"lib/net9.0/System.Diagnostics.EventLog.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
},
|
||||
"runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"test-initial-repo/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.Extensions.Configuration/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-RIEeZxWYm77+OWLwgik7DzSVSONjqkmcbuCb1koZdGAV7BgOUWnLz80VMyHZMw3onrVwFCCMHBBdruBPuQTvkg==",
|
||||
"path": "microsoft.extensions.configuration/9.0.3",
|
||||
"hashPath": "microsoft.extensions.configuration.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-q5qlbm6GRUrle2ZZxy9aqS/wWoc+mRD3JeP6rcpiJTh5XcemYkplAcJKq8lU11ZfPom5lfbZZfnQvDqcUhqD5Q==",
|
||||
"path": "microsoft.extensions.configuration.abstractions/9.0.3",
|
||||
"hashPath": "microsoft.extensions.configuration.abstractions.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Binder/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ad82pYBUSQbd3WIboxsS1HzFdRuHKRa2CpYwie/o6dZAxUjt62yFwjoVdM7Iw2VO5fHV1rJwa7jJZBNZin0E7Q==",
|
||||
"path": "microsoft.extensions.configuration.binder/9.0.3",
|
||||
"hashPath": "microsoft.extensions.configuration.binder.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.CommandLine/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-rVwz4ml/Jve/QzzUlyTVOKXVZ37op9RK6Ize4uPmJ3S5c2ErExoy816+dslBQ06ZrFq8M9bpnV5LVBuPD1ONHQ==",
|
||||
"path": "microsoft.extensions.configuration.commandline/9.0.3",
|
||||
"hashPath": "microsoft.extensions.configuration.commandline.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-fo84UIa8aSBG3pOtzLsgkj1YkOVfYFy2YWcRTCevHHAkuVsxnYnKBrcW2pyFgqqfQ/rT8K1nmRXHDdQIZ8PDig==",
|
||||
"path": "microsoft.extensions.configuration.environmentvariables/9.0.3",
|
||||
"hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.FileExtensions/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-tBNMSDJ2q7WQK2zwPhHY5I/q95t7sf6dT079mGrNm0yOZF/gM9JvR/LtCb/rwhRmh7A6XMnzv5WbpCh9KLq9EQ==",
|
||||
"path": "microsoft.extensions.configuration.fileextensions/9.0.3",
|
||||
"hashPath": "microsoft.extensions.configuration.fileextensions.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Json/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-mjkp3ZwynNacZk4uq93I0DyCY48FZmi3yRV0xlfeDuWh44KcDunPXHwt8IWr4kL7cVM6eiFVe6YTJg97KzUAUA==",
|
||||
"path": "microsoft.extensions.configuration.json/9.0.3",
|
||||
"hashPath": "microsoft.extensions.configuration.json.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.UserSecrets/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-vwkBQ5jqmfX7nD7CFvB3k1uSeNBKRcYRDvlk3pxJzJfm/cgT4R+hQg5AFXW/1aLKjz0q7brpRocHC5GK2sjvEw==",
|
||||
"path": "microsoft.extensions.configuration.usersecrets/9.0.3",
|
||||
"hashPath": "microsoft.extensions.configuration.usersecrets.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-lDbxJpkl6X8KZGpkAxgrrthQ42YeiR0xjPp7KPx+sCPc3ZbpaIbjzd0QQ+9kDdK2RU2DOl3pc6tQyAgEZY3V0A==",
|
||||
"path": "microsoft.extensions.dependencyinjection/9.0.3",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-TfaHPSe39NyL2wxkisRxXK7xvHGZYBZ+dy3r+mqGvnxKgAPdHkMu3QMQZI4pquP6W5FIQBqs8FJpWV8ffCgDqQ==",
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.3",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Diagnostics/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-gqhbIq6adm0+/9IlDYmchekoxNkmUTm7rfTG3k4zzoQkjRuD8TQGwL1WnIcTDt4aQ+j+Vu0OQrjI8GlpJQQhIA==",
|
||||
"path": "microsoft.extensions.diagnostics/9.0.3",
|
||||
"hashPath": "microsoft.extensions.diagnostics.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-/fn0Xe8t+3YbMfwyTk4hFirWyAG1pBA5ogVYsrKAuuD2gbqOWhFuSA28auCmS3z8Y2eq3miDIKq4pFVRWA+J6g==",
|
||||
"path": "microsoft.extensions.diagnostics.abstractions/9.0.3",
|
||||
"hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.FileProviders.Abstractions/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-umczZ3+QPpzlrW/lkvy+IB0p52+qZ5w++aqx2lTCMOaPKzwcbVdrJgiQ3ajw5QWBp7gChLUiCYkSlWUpfjv24g==",
|
||||
"path": "microsoft.extensions.fileproviders.abstractions/9.0.3",
|
||||
"hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.FileProviders.Physical/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-th2+tQBV5oWjgKhip9GjiIv2AEK3QvfAO3tZcqV3F3dEt5D6Gb411RntCj1+8GS9HaRRSxjSGx/fCrMqIjkb1Q==",
|
||||
"path": "microsoft.extensions.fileproviders.physical/9.0.3",
|
||||
"hashPath": "microsoft.extensions.fileproviders.physical.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.FileSystemGlobbing/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Rec77KHk4iNpFznHi5/6wF3MlUDcKqg26t8gRYbUm1PSukZ4B6mrXpZsJSNOiwyhhQVkjYbaoZxi5XJgRQ5lFg==",
|
||||
"path": "microsoft.extensions.filesystemglobbing/9.0.3",
|
||||
"hashPath": "microsoft.extensions.filesystemglobbing.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Hosting/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ioFXglqFA9uCYcKHI3CLVTO3I75jWIhvVxiZBzGeSPxw7XdhDLh0QvbNFrMTbZk9qqEVQcylblcvcNXnFHYXyA==",
|
||||
"path": "microsoft.extensions.hosting/9.0.3",
|
||||
"hashPath": "microsoft.extensions.hosting.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Hosting.Abstractions/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-rHabYVhQsGYNfgnfnYLqZRx/hLe85i6jW5rnDjA9pjt3x7yjPv8T/EXcgN5T9T38FAVwZRA+RMGUkEHbxvCOBQ==",
|
||||
"path": "microsoft.extensions.hosting.abstractions/9.0.3",
|
||||
"hashPath": "microsoft.extensions.hosting.abstractions.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-utIi2R1nm+PCWkvWBf1Ou6LWqg9iLfHU23r8yyU9VCvda4dEs7xbTZSwGa5KuwbpzpgCbHCIuKaFHB3zyFmnGw==",
|
||||
"path": "microsoft.extensions.logging/9.0.3",
|
||||
"hashPath": "microsoft.extensions.logging.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-H/MBMLt9A/69Ux4OrV7oCKt3DcMT04o5SCqDolulzQA66TLFEpYYb4qedMs/uwrLtyHXGuDGWKZse/oa8W9AZw==",
|
||||
"path": "microsoft.extensions.logging.abstractions/9.0.3",
|
||||
"hashPath": "microsoft.extensions.logging.abstractions.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Configuration/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-eVZsaKNyK0g0C1qp0mmn4Q2PiX+bXdkz8+zVkXyVMk8IvoWfmTjLjEq1MQlwt1A22lToANPiUrxPJ7Tt3V5puw==",
|
||||
"path": "microsoft.extensions.logging.configuration/9.0.3",
|
||||
"hashPath": "microsoft.extensions.logging.configuration.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Console/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-o9VXLOdpTAro1q7ZThIB3S8OHrRn5pr8cFUCiN85fiwlfAt2DhU4ZIfHy+jCNbf7y7S5Exbr3dlDE8mKNrs0Yg==",
|
||||
"path": "microsoft.extensions.logging.console/9.0.3",
|
||||
"hashPath": "microsoft.extensions.logging.console.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Debug/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-BlKgvNYjD6mY5GXpMCf9zPAsrovMgW5mzCOT7SpoOSyI1478zldf+7PKvDIscC277z5zjSO3yi/OuIWpnTZmdA==",
|
||||
"path": "microsoft.extensions.logging.debug/9.0.3",
|
||||
"hashPath": "microsoft.extensions.logging.debug.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.EventLog/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-/+elZUHGgB3oHKO9St/Ql/qfze9O+UbXj+9FOj1gIshLCFXcPlhpKoI11jE6eIV0kbs1P/EeffJl4KDFyvAiJQ==",
|
||||
"path": "microsoft.extensions.logging.eventlog/9.0.3",
|
||||
"hashPath": "microsoft.extensions.logging.eventlog.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.EventSource/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-hgG0EGEHnngQFQNqJ5ungEykqaQ5Tik0Gpkb38pea2a5cR3pWlZR4vuYLDdtTgSiKEKByXz/3wNQ7qAqXamEEA==",
|
||||
"path": "microsoft.extensions.logging.eventsource/9.0.3",
|
||||
"hashPath": "microsoft.extensions.logging.eventsource.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Options/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-xE7MpY70lkw1oiid5y6FbL9dVw8oLfkx8RhSNGN8sSzBlCqGn0SyT3Fqc8tZnDaPIq7Z8R9RTKlS564DS+MV3g==",
|
||||
"path": "microsoft.extensions.options/9.0.3",
|
||||
"hashPath": "microsoft.extensions.options.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-PcyYHQglKnWVZHSPaL6v2qnfsIuFw8tSq7cyXHg3OeuDVn/CqmdWUjRiZomCF/Gi+qCi+ksz0lFphg2cNvB8zQ==",
|
||||
"path": "microsoft.extensions.options.configurationextensions/9.0.3",
|
||||
"hashPath": "microsoft.extensions.options.configurationextensions.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-yCCJHvBcRyqapMSNzP+kTc57Eaavq2cr5Tmuil6/XVnipQf5xmskxakSQ1enU6S4+fNg3sJ27WcInV64q24JsA==",
|
||||
"path": "microsoft.extensions.primitives/9.0.3",
|
||||
"hashPath": "microsoft.extensions.primitives.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.EventLog/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-0nDJBZ06DVdTG2vvCZ4XjazLVaFawdT0pnji23ISX8I8fEOlRJyzH2I0kWiAbCtFwry2Zir4qE4l/GStLATfFw==",
|
||||
"path": "system.diagnostics.eventlog/9.0.3",
|
||||
"hashPath": "system.diagnostics.eventlog.9.0.3.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
src/worker/bin/Debug/net9.0/test-initial-repo.dll
Normal file
BIN
src/worker/bin/Debug/net9.0/test-initial-repo.dll
Normal file
Binary file not shown.
BIN
src/worker/bin/Debug/net9.0/test-initial-repo.pdb
Normal file
BIN
src/worker/bin/Debug/net9.0/test-initial-repo.pdb
Normal file
Binary file not shown.
|
|
@ -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-initial-repo.dll
Normal file
BIN
src/worker/obj/Debug/net9.0/ref/test-initial-repo.dll
Normal file
Binary file not shown.
BIN
src/worker/obj/Debug/net9.0/refint/test-initial-repo.dll
Normal file
BIN
src/worker/obj/Debug/net9.0/refint/test-initial-repo.dll
Normal file
Binary file not shown.
0
src/worker/obj/Debug/net9.0/test-ini.ABCB6960.Up2Date
Normal file
0
src/worker/obj/Debug/net9.0/test-ini.ABCB6960.Up2Date
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_initial_repo-55a63387-efe0-4dff-a31a-099362c6c65c")]
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("test-initial-repo")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+bca82b1c5c051076539425b834e9f4c27db0720c")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("test-initial-repo")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("test-initial-repo")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
b528770d8b0fd9c79fc761f5742c7df4e8633c2f075d7daec9aa562ff779c1ac
|
||||
|
|
@ -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_initial_repo
|
||||
build_property.ProjectDir = /home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 9.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
|
|
@ -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-initial-repo.assets.cache
Normal file
BIN
src/worker/obj/Debug/net9.0/test-initial-repo.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
002c73dfa719db4a0258957d2ef71c4351f64cfbbe9c3f6d68df18bf6bd9f6ed
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/appsettings.Development.json
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/appsettings.json
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/test-initial-repo
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/test-initial-repo.deps.json
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/test-initial-repo.runtimeconfig.json
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/test-initial-repo.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/test-initial-repo.pdb
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Json.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Physical.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Hosting.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Console.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.Debug.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.EventLog.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Logging.EventSource.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Options.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/System.Diagnostics.EventLog.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/bin/Debug/net9.0/runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/obj/Debug/net9.0/test-initial-repo.csproj.AssemblyReference.cache
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/obj/Debug/net9.0/test-initial-repo.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/obj/Debug/net9.0/test-initial-repo.AssemblyInfoInputs.cache
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/obj/Debug/net9.0/test-initial-repo.AssemblyInfo.cs
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/obj/Debug/net9.0/test-initial-repo.csproj.CoreCompileInputs.cache
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/obj/Debug/net9.0/test-ini.ABCB6960.Up2Date
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/obj/Debug/net9.0/test-initial-repo.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/obj/Debug/net9.0/refint/test-initial-repo.dll
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/obj/Debug/net9.0/test-initial-repo.pdb
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/obj/Debug/net9.0/test-initial-repo.genruntimeconfig.cache
|
||||
/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/obj/Debug/net9.0/ref/test-initial-repo.dll
|
||||
BIN
src/worker/obj/Debug/net9.0/test-initial-repo.dll
Normal file
BIN
src/worker/obj/Debug/net9.0/test-initial-repo.dll
Normal file
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
019f9234a705cb9894ccf7dfa0e8adbb3d2147bd9d3d9183c82ee8667c836cf3
|
||||
BIN
src/worker/obj/Debug/net9.0/test-initial-repo.pdb
Normal file
BIN
src/worker/obj/Debug/net9.0/test-initial-repo.pdb
Normal file
Binary file not shown.
1557
src/worker/obj/project.assets.json
Normal file
1557
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": "CD1WINJCI+4=",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/test-initial-repo.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.configuration/9.0.3/microsoft.extensions.configuration.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.configuration.abstractions/9.0.3/microsoft.extensions.configuration.abstractions.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.configuration.binder/9.0.3/microsoft.extensions.configuration.binder.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.configuration.commandline/9.0.3/microsoft.extensions.configuration.commandline.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.configuration.environmentvariables/9.0.3/microsoft.extensions.configuration.environmentvariables.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.configuration.fileextensions/9.0.3/microsoft.extensions.configuration.fileextensions.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.configuration.json/9.0.3/microsoft.extensions.configuration.json.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.configuration.usersecrets/9.0.3/microsoft.extensions.configuration.usersecrets.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.3/microsoft.extensions.dependencyinjection.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/9.0.3/microsoft.extensions.dependencyinjection.abstractions.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.diagnostics/9.0.3/microsoft.extensions.diagnostics.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.diagnostics.abstractions/9.0.3/microsoft.extensions.diagnostics.abstractions.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.fileproviders.abstractions/9.0.3/microsoft.extensions.fileproviders.abstractions.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.fileproviders.physical/9.0.3/microsoft.extensions.fileproviders.physical.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.filesystemglobbing/9.0.3/microsoft.extensions.filesystemglobbing.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.hosting/9.0.3/microsoft.extensions.hosting.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.hosting.abstractions/9.0.3/microsoft.extensions.hosting.abstractions.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.logging/9.0.3/microsoft.extensions.logging.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.logging.abstractions/9.0.3/microsoft.extensions.logging.abstractions.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.logging.configuration/9.0.3/microsoft.extensions.logging.configuration.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.logging.console/9.0.3/microsoft.extensions.logging.console.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.logging.debug/9.0.3/microsoft.extensions.logging.debug.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.logging.eventlog/9.0.3/microsoft.extensions.logging.eventlog.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.logging.eventsource/9.0.3/microsoft.extensions.logging.eventsource.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.options/9.0.3/microsoft.extensions.options.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.options.configurationextensions/9.0.3/microsoft.extensions.options.configurationextensions.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/microsoft.extensions.primitives/9.0.3/microsoft.extensions.primitives.9.0.3.nupkg.sha512",
|
||||
"/home/carolinadiaz/.nuget/packages/system.diagnostics.eventlog/9.0.3/system.diagnostics.eventlog.9.0.3.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
74
src/worker/obj/test-initial-repo.csproj.nuget.dgspec.json
Normal file
74
src/worker/obj/test-initial-repo.csproj.nuget.dgspec.json
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/test-initial-repo.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/test-initial-repo.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/test-initial-repo.csproj",
|
||||
"projectName": "test-initial-repo",
|
||||
"projectPath": "/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/test-initial-repo.csproj",
|
||||
"packagesPath": "/home/carolinadiaz/.nuget/packages/",
|
||||
"outputPath": "/home/carolinadiaz/Desktop/LIESA/test-initial-repo/src/worker/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/carolinadiaz/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net9.0"
|
||||
],
|
||||
"sources": {
|
||||
"/usr/share/dotnet/library-packs": {},
|
||||
"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.200"
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Hosting": {
|
||||
"target": "Package",
|
||||
"version": "[9.0.3, )"
|
||||
}
|
||||
},
|
||||
"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.202/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
18
src/worker/obj/test-initial-repo.csproj.nuget.g.props
Normal file
18
src/worker/obj/test-initial-repo.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/carolinadiaz/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/carolinadiaz/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.13.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/carolinadiaz/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/9.0.3/buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/9.0.3/buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
9
src/worker/obj/test-initial-repo.csproj.nuget.g.targets
Normal file
9
src/worker/obj/test-initial-repo.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.3/buildTransitive/net8.0/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/9.0.3/buildTransitive/net8.0/Microsoft.Extensions.Options.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.binder/9.0.3/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.binder/9.0.3/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/9.0.3/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/9.0.3/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/9.0.3/buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/9.0.3/buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
14
src/worker/test-initial-repo.csproj
Normal file
14
src/worker/test-initial-repo.csproj
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk.Worker">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<UserSecretsId>dotnet-test_initial_repo-55a63387-efe0-4dff-a31a-099362c6c65c</UserSecretsId>
|
||||
<RootNamespace>test_initial_repo</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.3" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
29
test-initial-repo.sln
Normal file
29
test-initial-repo.sln
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.5.2.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{827E0CD3-B72D-47B6-A68D-7590B98EB39B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test-initial-repo", "src\worker\test-initial-repo.csproj", "{99155333-CE11-E7EA-FFF0-91F848F93F5E}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{99155333-CE11-E7EA-FFF0-91F848F93F5E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{99155333-CE11-E7EA-FFF0-91F848F93F5E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{99155333-CE11-E7EA-FFF0-91F848F93F5E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{99155333-CE11-E7EA-FFF0-91F848F93F5E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{99155333-CE11-E7EA-FFF0-91F848F93F5E} = {827E0CD3-B72D-47B6-A68D-7590B98EB39B}
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {F852694F-7E78-4A0B-BDDE-84B73F00F214}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
Loading…
Add table
Add a link
Reference in a new issue