diff --git a/tests/integration/backend/AuthIntegrationTests.cs b/tests/integration/backend/AuthIntegrationTests.cs index 75d72f2..81921bd 100644 --- a/tests/integration/backend/AuthIntegrationTests.cs +++ b/tests/integration/backend/AuthIntegrationTests.cs @@ -1,14 +1,16 @@ using System.Net; using System.Net.Http.Json; using FluentAssertions; +using Microsoft.AspNetCore.Mvc.Testing; using RacePlannerApi.DTOs; +using RacePlannerApi.Models; using Xunit; namespace backend.Tests.Integration; public class AuthIntegrationTests : IntegrationTestBase { - public AuthIntegrationTests(WebApplicationFactory factory) : base(factory) { } + public AuthIntegrationTests(CustomWebApplicationFactory factory) : base(factory) { } [Fact] public async Task Register_WithValidData_ReturnsSuccess() diff --git a/tests/integration/backend/EventsIntegrationTests.cs b/tests/integration/backend/EventsIntegrationTests.cs index 08046bf..1c8d6b6 100644 --- a/tests/integration/backend/EventsIntegrationTests.cs +++ b/tests/integration/backend/EventsIntegrationTests.cs @@ -1,6 +1,7 @@ using System.Net; using System.Net.Http.Json; using FluentAssertions; +using Microsoft.AspNetCore.Mvc.Testing; using RacePlannerApi.DTOs; using RacePlannerApi.Models; using Xunit; @@ -9,7 +10,7 @@ namespace backend.Tests.Integration; public class EventsIntegrationTests : IntegrationTestBase { - public EventsIntegrationTests(WebApplicationFactory factory) : base(factory) { } + public EventsIntegrationTests(CustomWebApplicationFactory factory) : base(factory) { } private async Task GetOrganizerTokenAsync() { diff --git a/tests/integration/backend/IntegrationTestBase.cs b/tests/integration/backend/IntegrationTestBase.cs index 7aef899..4eef78b 100644 --- a/tests/integration/backend/IntegrationTestBase.cs +++ b/tests/integration/backend/IntegrationTestBase.cs @@ -1,3 +1,4 @@ +using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Mvc.Testing; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; @@ -9,41 +10,51 @@ using Xunit; namespace backend.Tests.Integration; -public class IntegrationTestBase : IClassFixture> +public class CustomWebApplicationFactory : WebApplicationFactory { - protected readonly WebApplicationFactory _factory; - protected readonly HttpClient _client; - protected readonly JsonSerializerOptions _jsonOptions = new(JsonSerializerDefaults.Web); - - public IntegrationTestBase(WebApplicationFactory factory) + protected override void ConfigureWebHost(IWebHostBuilder builder) { - _factory = factory.WithWebHostBuilder(builder => + builder.ConfigureServices(services => { - builder.ConfigureServices(services => + // Remove all DbContextOptions registrations + var descriptors = services.Where( + d => d.ServiceType == typeof(DbContextOptions) || + d.ServiceType.Name.Contains("DbContextOptions")).ToList(); + + foreach (var descriptor in descriptors) { - // Replace the database context with an in-memory database - var descriptor = services.SingleOrDefault( - d => d.ServiceType == typeof(DbContextOptions)); - - if (descriptor != null) - { - services.Remove(descriptor); - } + services.Remove(descriptor); + } - services.AddDbContext(options => - { - options.UseInMemoryDatabase("IntegrationTestDb"); - }); - - // Ensure the database is created and seeded - var sp = services.BuildServiceProvider(); - using var scope = sp.CreateScope(); - var db = scope.ServiceProvider.GetRequiredService(); - db.Database.EnsureCreated(); + // Add in-memory database + services.AddDbContext(options => + { + options.UseInMemoryDatabase(Guid.NewGuid().ToString()); }); }); + } +} +public abstract class IntegrationTestBase : IClassFixture, IDisposable +{ + protected readonly CustomWebApplicationFactory _factory; + protected readonly HttpClient _client; + protected readonly JsonSerializerOptions _jsonOptions = new(JsonSerializerDefaults.Web); + protected readonly IServiceScope _scope; + protected readonly RacePlannerDbContext _dbContext; + + protected IntegrationTestBase(CustomWebApplicationFactory factory) + { + _factory = factory; _client = _factory.CreateClient(); + _scope = _factory.Services.CreateScope(); + _dbContext = _scope.ServiceProvider.GetRequiredService(); + _dbContext.Database.EnsureCreated(); + } + + public void Dispose() + { + _scope.Dispose(); } protected HttpClient CreateAuthenticatedClient(string token = "") diff --git a/tests/integration/backend/bin/Debug/net10.0/BCrypt.Net-Next.dll b/tests/integration/backend/bin/Debug/net10.0/BCrypt.Net-Next.dll new file mode 100755 index 0000000..623193b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/BCrypt.Net-Next.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/FluentAssertions.dll b/tests/integration/backend/bin/Debug/net10.0/FluentAssertions.dll new file mode 100755 index 0000000..6cb5557 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/FluentAssertions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll new file mode 100755 index 0000000..dcb6fcd Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.Mvc.Testing.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.Mvc.Testing.dll new file mode 100755 index 0000000..c685e73 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.Mvc.Testing.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll new file mode 100755 index 0000000..f58ce81 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.TestHost.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.TestHost.dll new file mode 100755 index 0000000..3b19f57 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.TestHost.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100755 index 0000000..2985136 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.InMemory.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.InMemory.dll new file mode 100755 index 0000000..e5f288e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.InMemory.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100755 index 0000000..7464efc Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll new file mode 100755 index 0000000..fd841a0 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Caching.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100755 index 0000000..4e1e288 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Caching.Memory.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Caching.Memory.dll new file mode 100755 index 0000000..5ce7c76 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100755 index 0000000..efb7029 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll new file mode 100755 index 0000000..7c8b8e3 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll new file mode 100755 index 0000000..788f585 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll new file mode 100755 index 0000000..2ac6413 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100755 index 0000000..85281dd Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Json.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Json.dll new file mode 100755 index 0000000..92973c0 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll new file mode 100755 index 0000000..a196644 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll new file mode 100755 index 0000000..01a1d9d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100755 index 0000000..7deed75 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100755 index 0000000..84ae54b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll new file mode 100755 index 0000000..b60f198 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100755 index 0000000..725cdba Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.dll new file mode 100755 index 0000000..be016b5 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100755 index 0000000..0686e0d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Physical.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100755 index 0000000..1a84552 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100755 index 0000000..8ae14cb Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100755 index 0000000..0af4780 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Hosting.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Hosting.dll new file mode 100755 index 0000000..774ff60 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Hosting.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100755 index 0000000..9f2c85a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Configuration.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Configuration.dll new file mode 100755 index 0000000..38288c6 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Console.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Console.dll new file mode 100755 index 0000000..a9b4e7b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Console.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Debug.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Debug.dll new file mode 100755 index 0000000..118527d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventLog.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventLog.dll new file mode 100755 index 0000000..30a5315 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventSource.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventSource.dll new file mode 100755 index 0000000..ead6caf Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll new file mode 100755 index 0000000..003a330 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100755 index 0000000..22a70b7 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Options.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Options.dll new file mode 100755 index 0000000..faf1990 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Options.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll new file mode 100755 index 0000000..548cf93 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll new file mode 100755 index 0000000..392fbb6 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100755 index 0000000..466d8a0 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll new file mode 100755 index 0000000..581c8dd Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100755 index 0000000..6c736d2 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll new file mode 100755 index 0000000..9f30508 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll new file mode 100755 index 0000000..70cafe8 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.OpenApi.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.OpenApi.dll new file mode 100755 index 0000000..96cb5dc Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.OpenApi.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll new file mode 100755 index 0000000..55ce79c Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100755 index 0000000..e06f7bf Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100755 index 0000000..9b6de68 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100755 index 0000000..39fb3bd Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll new file mode 100755 index 0000000..abf4a0b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100755 index 0000000..e2fbdcb Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100755 index 0000000..32a461c Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/tests/integration/backend/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100755 index 0000000..c9ab03e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/MvcTestingAppManifest.json b/tests/integration/backend/bin/Debug/net10.0/MvcTestingAppManifest.json new file mode 100644 index 0000000..9de8e60 --- /dev/null +++ b/tests/integration/backend/bin/Debug/net10.0/MvcTestingAppManifest.json @@ -0,0 +1,3 @@ +{ + "RacePlannerApi, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null": "\/Users\/mastermito\/Dev\/raceplanner\/backend" +} \ No newline at end of file diff --git a/tests/integration/backend/bin/Debug/net10.0/Newtonsoft.Json.dll b/tests/integration/backend/bin/Debug/net10.0/Newtonsoft.Json.dll new file mode 100755 index 0000000..d035c38 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Newtonsoft.Json.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/tests/integration/backend/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll new file mode 100755 index 0000000..7bb6c3c Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/Npgsql.dll b/tests/integration/backend/bin/Debug/net10.0/Npgsql.dll new file mode 100755 index 0000000..858a865 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/Npgsql.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi b/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi new file mode 100755 index 0000000..be33c35 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi differ diff --git a/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.deps.json b/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.deps.json new file mode 100644 index 0000000..3d553c3 --- /dev/null +++ b/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.deps.json @@ -0,0 +1,851 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "RacePlannerApi/1.0.0": { + "dependencies": { + "BCrypt.Net-Next": "4.1.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "10.0.5", + "Microsoft.AspNetCore.OpenApi": "10.0.0", + "Microsoft.EntityFrameworkCore.Design": "10.0.5", + "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.1", + "System.IdentityModel.Tokens.Jwt": "8.17.0" + }, + "runtime": { + "RacePlannerApi.dll": {} + } + }, + "BCrypt.Net-Next/4.1.0": { + "runtime": { + "lib/net10.0/BCrypt.Net-Next.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.1.0.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.5": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + } + }, + "Microsoft.AspNetCore.OpenApi/10.0.0": { + "dependencies": { + "Microsoft.OpenApi": "2.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Build.Framework/18.0.2": { + "runtime": { + "lib/net10.0/Microsoft.Build.Framework.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "18.0.2.52102" + } + } + }, + "Microsoft.CodeAnalysis.Common/5.0.0": { + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Common": "5.0.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Common": "5.0.0", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "18.0.2", + "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0", + "Microsoft.VisualStudio.SolutionPersistence": "1.0.52", + "Newtonsoft.Json": "13.0.3", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + }, + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.EntityFrameworkCore/10.0.5": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.5": { + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + } + }, + "Microsoft.EntityFrameworkCore.Design/10.0.5": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "18.0.2", + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "5.0.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "5.0.0", + "Microsoft.EntityFrameworkCore.Relational": "10.0.5", + "Microsoft.Extensions.DependencyModel": "10.0.5", + "Mono.TextTemplating": "3.0.0", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.5": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + } + }, + "Microsoft.Extensions.DependencyModel/10.0.5": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "10.0.0.5", + "fileVersion": "10.0.526.15411" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.17.0": { + "runtime": { + "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.17.0.0", + "fileVersion": "8.17.0.26082" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.17.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.17.0" + }, + "runtime": { + "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.17.0.0", + "fileVersion": "8.17.0.26082" + } + } + }, + "Microsoft.IdentityModel.Logging/8.17.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.17.0" + }, + "runtime": { + "lib/net10.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.17.0.0", + "fileVersion": "8.17.0.26082" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.17.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.17.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.17.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "8.17.0" + }, + "runtime": { + "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.17.0.0", + "fileVersion": "8.17.0.26082" + } + } + }, + "Microsoft.OpenApi/2.0.0": { + "runtime": { + "lib/net8.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Microsoft.VisualStudio.SolutionPersistence/1.0.52": { + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.SolutionPersistence.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.52.6595" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Npgsql/10.0.2": { + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.2.0", + "fileVersion": "10.0.2.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.1": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.5", + "Microsoft.EntityFrameworkCore.Relational": "10.0.5", + "Npgsql": "10.0.2" + }, + "runtime": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "10.0.1.0", + "fileVersion": "10.0.1.0" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition/9.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Convention": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0", + "System.Composition.TypedParts": "9.0.0" + } + }, + "System.Composition.AttributedModel/9.0.0": { + "runtime": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Composition.Convention/9.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Composition.Convention.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Composition.Hosting/9.0.0": { + "dependencies": { + "System.Composition.Runtime": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Composition.Hosting.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Composition.Runtime/9.0.0": { + "runtime": { + "lib/net9.0/System.Composition.Runtime.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Composition.TypedParts/9.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.IdentityModel.Tokens.Jwt/8.17.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.17.0", + "Microsoft.IdentityModel.Tokens": "8.17.0" + }, + "runtime": { + "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.17.0.0", + "fileVersion": "8.17.0.26082" + } + } + } + } + }, + "libraries": { + "RacePlannerApi/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "BCrypt.Net-Next/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5YT3DKllmtkyW68PjURu/V1TOe4MKiByKwsRNVcfYE1S5KuFTeozdmKzyNzolKiQF391OXCaQtINvYT3j1ERzQ==", + "path": "bcrypt.net-next/4.1.0", + "hashPath": "bcrypt.net-next.4.1.0.nupkg.sha512" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fZzXogChrwQ/SfifQJgeW7AtR8hUv5+LH9oLWjm5OqfnVt3N8MwcMHHMdawvqqdjP79lIZgetnSpj77BLsSI1g==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/10.0.5", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.10.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0aqIF1t+sA2T62LIeMtXGSiaV7keGQaJnvwwmu+htQdjCaKYARfXAeqp4nHH9y2etpilyZ/tnQzZg4Ilmo/c4Q==", + "path": "microsoft.aspnetcore.openapi/10.0.0", + "hashPath": "microsoft.aspnetcore.openapi.10.0.0.nupkg.sha512" + }, + "Microsoft.Build.Framework/18.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sOSb+0J4G/jCBW/YqmRuL0eOMXgfw1KQLdC9TkbvfA5xs7uNm+PBQXJCOzSJGXtZcZrtXozcwxPmUiRUbmd7FA==", + "path": "microsoft.build.framework/18.0.2", + "hashPath": "microsoft.build.framework.18.0.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZXRAdvH6GiDeHRyd3q/km8Z44RoM6FBWHd+gen/la81mVnAdHTEsEkO5J0TCNXBymAcx5UYKt5TvgKBhaLJEow==", + "path": "microsoft.codeanalysis.common/5.0.0", + "hashPath": "microsoft.codeanalysis.common.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DSyJ9bk+ATuDy7fp2Zt0mJStDVKbBoiz1DyfAwSa+k4H4IwykAUcV3URelw5b8/iVbfSaOwkwmPUZH6opZKCw==", + "path": "microsoft.codeanalysis.csharp/5.0.0", + "hashPath": "microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Al/Q8B+yO8odSqGVpSvrShMFDvlQdIBU//F3E6Rb0YdiLSALE9wh/pvozPNnfmh5HDnvU+mkmSjpz4hQO++jaA==", + "path": "microsoft.codeanalysis.csharp.workspaces/5.0.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZbUmIvT6lqTNKiv06Jl5wf0MTMi1vQ1oH7ou4CLcs2C/no/L7EhP3T8y3XXvn9VbqMcJaJnEsNA1jwYUMgc5jg==", + "path": "microsoft.codeanalysis.workspaces.common/5.0.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/G+LVoAGMz6Ae8nm+PGLxSw+F5RjYx/J7irbTO5uKAPw1bxHyQJLc/YOnpDxt+EpPtYxvC9wvBsg/kETZp1F9Q==", + "path": "microsoft.codeanalysis.workspaces.msbuild/5.0.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.5.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9tNBmK3EpYVGRQLiqP+bqK2m+TD0Gv//4vCzR7ZOgl4FWzCFyOpYdIVka13M4kcBdPdSJcs3wbHr3rmzOqbIMA==", + "path": "microsoft.entityframeworkcore/10.0.5", + "hashPath": "microsoft.entityframeworkcore.10.0.5.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-32c58Rnm47Qvhimawf67KO9PytgPz3QoWye7Abapt0Yocw/JnzMiSNj/pRoIKyn8Jxypkv86zxKD4Q/zNTc0Ag==", + "path": "microsoft.entityframeworkcore.abstractions/10.0.5", + "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.5.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gm6f0cC2w/2tcd4GeZJqEMruTercpIJfO5sSAFLtqTqblDBHgAFk70xwshUIUVX4I6sZwdEUSd1YxoKFk1AL0w==", + "path": "microsoft.entityframeworkcore.design/10.0.5", + "hashPath": "microsoft.entityframeworkcore.design.10.0.5.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uxmFjZEAB/KbsgWFSS4lLqkEHCfXxB2x0UcbiO4e5fCRpFFeTMSx/me6009nYJLu5IKlDwO1POh++P6RilFTDw==", + "path": "microsoft.entityframeworkcore.relational/10.0.5", + "hashPath": "microsoft.entityframeworkcore.relational.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xA4kkL+QS6KCAOKz/O0oquHs44Ob8J7zpBCNt3wjkBWDg5aCqfwG8rWWLsg5V86AM0sB849g9JjPjIdksTCIKg==", + "path": "microsoft.extensions.dependencymodel/10.0.5", + "hashPath": "microsoft.extensions.dependencymodel.10.0.5.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6NrxQGcZg6IunkN8K2F0UVMavNpfCjbjjjON7PYcL8FwI8aULKUreiHsRX/yaA8j3XsTJnQKUYpoQk5gBjULZw==", + "path": "microsoft.identitymodel.abstractions/8.17.0", + "hashPath": "microsoft.identitymodel.abstractions.8.17.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JbFZ3OVwtvqcqgBL0cIkhRYbIP7u9GIUYLOgbNqLWtBtZY8tGDpdGyXMzUVX0gVHq1ovuHsKZrkVv+ziHEnBHw==", + "path": "microsoft.identitymodel.jsonwebtokens/8.17.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.17.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w1vjfri0BWqW7RkSZY3ZsqekNfIJJg5BQSFs2j+a+pCXOVrkezmJcn74pT3djwjXJh71577C6wJQgNc2UPz30w==", + "path": "microsoft.identitymodel.logging/8.17.0", + "hashPath": "microsoft.identitymodel.logging.8.17.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-teaW35URIV2x78Tzk+dVJiC4M62/9mQoSEoDjDGoEZmcQa3H2rE+XQpm9Tmdo9KK1Lcrnve4zoyLavl69kCFGg==", + "path": "microsoft.identitymodel.tokens/8.17.0", + "hashPath": "microsoft.identitymodel.tokens.8.17.0.nupkg.sha512" + }, + "Microsoft.OpenApi/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==", + "path": "microsoft.openapi/2.0.0", + "hashPath": "microsoft.openapi.2.0.0.nupkg.sha512" + }, + "Microsoft.VisualStudio.SolutionPersistence/1.0.52": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oNv2JtYXhpdJrX63nibx1JT3uCESOBQ1LAk7Dtz/sr0+laW0KRM6eKp4CZ3MHDR2siIkKsY8MmUkeP5DKkQQ5w==", + "path": "microsoft.visualstudio.solutionpersistence/1.0.52", + "hashPath": "microsoft.visualstudio.solutionpersistence.1.0.52.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Npgsql/10.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q5RfBI+wywJSFUNDE1L4ZbHEHCFTblo8Uf6A6oe4feOUFYiUQXyAf9GBh5qEZpvJaHiEbpBPkQumjEhXCJxdrg==", + "path": "npgsql/10.0.2", + "hashPath": "npgsql.10.0.2.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P6EwH0Q4xkaA264iNZDqCPhWt8pscfUGxXazDQg4noBfqjoOlk4hKWfvBjF9ZX3R/9JybRmmJfmxr2iBMj0EpA==", + "path": "npgsql.entityframeworkcore.postgresql/10.0.1", + "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.1.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Composition/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==", + "path": "system.composition/9.0.0", + "hashPath": "system.composition.9.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==", + "path": "system.composition.attributedmodel/9.0.0", + "hashPath": "system.composition.attributedmodel.9.0.0.nupkg.sha512" + }, + "System.Composition.Convention/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==", + "path": "system.composition.convention/9.0.0", + "hashPath": "system.composition.convention.9.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==", + "path": "system.composition.hosting/9.0.0", + "hashPath": "system.composition.hosting.9.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==", + "path": "system.composition.runtime/9.0.0", + "hashPath": "system.composition.runtime.9.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==", + "path": "system.composition.typedparts/9.0.0", + "hashPath": "system.composition.typedparts.9.0.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nKikRYheDeSaXA3wGr2otwaiRFygBa25m+hc7MEomZVIEWZvKVqd8wgP9yn+8QpLRGgw//dUs4LErGx9gtVmAA==", + "path": "system.identitymodel.tokens.jwt/8.17.0", + "hashPath": "system.identitymodel.tokens.jwt.8.17.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.dll b/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.dll new file mode 100644 index 0000000..efb2d0b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.pdb b/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.pdb new file mode 100644 index 0000000..20e1183 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.pdb differ diff --git a/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.runtimeconfig.json b/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.runtimeconfig.json new file mode 100644 index 0000000..bf15a00 --- /dev/null +++ b/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "10.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.staticwebassets.endpoints.json b/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/tests/integration/backend/bin/Debug/net10.0/System.Diagnostics.EventLog.dll b/tests/integration/backend/bin/Debug/net10.0/System.Diagnostics.EventLog.dll new file mode 100755 index 0000000..58f5416 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/System.Diagnostics.EventLog.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll b/tests/integration/backend/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100755 index 0000000..07857e3 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/appsettings.Development.json b/tests/integration/backend/bin/Debug/net10.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/tests/integration/backend/bin/Debug/net10.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/tests/integration/backend/bin/Debug/net10.0/appsettings.Production.json b/tests/integration/backend/bin/Debug/net10.0/appsettings.Production.json new file mode 100644 index 0000000..1bc20da --- /dev/null +++ b/tests/integration/backend/bin/Debug/net10.0/appsettings.Production.json @@ -0,0 +1,17 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "Jwt": { + "Key": "${JWT_SECRET_KEY}", + "Issuer": "RacePlannerApi", + "Audience": "RacePlannerClient" + }, + "ConnectionStrings": { + "DefaultConnection": "${DATABASE_URL}" + } +} \ No newline at end of file diff --git a/tests/integration/backend/bin/Debug/net10.0/appsettings.json b/tests/integration/backend/bin/Debug/net10.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/tests/integration/backend/bin/Debug/net10.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.deps.json b/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.deps.json new file mode 100644 index 0000000..9dab115 --- /dev/null +++ b/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.deps.json @@ -0,0 +1,5023 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": { + "defines": [ + "TRACE", + "DEBUG", + "NET", + "NET10_0", + "NETCOREAPP", + "NET5_0_OR_GREATER", + "NET6_0_OR_GREATER", + "NET7_0_OR_GREATER", + "NET8_0_OR_GREATER", + "NET9_0_OR_GREATER", + "NET10_0_OR_GREATER", + "NETCOREAPP1_0_OR_GREATER", + "NETCOREAPP1_1_OR_GREATER", + "NETCOREAPP2_0_OR_GREATER", + "NETCOREAPP2_1_OR_GREATER", + "NETCOREAPP2_2_OR_GREATER", + "NETCOREAPP3_0_OR_GREATER", + "NETCOREAPP3_1_OR_GREATER" + ], + "languageVersion": "14.0", + "platform": "", + "allowUnsafe": false, + "warningsAsErrors": false, + "optimize": false, + "keyFile": "", + "emitEntryPoint": true, + "xmlDoc": false, + "debugType": "portable" + }, + "targets": { + ".NETCoreApp,Version=v10.0": { + "backend.Tests.Integration/1.0.0": { + "dependencies": { + "FluentAssertions": "8.9.0", + "Microsoft.AspNetCore.Mvc.Testing": "10.0.5", + "Microsoft.AspNetCore.TestHost": "10.0.5", + "Microsoft.EntityFrameworkCore.InMemory": "10.0.5", + "Microsoft.NET.Test.Sdk": "17.14.1", + "RacePlannerApi": "1.0.0", + "coverlet.collector": "6.0.4", + "xunit": "2.9.3", + "xunit.runner.visualstudio": "3.1.4", + "Microsoft.AspNetCore.Antiforgery": "10.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Authentication.BearerToken": "10.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies": "10.0.0.0", + "Microsoft.AspNetCore.Authentication.Core": "10.0.0.0", + "Microsoft.AspNetCore.Authentication": "10.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth": "10.0.0.0", + "Microsoft.AspNetCore.Authorization": "10.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy": "10.0.0.0", + "Microsoft.AspNetCore.Components.Authorization": "10.0.0.0", + "Microsoft.AspNetCore.Components": "10.0.0.0", + "Microsoft.AspNetCore.Components.Endpoints": "10.0.0.0", + "Microsoft.AspNetCore.Components.Forms": "10.0.0.0", + "Microsoft.AspNetCore.Components.Server": "10.0.0.0", + "Microsoft.AspNetCore.Components.Web": "10.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.CookiePolicy": "10.0.0.0", + "Microsoft.AspNetCore.Cors": "10.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal": "10.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "10.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.DataProtection": "10.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions": "10.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Diagnostics": "10.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "10.0.0.0", + "Microsoft.AspNetCore": "10.0.0.0", + "Microsoft.AspNetCore.HostFiltering": "10.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Hosting": "10.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common": "10.0.0.0", + "Microsoft.AspNetCore.Http.Connections": "10.0.0.0", + "Microsoft.AspNetCore.Http": "10.0.0.0", + "Microsoft.AspNetCore.Http.Extensions": "10.0.0.0", + "Microsoft.AspNetCore.Http.Features": "10.0.0.0", + "Microsoft.AspNetCore.Http.Results": "10.0.0.0", + "Microsoft.AspNetCore.HttpLogging": "10.0.0.0", + "Microsoft.AspNetCore.HttpOverrides": "10.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy": "10.0.0.0", + "Microsoft.AspNetCore.Identity": "10.0.0.0", + "Microsoft.AspNetCore.Localization": "10.0.0.0", + "Microsoft.AspNetCore.Localization.Routing": "10.0.0.0", + "Microsoft.AspNetCore.Metadata": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Core": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "10.0.0.0", + "Microsoft.AspNetCore.Mvc": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "10.0.0.0", + "Microsoft.AspNetCore.OutputCaching": "10.0.0.0", + "Microsoft.AspNetCore.RateLimiting": "10.0.0.0", + "Microsoft.AspNetCore.Razor": "10.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime": "10.0.0.0", + "Microsoft.AspNetCore.RequestDecompression": "10.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.ResponseCaching": "10.0.0.0", + "Microsoft.AspNetCore.ResponseCompression": "10.0.0.0", + "Microsoft.AspNetCore.Rewrite": "10.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Routing": "10.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys": "10.0.0.0", + "Microsoft.AspNetCore.Server.IIS": "10.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "10.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core": "10.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel": "10.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "10.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "10.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "10.0.0.0", + "Microsoft.AspNetCore.Session": "10.0.0.0", + "Microsoft.AspNetCore.SignalR.Common": "10.0.0.0", + "Microsoft.AspNetCore.SignalR.Core": "10.0.0.0", + "Microsoft.AspNetCore.SignalR": "10.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "10.0.0.0", + "Microsoft.AspNetCore.StaticAssets": "10.0.0.0", + "Microsoft.AspNetCore.StaticFiles": "10.0.0.0", + "Microsoft.AspNetCore.WebSockets": "10.0.0.0", + "Microsoft.AspNetCore.WebUtilities": "10.0.0.0", + "Microsoft.CSharp": "10.0.0.0", + "Microsoft.Extensions.Configuration.Ini": "10.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile": "10.0.0.0", + "Microsoft.Extensions.Configuration.Xml": "10.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "10.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "10.0.0.0", + "Microsoft.Extensions.Features": "10.0.0.0", + "Microsoft.Extensions.FileProviders.Composite": "10.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded": "10.0.0.0", + "Microsoft.Extensions.Http": "10.0.0.0", + "Microsoft.Extensions.Identity.Core": "10.0.0.0", + "Microsoft.Extensions.Identity.Stores": "10.0.0.0", + "Microsoft.Extensions.Localization.Abstractions": "10.0.0.0", + "Microsoft.Extensions.Localization": "10.0.0.0", + "Microsoft.Extensions.Logging.TraceSource": "10.0.0.0", + "Microsoft.Extensions.ObjectPool": "10.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations": "10.0.0.0", + "Microsoft.Extensions.Validation": "10.0.0.0", + "Microsoft.Extensions.WebEncoders": "10.0.0.0", + "Microsoft.JSInterop": "10.0.0.0", + "Microsoft.Net.Http.Headers": "10.0.0.0", + "Microsoft.VisualBasic.Core": "15.0.0.0", + "Microsoft.VisualBasic": "10.0.0.0", + "Microsoft.Win32.Primitives": "10.0.0.0", + "Microsoft.Win32.Registry": "10.0.0.0", + "mscorlib": "4.0.0.0", + "netstandard": "2.1.0.0", + "System.AppContext": "10.0.0.0", + "System.Buffers": "10.0.0.0", + "System.Collections.Concurrent": "10.0.0.0", + "System.Collections": "10.0.0.0", + "System.Collections.Immutable": "10.0.0.0", + "System.Collections.NonGeneric": "10.0.0.0", + "System.Collections.Specialized": "10.0.0.0", + "System.ComponentModel.Annotations": "10.0.0.0", + "System.ComponentModel.DataAnnotations": "4.0.0.0", + "System.ComponentModel": "10.0.0.0", + "System.ComponentModel.EventBasedAsync": "10.0.0.0", + "System.ComponentModel.Primitives": "10.0.0.0", + "System.ComponentModel.TypeConverter": "10.0.0.0", + "System.Configuration": "4.0.0.0", + "System.Console": "10.0.0.0", + "System.Core": "4.0.0.0", + "System.Data.Common": "10.0.0.0", + "System.Data.DataSetExtensions": "10.0.0.0", + "System.Data": "4.0.0.0", + "System.Diagnostics.Contracts": "10.0.0.0", + "System.Diagnostics.Debug": "10.0.0.0", + "System.Diagnostics.DiagnosticSource": "10.0.0.0", + "System.Diagnostics.FileVersionInfo": "10.0.0.0", + "System.Diagnostics.Process": "10.0.0.0", + "System.Diagnostics.StackTrace": "10.0.0.0", + "System.Diagnostics.TextWriterTraceListener": "10.0.0.0", + "System.Diagnostics.Tools": "10.0.0.0", + "System.Diagnostics.TraceSource": "10.0.0.0", + "System.Diagnostics.Tracing": "10.0.0.0", + "System": "4.0.0.0", + "System.Drawing": "4.0.0.0", + "System.Drawing.Primitives": "10.0.0.0", + "System.Dynamic.Runtime": "10.0.0.0", + "System.Formats.Asn1": "10.0.0.0", + "System.Formats.Cbor": "10.0.0.0", + "System.Formats.Tar": "10.0.0.0", + "System.Globalization.Calendars": "10.0.0.0", + "System.Globalization": "10.0.0.0", + "System.Globalization.Extensions": "10.0.0.0", + "System.IO.Compression.Brotli": "10.0.0.0", + "System.IO.Compression": "10.0.0.0", + "System.IO.Compression.FileSystem": "4.0.0.0", + "System.IO.Compression.ZipFile": "10.0.0.0", + "System.IO": "10.0.0.0", + "System.IO.FileSystem.AccessControl": "10.0.0.0", + "System.IO.FileSystem": "10.0.0.0", + "System.IO.FileSystem.DriveInfo": "10.0.0.0", + "System.IO.FileSystem.Primitives": "10.0.0.0", + "System.IO.FileSystem.Watcher": "10.0.0.0", + "System.IO.IsolatedStorage": "10.0.0.0", + "System.IO.MemoryMappedFiles": "10.0.0.0", + "System.IO.Pipelines": "10.0.0.0", + "System.IO.Pipes.AccessControl": "10.0.0.0", + "System.IO.Pipes": "10.0.0.0", + "System.IO.UnmanagedMemoryStream": "10.0.0.0", + "System.Linq.AsyncEnumerable": "10.0.0.0", + "System.Linq": "10.0.0.0", + "System.Linq.Expressions": "10.0.0.0", + "System.Linq.Parallel": "10.0.0.0", + "System.Linq.Queryable": "10.0.0.0", + "System.Memory": "10.0.0.0", + "System.Net": "4.0.0.0", + "System.Net.Http": "10.0.0.0", + "System.Net.Http.Json": "10.0.0.0", + "System.Net.HttpListener": "10.0.0.0", + "System.Net.Mail": "10.0.0.0", + "System.Net.NameResolution": "10.0.0.0", + "System.Net.NetworkInformation": "10.0.0.0", + "System.Net.Ping": "10.0.0.0", + "System.Net.Primitives": "10.0.0.0", + "System.Net.Quic": "10.0.0.0", + "System.Net.Requests": "10.0.0.0", + "System.Net.Security": "10.0.0.0", + "System.Net.ServerSentEvents": "10.0.0.0", + "System.Net.ServicePoint": "10.0.0.0", + "System.Net.Sockets": "10.0.0.0", + "System.Net.WebClient": "10.0.0.0", + "System.Net.WebHeaderCollection": "10.0.0.0", + "System.Net.WebProxy": "10.0.0.0", + "System.Net.WebSockets.Client": "10.0.0.0", + "System.Net.WebSockets": "10.0.0.0", + "System.Numerics": "4.0.0.0", + "System.Numerics.Vectors": "10.0.0.0", + "System.ObjectModel": "10.0.0.0", + "System.Reflection.DispatchProxy": "10.0.0.0", + "System.Reflection": "10.0.0.0", + "System.Reflection.Emit": "10.0.0.0", + "System.Reflection.Emit.ILGeneration": "10.0.0.0", + "System.Reflection.Emit.Lightweight": "10.0.0.0", + "System.Reflection.Extensions": "10.0.0.0", + "System.Reflection.Metadata": "10.0.0.0", + "System.Reflection.Primitives": "10.0.0.0", + "System.Reflection.TypeExtensions": "10.0.0.0", + "System.Resources.Reader": "10.0.0.0", + "System.Resources.ResourceManager": "10.0.0.0", + "System.Resources.Writer": "10.0.0.0", + "System.Runtime.CompilerServices.Unsafe": "10.0.0.0", + "System.Runtime.CompilerServices.VisualC": "10.0.0.0", + "System.Runtime": "10.0.0.0", + "System.Runtime.Extensions": "10.0.0.0", + "System.Runtime.Handles": "10.0.0.0", + "System.Runtime.InteropServices": "10.0.0.0", + "System.Runtime.InteropServices.JavaScript": "10.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation": "10.0.0.0", + "System.Runtime.Intrinsics": "10.0.0.0", + "System.Runtime.Loader": "10.0.0.0", + "System.Runtime.Numerics": "10.0.0.0", + "System.Runtime.Serialization": "4.0.0.0", + "System.Runtime.Serialization.Formatters": "8.1.0.0", + "System.Runtime.Serialization.Json": "10.0.0.0", + "System.Runtime.Serialization.Primitives": "10.0.0.0", + "System.Runtime.Serialization.Xml": "10.0.0.0", + "System.Security.AccessControl": "10.0.0.0", + "System.Security.Claims": "10.0.0.0", + "System.Security.Cryptography.Algorithms": "10.0.0.0", + "System.Security.Cryptography.Cng": "10.0.0.0", + "System.Security.Cryptography.Csp": "10.0.0.0", + "System.Security.Cryptography": "10.0.0.0", + "System.Security.Cryptography.Encoding": "10.0.0.0", + "System.Security.Cryptography.OpenSsl": "10.0.0.0", + "System.Security.Cryptography.Primitives": "10.0.0.0", + "System.Security.Cryptography.X509Certificates": "10.0.0.0", + "System.Security.Cryptography.Xml": "10.0.0.0", + "System.Security": "4.0.0.0", + "System.Security.Principal": "10.0.0.0", + "System.Security.Principal.Windows": "10.0.0.0", + "System.Security.SecureString": "10.0.0.0", + "System.ServiceModel.Web": "4.0.0.0", + "System.ServiceProcess": "4.0.0.0", + "System.Text.Encoding.CodePages": "10.0.0.0", + "System.Text.Encoding": "10.0.0.0", + "System.Text.Encoding.Extensions": "10.0.0.0", + "System.Text.Encodings.Web": "10.0.0.0", + "System.Text.Json": "10.0.0.0", + "System.Text.RegularExpressions": "10.0.0.0", + "System.Threading.AccessControl": "10.0.0.0", + "System.Threading.Channels": "10.0.0.0", + "System.Threading": "10.0.0.0", + "System.Threading.Overlapped": "10.0.0.0", + "System.Threading.RateLimiting": "10.0.0.0", + "System.Threading.Tasks.Dataflow": "10.0.0.0", + "System.Threading.Tasks": "10.0.0.0", + "System.Threading.Tasks.Extensions": "10.0.0.0", + "System.Threading.Tasks.Parallel": "10.0.0.0", + "System.Threading.Thread": "10.0.0.0", + "System.Threading.ThreadPool": "10.0.0.0", + "System.Threading.Timer": "10.0.0.0", + "System.Transactions": "4.0.0.0", + "System.Transactions.Local": "10.0.0.0", + "System.ValueTuple": "10.0.0.0", + "System.Web": "4.0.0.0", + "System.Web.HttpUtility": "10.0.0.0", + "System.Windows": "4.0.0.0", + "System.Xml": "4.0.0.0", + "System.Xml.Linq": "4.0.0.0", + "System.Xml.ReaderWriter": "10.0.0.0", + "System.Xml.Serialization": "4.0.0.0", + "System.Xml.XDocument": "10.0.0.0", + "System.Xml.XmlDocument": "10.0.0.0", + "System.Xml.XmlSerializer": "10.0.0.0", + "System.Xml.XPath": "10.0.0.0", + "System.Xml.XPath.XDocument": "10.0.0.0", + "WindowsBase": "4.0.0.0" + }, + "runtime": { + "backend.Tests.Integration.dll": {} + }, + "compile": { + "backend.Tests.Integration.dll": {} + } + }, + "BCrypt.Net-Next/4.1.0": { + "runtime": { + "lib/net10.0/BCrypt.Net-Next.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.1.0.0" + } + }, + "compile": { + "lib/net10.0/BCrypt.Net-Next.dll": {} + } + }, + "FluentAssertions/8.9.0": { + "runtime": { + "lib/net6.0/FluentAssertions.dll": { + "assemblyVersion": "8.9.0.0", + "fileVersion": "8.9.0.0" + } + }, + "compile": { + "lib/net6.0/FluentAssertions.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.5": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Testing/10.0.5": { + "dependencies": { + "Microsoft.AspNetCore.TestHost": "10.0.5", + "Microsoft.Extensions.DependencyModel": "10.0.5", + "Microsoft.Extensions.Hosting": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Mvc.Testing.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Mvc.Testing.dll": {} + } + }, + "Microsoft.AspNetCore.OpenApi/10.0.0": { + "dependencies": { + "Microsoft.OpenApi": "2.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {} + } + }, + "Microsoft.AspNetCore.TestHost/10.0.5": { + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.TestHost.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.TestHost.dll": {} + } + }, + "Microsoft.CodeCoverage/17.14.1": { + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.225.12603" + } + }, + "compile": { + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + } + }, + "Microsoft.EntityFrameworkCore/10.0.5": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "10.0.5", + "Microsoft.EntityFrameworkCore.Analyzers": "10.0.5", + "Microsoft.Extensions.Caching.Memory": "10.0.5", + "Microsoft.Extensions.Logging": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.5": { + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.InMemory/10.0.5": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.5", + "Microsoft.Extensions.Caching.Memory": "10.0.5", + "Microsoft.Extensions.Logging": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.InMemory.dll": { + "assemblyVersion": "10.0.5.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.InMemory.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.5", + "Microsoft.Extensions.Caching.Memory": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.Logging": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "10.0.4.0", + "fileVersion": "10.0.426.12010" + } + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Caching.Memory/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "10.0.5", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Logging.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "Microsoft.Extensions.Configuration/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.5", + "Microsoft.Extensions.FileProviders.Physical": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.Configuration.FileExtensions": "10.0.5", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.Configuration.Json": "10.0.5", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.5", + "Microsoft.Extensions.FileProviders.Physical": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.5": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.5": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/10.0.5": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "10.0.0.5", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.Diagnostics/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.5", + "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.5": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/10.0.5": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.5", + "Microsoft.Extensions.FileSystemGlobbing": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/10.0.5": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Extensions.Hosting/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.Configuration.Binder": "10.0.5", + "Microsoft.Extensions.Configuration.CommandLine": "10.0.5", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "10.0.5", + "Microsoft.Extensions.Configuration.FileExtensions": "10.0.5", + "Microsoft.Extensions.Configuration.Json": "10.0.5", + "Microsoft.Extensions.Configuration.UserSecrets": "10.0.5", + "Microsoft.Extensions.DependencyInjection": "10.0.5", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Diagnostics": "10.0.5", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.5", + "Microsoft.Extensions.FileProviders.Physical": "10.0.5", + "Microsoft.Extensions.Hosting.Abstractions": "10.0.5", + "Microsoft.Extensions.Logging": "10.0.5", + "Microsoft.Extensions.Logging.Abstractions": "10.0.5", + "Microsoft.Extensions.Logging.Configuration": "10.0.5", + "Microsoft.Extensions.Logging.Console": "10.0.5", + "Microsoft.Extensions.Logging.Debug": "10.0.5", + "Microsoft.Extensions.Logging.EventLog": "10.0.5", + "Microsoft.Extensions.Logging.EventSource": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Hosting.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Hosting.dll": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.5", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.5", + "Microsoft.Extensions.Logging.Abstractions": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/10.0.5": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.5", + "Microsoft.Extensions.Logging.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.5": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.Configuration.Binder": "10.0.5", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Logging": "10.0.5", + "Microsoft.Extensions.Logging.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5", + "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Logging.Console/10.0.5": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Logging": "10.0.5", + "Microsoft.Extensions.Logging.Abstractions": "10.0.5", + "Microsoft.Extensions.Logging.Configuration": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Console.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Console.dll": {} + } + }, + "Microsoft.Extensions.Logging.Debug/10.0.5": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Logging": "10.0.5", + "Microsoft.Extensions.Logging.Abstractions": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Debug.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Debug.dll": {} + } + }, + "Microsoft.Extensions.Logging.EventLog/10.0.5": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Logging": "10.0.5", + "Microsoft.Extensions.Logging.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5", + "System.Diagnostics.EventLog": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.EventLog.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.EventLog.dll": {} + } + }, + "Microsoft.Extensions.Logging.EventSource/10.0.5": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Logging": "10.0.5", + "Microsoft.Extensions.Logging.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.EventSource.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.EventSource.dll": {} + } + }, + "Microsoft.Extensions.Options/10.0.5": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.5": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.5", + "Microsoft.Extensions.Configuration.Binder": "10.0.5", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.5", + "Microsoft.Extensions.Options": "10.0.5", + "Microsoft.Extensions.Primitives": "10.0.5" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/10.0.5": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.IdentityModel.Abstractions/8.17.0": { + "runtime": { + "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.17.0.0", + "fileVersion": "8.17.0.26082" + } + }, + "compile": { + "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.17.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.17.0" + }, + "runtime": { + "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.17.0.0", + "fileVersion": "8.17.0.26082" + } + }, + "compile": { + "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/8.17.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.17.0" + }, + "runtime": { + "lib/net10.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.17.0.0", + "fileVersion": "8.17.0.26082" + } + }, + "compile": { + "lib/net10.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.17.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.17.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/8.17.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "10.0.5", + "Microsoft.IdentityModel.Logging": "8.17.0" + }, + "runtime": { + "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.17.0.0", + "fileVersion": "8.17.0.26082" + } + }, + "compile": { + "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, + "Microsoft.NET.Test.Sdk/17.14.1": { + "dependencies": { + "Microsoft.CodeCoverage": "17.14.1", + "Microsoft.TestPlatform.TestHost": "17.14.1" + } + }, + "Microsoft.OpenApi/2.0.0": { + "runtime": { + "lib/net8.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + }, + "compile": { + "lib/net8.0/Microsoft.OpenApi.dll": {} + } + }, + "Microsoft.TestPlatform.ObjectModel/17.14.1": { + "runtime": { + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + } + }, + "resources": { + "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + } + }, + "Microsoft.TestPlatform.TestHost/17.14.1": { + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.14.1", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + } + }, + "resources": { + "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/net8.0/testhost.dll": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + }, + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": {} + } + }, + "Npgsql/10.0.2": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "10.0.5" + }, + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.2.0", + "fileVersion": "10.0.2.0" + } + }, + "compile": { + "lib/net10.0/Npgsql.dll": {} + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.1": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.5", + "Microsoft.EntityFrameworkCore.Relational": "10.0.4", + "Npgsql": "10.0.2" + }, + "runtime": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "10.0.1.0", + "fileVersion": "10.0.1.0" + } + }, + "compile": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} + } + }, + "System.Diagnostics.EventLog/10.0.5": { + "runtime": { + "lib/net10.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + }, + "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.526.15411" + } + }, + "compile": { + "lib/net10.0/System.Diagnostics.EventLog.dll": {} + } + }, + "System.IdentityModel.Tokens.Jwt/8.17.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.17.0", + "Microsoft.IdentityModel.Tokens": "8.17.0" + }, + "runtime": { + "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.17.0.0", + "fileVersion": "8.17.0.26082" + } + }, + "compile": { + "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": {} + } + }, + "xunit/2.9.3": { + "dependencies": { + "xunit.analyzers": "1.18.0", + "xunit.assert": "2.9.3", + "xunit.core": "2.9.3" + } + }, + "xunit.abstractions/2.0.3": { + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "0.0.0.0" + } + }, + "compile": { + "lib/netstandard2.0/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.9.3": { + "runtime": { + "lib/net6.0/xunit.assert.dll": { + "assemblyVersion": "2.9.3.0", + "fileVersion": "2.9.3.0" + } + }, + "compile": { + "lib/net6.0/xunit.assert.dll": {} + } + }, + "xunit.core/2.9.3": { + "dependencies": { + "xunit.extensibility.core": "2.9.3", + "xunit.extensibility.execution": "2.9.3" + } + }, + "xunit.extensibility.core/2.9.3": { + "dependencies": { + "xunit.abstractions": "2.0.3" + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": { + "assemblyVersion": "2.9.3.0", + "fileVersion": "2.9.3.0" + } + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.9.3": { + "dependencies": { + "xunit.extensibility.core": "2.9.3" + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "assemblyVersion": "2.9.3.0", + "fileVersion": "2.9.3.0" + } + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "RacePlannerApi/1.0.0": { + "dependencies": { + "BCrypt.Net-Next": "4.1.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "10.0.5", + "Microsoft.AspNetCore.OpenApi": "10.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.1", + "System.IdentityModel.Tokens.Jwt": "8.17.0" + }, + "runtime": { + "RacePlannerApi.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + }, + "compile": { + "RacePlannerApi.dll": {} + } + }, + "Microsoft.AspNetCore.Antiforgery/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.BearerToken/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.BearerToken.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Cookies/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Cookies.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Core/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.OAuth/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.OAuth.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization.Policy/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Authorization/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Endpoints/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Endpoints.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Forms/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Server/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Server.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Web/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Web.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.CookiePolicy/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.CookiePolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cors/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.Internal/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Extensions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HostFiltering/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HostFiltering.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Html.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Extensions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Features/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Results/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Results.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpLogging/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpLogging.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpOverrides/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpsPolicy/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpsPolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Identity.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization.Routing/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Metadata/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Metadata.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Core/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Cors/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Localization/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.RazorPages/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.OutputCaching/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.OutputCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.RateLimiting/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.RateLimiting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Runtime/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.RequestDecompression/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.RequestDecompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCompression/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Rewrite/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Rewrite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.HttpSys/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.HttpSys.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IIS/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IIS.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IISIntegration/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Session/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Session.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Core/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticAssets/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticAssets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticFiles/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticFiles.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebSockets/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebSockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebUtilities/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CSharp/10.0.0.0": { + "compile": { + "Microsoft.CSharp.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Ini/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Ini.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.KeyPerFile/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Xml/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Features/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Composite/10.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Embedded/10.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Http/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Core/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Stores/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Stores.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.TraceSource/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.TraceSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.ObjectPool/10.0.0.0": { + "compile": { + "Microsoft.Extensions.ObjectPool.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.DataAnnotations/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Validation/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Validation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.WebEncoders/10.0.0.0": { + "compile": { + "Microsoft.Extensions.WebEncoders.dll": {} + }, + "compileOnly": true + }, + "Microsoft.JSInterop/10.0.0.0": { + "compile": { + "Microsoft.JSInterop.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Net.Http.Headers/10.0.0.0": { + "compile": { + "Microsoft.Net.Http.Headers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic.Core/15.0.0.0": { + "compile": { + "Microsoft.VisualBasic.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic/10.0.0.0": { + "compile": { + "Microsoft.VisualBasic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Primitives/10.0.0.0": { + "compile": { + "Microsoft.Win32.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Registry/10.0.0.0": { + "compile": { + "Microsoft.Win32.Registry.dll": {} + }, + "compileOnly": true + }, + "mscorlib/4.0.0.0": { + "compile": { + "mscorlib.dll": {} + }, + "compileOnly": true + }, + "netstandard/2.1.0.0": { + "compile": { + "netstandard.dll": {} + }, + "compileOnly": true + }, + "System.AppContext/10.0.0.0": { + "compile": { + "System.AppContext.dll": {} + }, + "compileOnly": true + }, + "System.Buffers/10.0.0.0": { + "compile": { + "System.Buffers.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Concurrent/10.0.0.0": { + "compile": { + "System.Collections.Concurrent.dll": {} + }, + "compileOnly": true + }, + "System.Collections/10.0.0.0": { + "compile": { + "System.Collections.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Immutable/10.0.0.0": { + "compile": { + "System.Collections.Immutable.dll": {} + }, + "compileOnly": true + }, + "System.Collections.NonGeneric/10.0.0.0": { + "compile": { + "System.Collections.NonGeneric.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Specialized/10.0.0.0": { + "compile": { + "System.Collections.Specialized.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Annotations/10.0.0.0": { + "compile": { + "System.ComponentModel.Annotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "compile": { + "System.ComponentModel.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel/10.0.0.0": { + "compile": { + "System.ComponentModel.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.EventBasedAsync/10.0.0.0": { + "compile": { + "System.ComponentModel.EventBasedAsync.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Primitives/10.0.0.0": { + "compile": { + "System.ComponentModel.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.TypeConverter/10.0.0.0": { + "compile": { + "System.ComponentModel.TypeConverter.dll": {} + }, + "compileOnly": true + }, + "System.Configuration/4.0.0.0": { + "compile": { + "System.Configuration.dll": {} + }, + "compileOnly": true + }, + "System.Console/10.0.0.0": { + "compile": { + "System.Console.dll": {} + }, + "compileOnly": true + }, + "System.Core/4.0.0.0": { + "compile": { + "System.Core.dll": {} + }, + "compileOnly": true + }, + "System.Data.Common/10.0.0.0": { + "compile": { + "System.Data.Common.dll": {} + }, + "compileOnly": true + }, + "System.Data.DataSetExtensions/10.0.0.0": { + "compile": { + "System.Data.DataSetExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Data/4.0.0.0": { + "compile": { + "System.Data.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Contracts/10.0.0.0": { + "compile": { + "System.Diagnostics.Contracts.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Debug/10.0.0.0": { + "compile": { + "System.Diagnostics.Debug.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.DiagnosticSource/10.0.0.0": { + "compile": { + "System.Diagnostics.DiagnosticSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.FileVersionInfo/10.0.0.0": { + "compile": { + "System.Diagnostics.FileVersionInfo.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Process/10.0.0.0": { + "compile": { + "System.Diagnostics.Process.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.StackTrace/10.0.0.0": { + "compile": { + "System.Diagnostics.StackTrace.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TextWriterTraceListener/10.0.0.0": { + "compile": { + "System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tools/10.0.0.0": { + "compile": { + "System.Diagnostics.Tools.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TraceSource/10.0.0.0": { + "compile": { + "System.Diagnostics.TraceSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tracing/10.0.0.0": { + "compile": { + "System.Diagnostics.Tracing.dll": {} + }, + "compileOnly": true + }, + "System/4.0.0.0": { + "compile": { + "System.dll": {} + }, + "compileOnly": true + }, + "System.Drawing/4.0.0.0": { + "compile": { + "System.Drawing.dll": {} + }, + "compileOnly": true + }, + "System.Drawing.Primitives/10.0.0.0": { + "compile": { + "System.Drawing.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Dynamic.Runtime/10.0.0.0": { + "compile": { + "System.Dynamic.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Asn1/10.0.0.0": { + "compile": { + "System.Formats.Asn1.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Cbor/10.0.0.0": { + "compile": { + "System.Formats.Cbor.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Tar/10.0.0.0": { + "compile": { + "System.Formats.Tar.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Calendars/10.0.0.0": { + "compile": { + "System.Globalization.Calendars.dll": {} + }, + "compileOnly": true + }, + "System.Globalization/10.0.0.0": { + "compile": { + "System.Globalization.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Extensions/10.0.0.0": { + "compile": { + "System.Globalization.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.Brotli/10.0.0.0": { + "compile": { + "System.IO.Compression.Brotli.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression/10.0.0.0": { + "compile": { + "System.IO.Compression.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "compile": { + "System.IO.Compression.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.ZipFile/10.0.0.0": { + "compile": { + "System.IO.Compression.ZipFile.dll": {} + }, + "compileOnly": true + }, + "System.IO/10.0.0.0": { + "compile": { + "System.IO.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.AccessControl/10.0.0.0": { + "compile": { + "System.IO.FileSystem.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem/10.0.0.0": { + "compile": { + "System.IO.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.DriveInfo/10.0.0.0": { + "compile": { + "System.IO.FileSystem.DriveInfo.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Primitives/10.0.0.0": { + "compile": { + "System.IO.FileSystem.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Watcher/10.0.0.0": { + "compile": { + "System.IO.FileSystem.Watcher.dll": {} + }, + "compileOnly": true + }, + "System.IO.IsolatedStorage/10.0.0.0": { + "compile": { + "System.IO.IsolatedStorage.dll": {} + }, + "compileOnly": true + }, + "System.IO.MemoryMappedFiles/10.0.0.0": { + "compile": { + "System.IO.MemoryMappedFiles.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipelines/10.0.0.0": { + "compile": { + "System.IO.Pipelines.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes.AccessControl/10.0.0.0": { + "compile": { + "System.IO.Pipes.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes/10.0.0.0": { + "compile": { + "System.IO.Pipes.dll": {} + }, + "compileOnly": true + }, + "System.IO.UnmanagedMemoryStream/10.0.0.0": { + "compile": { + "System.IO.UnmanagedMemoryStream.dll": {} + }, + "compileOnly": true + }, + "System.Linq.AsyncEnumerable/10.0.0.0": { + "compile": { + "System.Linq.AsyncEnumerable.dll": {} + }, + "compileOnly": true + }, + "System.Linq/10.0.0.0": { + "compile": { + "System.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Expressions/10.0.0.0": { + "compile": { + "System.Linq.Expressions.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Parallel/10.0.0.0": { + "compile": { + "System.Linq.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Queryable/10.0.0.0": { + "compile": { + "System.Linq.Queryable.dll": {} + }, + "compileOnly": true + }, + "System.Memory/10.0.0.0": { + "compile": { + "System.Memory.dll": {} + }, + "compileOnly": true + }, + "System.Net/4.0.0.0": { + "compile": { + "System.Net.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http/10.0.0.0": { + "compile": { + "System.Net.Http.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http.Json/10.0.0.0": { + "compile": { + "System.Net.Http.Json.dll": {} + }, + "compileOnly": true + }, + "System.Net.HttpListener/10.0.0.0": { + "compile": { + "System.Net.HttpListener.dll": {} + }, + "compileOnly": true + }, + "System.Net.Mail/10.0.0.0": { + "compile": { + "System.Net.Mail.dll": {} + }, + "compileOnly": true + }, + "System.Net.NameResolution/10.0.0.0": { + "compile": { + "System.Net.NameResolution.dll": {} + }, + "compileOnly": true + }, + "System.Net.NetworkInformation/10.0.0.0": { + "compile": { + "System.Net.NetworkInformation.dll": {} + }, + "compileOnly": true + }, + "System.Net.Ping/10.0.0.0": { + "compile": { + "System.Net.Ping.dll": {} + }, + "compileOnly": true + }, + "System.Net.Primitives/10.0.0.0": { + "compile": { + "System.Net.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Net.Quic/10.0.0.0": { + "compile": { + "System.Net.Quic.dll": {} + }, + "compileOnly": true + }, + "System.Net.Requests/10.0.0.0": { + "compile": { + "System.Net.Requests.dll": {} + }, + "compileOnly": true + }, + "System.Net.Security/10.0.0.0": { + "compile": { + "System.Net.Security.dll": {} + }, + "compileOnly": true + }, + "System.Net.ServerSentEvents/10.0.0.0": { + "compile": { + "System.Net.ServerSentEvents.dll": {} + }, + "compileOnly": true + }, + "System.Net.ServicePoint/10.0.0.0": { + "compile": { + "System.Net.ServicePoint.dll": {} + }, + "compileOnly": true + }, + "System.Net.Sockets/10.0.0.0": { + "compile": { + "System.Net.Sockets.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebClient/10.0.0.0": { + "compile": { + "System.Net.WebClient.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebHeaderCollection/10.0.0.0": { + "compile": { + "System.Net.WebHeaderCollection.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebProxy/10.0.0.0": { + "compile": { + "System.Net.WebProxy.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets.Client/10.0.0.0": { + "compile": { + "System.Net.WebSockets.Client.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets/10.0.0.0": { + "compile": { + "System.Net.WebSockets.dll": {} + }, + "compileOnly": true + }, + "System.Numerics/4.0.0.0": { + "compile": { + "System.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Numerics.Vectors/10.0.0.0": { + "compile": { + "System.Numerics.Vectors.dll": {} + }, + "compileOnly": true + }, + "System.ObjectModel/10.0.0.0": { + "compile": { + "System.ObjectModel.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.DispatchProxy/10.0.0.0": { + "compile": { + "System.Reflection.DispatchProxy.dll": {} + }, + "compileOnly": true + }, + "System.Reflection/10.0.0.0": { + "compile": { + "System.Reflection.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit/10.0.0.0": { + "compile": { + "System.Reflection.Emit.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.ILGeneration/10.0.0.0": { + "compile": { + "System.Reflection.Emit.ILGeneration.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Lightweight/10.0.0.0": { + "compile": { + "System.Reflection.Emit.Lightweight.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Extensions/10.0.0.0": { + "compile": { + "System.Reflection.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Metadata/10.0.0.0": { + "compile": { + "System.Reflection.Metadata.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Primitives/10.0.0.0": { + "compile": { + "System.Reflection.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.TypeExtensions/10.0.0.0": { + "compile": { + "System.Reflection.TypeExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Reader/10.0.0.0": { + "compile": { + "System.Resources.Reader.dll": {} + }, + "compileOnly": true + }, + "System.Resources.ResourceManager/10.0.0.0": { + "compile": { + "System.Resources.ResourceManager.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Writer/10.0.0.0": { + "compile": { + "System.Resources.Writer.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.Unsafe/10.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.VisualC/10.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.VisualC.dll": {} + }, + "compileOnly": true + }, + "System.Runtime/10.0.0.0": { + "compile": { + "System.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Extensions/10.0.0.0": { + "compile": { + "System.Runtime.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Handles/10.0.0.0": { + "compile": { + "System.Runtime.Handles.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices/10.0.0.0": { + "compile": { + "System.Runtime.InteropServices.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.JavaScript/10.0.0.0": { + "compile": { + "System.Runtime.InteropServices.JavaScript.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.RuntimeInformation/10.0.0.0": { + "compile": { + "System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Intrinsics/10.0.0.0": { + "compile": { + "System.Runtime.Intrinsics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Loader/10.0.0.0": { + "compile": { + "System.Runtime.Loader.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Numerics/10.0.0.0": { + "compile": { + "System.Runtime.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization/4.0.0.0": { + "compile": { + "System.Runtime.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Formatters/8.1.0.0": { + "compile": { + "System.Runtime.Serialization.Formatters.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Json/10.0.0.0": { + "compile": { + "System.Runtime.Serialization.Json.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Primitives/10.0.0.0": { + "compile": { + "System.Runtime.Serialization.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Xml/10.0.0.0": { + "compile": { + "System.Runtime.Serialization.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security.AccessControl/10.0.0.0": { + "compile": { + "System.Security.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Claims/10.0.0.0": { + "compile": { + "System.Security.Claims.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Algorithms/10.0.0.0": { + "compile": { + "System.Security.Cryptography.Algorithms.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Cng/10.0.0.0": { + "compile": { + "System.Security.Cryptography.Cng.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Csp/10.0.0.0": { + "compile": { + "System.Security.Cryptography.Csp.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography/10.0.0.0": { + "compile": { + "System.Security.Cryptography.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Encoding/10.0.0.0": { + "compile": { + "System.Security.Cryptography.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.OpenSsl/10.0.0.0": { + "compile": { + "System.Security.Cryptography.OpenSsl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Primitives/10.0.0.0": { + "compile": { + "System.Security.Cryptography.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.X509Certificates/10.0.0.0": { + "compile": { + "System.Security.Cryptography.X509Certificates.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Xml/10.0.0.0": { + "compile": { + "System.Security.Cryptography.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security/4.0.0.0": { + "compile": { + "System.Security.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal/10.0.0.0": { + "compile": { + "System.Security.Principal.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal.Windows/10.0.0.0": { + "compile": { + "System.Security.Principal.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Security.SecureString/10.0.0.0": { + "compile": { + "System.Security.SecureString.dll": {} + }, + "compileOnly": true + }, + "System.ServiceModel.Web/4.0.0.0": { + "compile": { + "System.ServiceModel.Web.dll": {} + }, + "compileOnly": true + }, + "System.ServiceProcess/4.0.0.0": { + "compile": { + "System.ServiceProcess.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.CodePages/10.0.0.0": { + "compile": { + "System.Text.Encoding.CodePages.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding/10.0.0.0": { + "compile": { + "System.Text.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Extensions/10.0.0.0": { + "compile": { + "System.Text.Encoding.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encodings.Web/10.0.0.0": { + "compile": { + "System.Text.Encodings.Web.dll": {} + }, + "compileOnly": true + }, + "System.Text.Json/10.0.0.0": { + "compile": { + "System.Text.Json.dll": {} + }, + "compileOnly": true + }, + "System.Text.RegularExpressions/10.0.0.0": { + "compile": { + "System.Text.RegularExpressions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.AccessControl/10.0.0.0": { + "compile": { + "System.Threading.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Channels/10.0.0.0": { + "compile": { + "System.Threading.Channels.dll": {} + }, + "compileOnly": true + }, + "System.Threading/10.0.0.0": { + "compile": { + "System.Threading.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Overlapped/10.0.0.0": { + "compile": { + "System.Threading.Overlapped.dll": {} + }, + "compileOnly": true + }, + "System.Threading.RateLimiting/10.0.0.0": { + "compile": { + "System.Threading.RateLimiting.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Dataflow/10.0.0.0": { + "compile": { + "System.Threading.Tasks.Dataflow.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks/10.0.0.0": { + "compile": { + "System.Threading.Tasks.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Extensions/10.0.0.0": { + "compile": { + "System.Threading.Tasks.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Parallel/10.0.0.0": { + "compile": { + "System.Threading.Tasks.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Thread/10.0.0.0": { + "compile": { + "System.Threading.Thread.dll": {} + }, + "compileOnly": true + }, + "System.Threading.ThreadPool/10.0.0.0": { + "compile": { + "System.Threading.ThreadPool.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Timer/10.0.0.0": { + "compile": { + "System.Threading.Timer.dll": {} + }, + "compileOnly": true + }, + "System.Transactions/4.0.0.0": { + "compile": { + "System.Transactions.dll": {} + }, + "compileOnly": true + }, + "System.Transactions.Local/10.0.0.0": { + "compile": { + "System.Transactions.Local.dll": {} + }, + "compileOnly": true + }, + "System.ValueTuple/10.0.0.0": { + "compile": { + "System.ValueTuple.dll": {} + }, + "compileOnly": true + }, + "System.Web/4.0.0.0": { + "compile": { + "System.Web.dll": {} + }, + "compileOnly": true + }, + "System.Web.HttpUtility/10.0.0.0": { + "compile": { + "System.Web.HttpUtility.dll": {} + }, + "compileOnly": true + }, + "System.Windows/4.0.0.0": { + "compile": { + "System.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Xml/4.0.0.0": { + "compile": { + "System.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Linq/4.0.0.0": { + "compile": { + "System.Xml.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Xml.ReaderWriter/10.0.0.0": { + "compile": { + "System.Xml.ReaderWriter.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Serialization/4.0.0.0": { + "compile": { + "System.Xml.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XDocument/10.0.0.0": { + "compile": { + "System.Xml.XDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlDocument/10.0.0.0": { + "compile": { + "System.Xml.XmlDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlSerializer/10.0.0.0": { + "compile": { + "System.Xml.XmlSerializer.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath/10.0.0.0": { + "compile": { + "System.Xml.XPath.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath.XDocument/10.0.0.0": { + "compile": { + "System.Xml.XPath.XDocument.dll": {} + }, + "compileOnly": true + }, + "WindowsBase/4.0.0.0": { + "compile": { + "WindowsBase.dll": {} + }, + "compileOnly": true + }, + "coverlet.collector/6.0.4": { + "compileOnly": true + }, + "Microsoft.EntityFrameworkCore.Analyzers/10.0.5": { + "compileOnly": true + }, + "xunit.analyzers/1.18.0": { + "compileOnly": true + }, + "xunit.runner.visualstudio/3.1.4": { + "compileOnly": true + } + } + }, + "libraries": { + "backend.Tests.Integration/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "BCrypt.Net-Next/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5YT3DKllmtkyW68PjURu/V1TOe4MKiByKwsRNVcfYE1S5KuFTeozdmKzyNzolKiQF391OXCaQtINvYT3j1ERzQ==", + "path": "bcrypt.net-next/4.1.0", + "hashPath": "bcrypt.net-next.4.1.0.nupkg.sha512" + }, + "FluentAssertions/8.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y5RDjxaVlxWX2yy0X/ay1tJjSKMOtjepSb83mmfngFS63hm3LsoZNj6nhmImzm1ifRmpF9ouvmHjx9nNwnkpDg==", + "path": "fluentassertions/8.9.0", + "hashPath": "fluentassertions.8.9.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fZzXogChrwQ/SfifQJgeW7AtR8hUv5+LH9oLWjm5OqfnVt3N8MwcMHHMdawvqqdjP79lIZgetnSpj77BLsSI1g==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/10.0.5", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.10.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Testing/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MfacYQ7jNzj6073YobyoFfXpNmGqrV1UCywTM339DOcYpfalcM4K4heFjV5k3dDkKkWOGWO/DV3hdmVRqFkIxA==", + "path": "microsoft.aspnetcore.mvc.testing/10.0.5", + "hashPath": "microsoft.aspnetcore.mvc.testing.10.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0aqIF1t+sA2T62LIeMtXGSiaV7keGQaJnvwwmu+htQdjCaKYARfXAeqp4nHH9y2etpilyZ/tnQzZg4Ilmo/c4Q==", + "path": "microsoft.aspnetcore.openapi/10.0.0", + "hashPath": "microsoft.aspnetcore.openapi.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.TestHost/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PJEdrZnnhvxIEXzDdvdZ38GvpdaiUfKkZ99kudS8riJwhowFb/Qh26Wjk9smrCWcYdMFQmpN5epGiL4o1s8LYA==", + "path": "microsoft.aspnetcore.testhost/10.0.5", + "hashPath": "microsoft.aspnetcore.testhost.10.0.5.nupkg.sha512" + }, + "Microsoft.CodeCoverage/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pmTrhfFIoplzFVbhVwUquT+77CbGH+h4/3mBpdmIlYtBi9nAB+kKI6dN3A/nV4DFi3wLLx/BlHIPK+MkbQ6Tpg==", + "path": "microsoft.codecoverage/17.14.1", + "hashPath": "microsoft.codecoverage.17.14.1.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9tNBmK3EpYVGRQLiqP+bqK2m+TD0Gv//4vCzR7ZOgl4FWzCFyOpYdIVka13M4kcBdPdSJcs3wbHr3rmzOqbIMA==", + "path": "microsoft.entityframeworkcore/10.0.5", + "hashPath": "microsoft.entityframeworkcore.10.0.5.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-32c58Rnm47Qvhimawf67KO9PytgPz3QoWye7Abapt0Yocw/JnzMiSNj/pRoIKyn8Jxypkv86zxKD4Q/zNTc0Ag==", + "path": "microsoft.entityframeworkcore.abstractions/10.0.5", + "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.5.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.InMemory/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zz4THzlDOrJ7fKU2YUOzQFs2LJ9DgOSr5xFXcDdoD59el73MTQLtQQOAJxQ94F4XDegyL9+2sePSQGdcU25ZxQ==", + "path": "microsoft.entityframeworkcore.inmemory/10.0.5", + "hashPath": "microsoft.entityframeworkcore.inmemory.10.0.5.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DOTjTHy93W3TwpMLM4SCm0n57Sc0Jj3+m2S6LSTstKyBB34eT1UouaMS19mpWwvtj42+sRiEjA3+rOTNoNzXFQ==", + "path": "microsoft.entityframeworkcore.relational/10.0.4", + "hashPath": "microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k/QDdQ94/0Shi0KfU+e12m73jfQo+3JpErTtgpZfsCIqkvdEEO0XIx6R+iTbN55rNPaNhOqNY4/sB+jZ8XxVPw==", + "path": "microsoft.extensions.caching.abstractions/10.0.5", + "hashPath": "microsoft.extensions.caching.abstractions.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jUEXmkBUPdOS/MP9areK/sbKhdklq9+tEhvwfxGalZVnmyLUO5rrheNNutUBtvbZ7J8ECkG7/r2KXi/IFC06cA==", + "path": "microsoft.extensions.caching.memory/10.0.5", + "hashPath": "microsoft.extensions.caching.memory.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8Rx5sqg04FttxrumyG6bmoRuFRgYzK6IVwF1i0/o0cXfKBdDeVpJejKHtJCMjyg9E/DNMVqpqOGe/tCT5gYvVA==", + "path": "microsoft.extensions.configuration/10.0.5", + "hashPath": "microsoft.extensions.configuration.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P09QpTHjqHmCLQOTC+WyLkoRNxek4NIvfWt+TnU0etoDUSRxcltyd6+j/ouRbMdLR0j44GqGO+lhI2M4fAHG4g==", + "path": "microsoft.extensions.configuration.abstractions/10.0.5", + "hashPath": "microsoft.extensions.configuration.abstractions.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-99Z4rjyXopb1MIazDSPcvwYCUdYNO01Cf1GUs2WUjIFAbkGmwzj2vPa2k+3pheJRV+YgNd2QqRKHAri0oBAU4Q==", + "path": "microsoft.extensions.configuration.binder/10.0.5", + "hashPath": "microsoft.extensions.configuration.binder.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-or9fOLopMUTJOQVJ3bou4aD6PwvsiKf4kZC4EE5sRRKSkmh+wfk/LekJXRjAX88X+1JA9zHjDo+5fiQ7z3MY/A==", + "path": "microsoft.extensions.configuration.commandline/10.0.5", + "hashPath": "microsoft.extensions.configuration.commandline.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tchMGQ+zVTO40np/Zzg2Li/TIR8bksQgg4UVXZa0OzeFCKWnIYtxE2FVs+eSmjPGCjMS2voZbwN/mUcYfpSTuA==", + "path": "microsoft.extensions.configuration.environmentvariables/10.0.5", + "hashPath": "microsoft.extensions.configuration.environmentvariables.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OhTr0O79dP49734lLTqVveivVX9sDXxbI/8vjELAZTHXqoN90mdpgTAgwicJED42iaHMCcZcK6Bj+8wNyBikaw==", + "path": "microsoft.extensions.configuration.fileextensions/10.0.5", + "hashPath": "microsoft.extensions.configuration.fileextensions.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-brBM/WP0YAUYh2+QqSYVdK8eQHYQTtTEUJXJ+84Zkdo2buGLja9VSrMIhgoeBUU7JBmcskAib8Lb/N83bvxgYQ==", + "path": "microsoft.extensions.configuration.json/10.0.5", + "hashPath": "microsoft.extensions.configuration.json.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fhdG6UV9lIp70QhNkVyaHciUVq25IPFkczheVJL9bIFvmnJ+Zghaie6dWkDbbVmxZlHl9gj3zTDxMxJs5zNhIA==", + "path": "microsoft.extensions.configuration.usersecrets/10.0.5", + "hashPath": "microsoft.extensions.configuration.usersecrets.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v1SVsowG6YE1YnHVGmLWz57YTRCQRx9pH5ebIESXfm5isI9gA3QaMyg/oMTzPpXYZwSAVDzYItGJKfmV+pqXkQ==", + "path": "microsoft.extensions.dependencyinjection/10.0.5", + "hashPath": "microsoft.extensions.dependencyinjection.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iVMtq9eRvzyhx8949EGT0OCYJfXi737SbRVzWXE5GrOgGj5AaZ9eUuxA/BSUfmOMALKn/g8KfFaNQw0eiB3lyA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.5", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xA4kkL+QS6KCAOKz/O0oquHs44Ob8J7zpBCNt3wjkBWDg5aCqfwG8rWWLsg5V86AM0sB849g9JjPjIdksTCIKg==", + "path": "microsoft.extensions.dependencymodel/10.0.5", + "hashPath": "microsoft.extensions.dependencymodel.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vAJHd4yOpmKoK+jBuYV7a3y+Ab9U4ARCc29b6qvMy276RgJFw9LFs0DdsPqOL3ahwzyrX7tM+i4cCxU/RX0qAg==", + "path": "microsoft.extensions.diagnostics/10.0.5", + "hashPath": "microsoft.extensions.diagnostics.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/nYGrpa9/0BZofrVpBbbj+Ns8ZesiPE0V/KxsuHgDgHQopIzN54nRaQGSuvPw16/kI9sW1Zox5yyAPqvf0Jz6A==", + "path": "microsoft.extensions.diagnostics.abstractions/10.0.5", + "hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nCBmCx0Xemlu65ZiWMcXbvfvtznKxf4/YYKF9R28QkqdI9lTikedGqzJ28/xmdGGsxUnsP5/3TQGpiPwVjK0dA==", + "path": "microsoft.extensions.fileproviders.abstractions/10.0.5", + "hashPath": "microsoft.extensions.fileproviders.abstractions.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMu5kUPSfol1Rqhmr6nWPSmbFjDe9w6bkoKithG17bWTZA0UyKirTatM5mqYUN3mGpNA0MorlusIoVTh6J7o5g==", + "path": "microsoft.extensions.fileproviders.physical/10.0.5", + "hashPath": "microsoft.extensions.fileproviders.physical.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mOE3ARusNQR0a5x8YOcnUbfyyXGqoAWQtEc7qFOfNJgruDWQLo39Re+3/Lzj5pLPFuFYj8hN4dgKzaSQDKiOCw==", + "path": "microsoft.extensions.filesystemglobbing/10.0.5", + "hashPath": "microsoft.extensions.filesystemglobbing.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8i7e5IBdiKLNqt/+ciWrS8U95Rv5DClaaj7ulkZbimnCi4uREWd+lXzkp3joofFuIPOlAzV4AckxLTIELv2jdg==", + "path": "microsoft.extensions.hosting/10.0.5", + "hashPath": "microsoft.extensions.hosting.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+Wb7KAMVZTomwJkQrjuPTe5KBzGod7N8XeG+ScxRlkPOB4sZLG4ccVwjV4Phk5BCJt7uIMnGHVoN6ZMVploX+g==", + "path": "microsoft.extensions.hosting.abstractions/10.0.5", + "hashPath": "microsoft.extensions.hosting.abstractions.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+XTMKQyDWg4ODoNHU/BN3BaI1jhGO7VCS+BnzT/4IauiG6y2iPAte7MyD7rHKS+hNP0TkFkjrae8DFjDUxtcxg==", + "path": "microsoft.extensions.logging/10.0.5", + "hashPath": "microsoft.extensions.logging.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9HOdqlDtPptVcmKAjsQ/Nr5Rxfq6FMYLdhvZh1lVmeKR738qeYecQD7+ldooXf+u2KzzR1kafSphWngIM3C6ug==", + "path": "microsoft.extensions.logging.abstractions/10.0.5", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cSgxsDgfP0+gmVRPVoNHI/KIDavIZxh+CxE6tSLPlYTogqccDnjBFI9CgEsiNuMP6+fiuXUwhhlTz36uUEpwbQ==", + "path": "microsoft.extensions.logging.configuration/10.0.5", + "hashPath": "microsoft.extensions.logging.configuration.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PMs2gha2v24hvH5o5KQem5aNK4mN0BhhCWlMqsg9tzifWKzjeQi2tyPOP/RaWMVvalOhVLcrmoMYPqbnia/epg==", + "path": "microsoft.extensions.logging.console/10.0.5", + "hashPath": "microsoft.extensions.logging.console.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/VacEkBQ02A8PBXSa6YpbIXCuisYy6JJr62/+ANJDZE+RMBfZMcXJXLfr/LpyLE6pgdp17Wxlt7e7R9zvkwZ3Q==", + "path": "microsoft.extensions.logging.debug/10.0.5", + "hashPath": "microsoft.extensions.logging.debug.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0ezhWYJS4/6KrqQel9JL+Tr4n+4EX2TF5EYiaysBWNNEM2c3Gtj1moD39esfgk8OHblSX+UFjtZ3z0c4i9tRvw==", + "path": "microsoft.extensions.logging.eventlog/10.0.5", + "hashPath": "microsoft.extensions.logging.eventlog.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vN+aq1hBFXyYvY5Ow9WyeR66drKQxRZmas4lAjh6QWfryPkjTn1uLtX5AFIxyDaZj78v5TG2sELUyvrXpAPQQw==", + "path": "microsoft.extensions.logging.eventsource/10.0.5", + "hashPath": "microsoft.extensions.logging.eventsource.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Options/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MDaQMdUplw0AIRhWWmbLA7yQEXaLIHb+9CTroTiNS8OlI0LMXS4LCxtopqauiqGCWlRgJ+xyraVD8t6veRAFbw==", + "path": "microsoft.extensions.options/10.0.5", + "hashPath": "microsoft.extensions.options.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BB9uUW3+6Rxu1R97OB1H/13lUF8P2+H1+eDhpZlK30kDh/6E4EKHBUqTp+ilXQmZLzsRErxON8aBSR6WpUKJdg==", + "path": "microsoft.extensions.options.configurationextensions/10.0.5", + "hashPath": "microsoft.extensions.options.configurationextensions.10.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HUHJ0tw/LQvD0DZrz50eQy/3z7PfX7WWEaXnjKTV9/TNdcgFlNTZGo49QhS7PTmhDqMyHRMqAXSBxLh0vso4g==", + "path": "microsoft.extensions.primitives/10.0.5", + "hashPath": "microsoft.extensions.primitives.10.0.5.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6NrxQGcZg6IunkN8K2F0UVMavNpfCjbjjjON7PYcL8FwI8aULKUreiHsRX/yaA8j3XsTJnQKUYpoQk5gBjULZw==", + "path": "microsoft.identitymodel.abstractions/8.17.0", + "hashPath": "microsoft.identitymodel.abstractions.8.17.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JbFZ3OVwtvqcqgBL0cIkhRYbIP7u9GIUYLOgbNqLWtBtZY8tGDpdGyXMzUVX0gVHq1ovuHsKZrkVv+ziHEnBHw==", + "path": "microsoft.identitymodel.jsonwebtokens/8.17.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.17.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w1vjfri0BWqW7RkSZY3ZsqekNfIJJg5BQSFs2j+a+pCXOVrkezmJcn74pT3djwjXJh71577C6wJQgNc2UPz30w==", + "path": "microsoft.identitymodel.logging/8.17.0", + "hashPath": "microsoft.identitymodel.logging.8.17.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-teaW35URIV2x78Tzk+dVJiC4M62/9mQoSEoDjDGoEZmcQa3H2rE+XQpm9Tmdo9KK1Lcrnve4zoyLavl69kCFGg==", + "path": "microsoft.identitymodel.tokens/8.17.0", + "hashPath": "microsoft.identitymodel.tokens.8.17.0.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HJKqKOE+vshXra2aEHpi2TlxYX7Z9VFYkr+E5rwEvHC8eIXiyO+K9kNm8vmNom3e2rA56WqxU+/N9NJlLGXsJQ==", + "path": "microsoft.net.test.sdk/17.14.1", + "hashPath": "microsoft.net.test.sdk.17.14.1.nupkg.sha512" + }, + "Microsoft.OpenApi/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==", + "path": "microsoft.openapi/2.0.0", + "hashPath": "microsoft.openapi.2.0.0.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xTP1W6Mi6SWmuxd3a+jj9G9UoC850WGwZUps1Wah9r1ZxgXhdJfj1QqDLJkFjHDCvN42qDL2Ps5KjQYWUU0zcQ==", + "path": "microsoft.testplatform.objectmodel/17.14.1", + "hashPath": "microsoft.testplatform.objectmodel.17.14.1.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d78LPzGKkJwsJXAQwsbJJ7LE7D1wB+rAyhHHAaODF+RDSQ0NgMjDFkSA1Djw18VrxO76GlKAjRUhl+H8NL8Z+Q==", + "path": "microsoft.testplatform.testhost/17.14.1", + "hashPath": "microsoft.testplatform.testhost.17.14.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Npgsql/10.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q5RfBI+wywJSFUNDE1L4ZbHEHCFTblo8Uf6A6oe4feOUFYiUQXyAf9GBh5qEZpvJaHiEbpBPkQumjEhXCJxdrg==", + "path": "npgsql/10.0.2", + "hashPath": "npgsql.10.0.2.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P6EwH0Q4xkaA264iNZDqCPhWt8pscfUGxXazDQg4noBfqjoOlk4hKWfvBjF9ZX3R/9JybRmmJfmxr2iBMj0EpA==", + "path": "npgsql.entityframeworkcore.postgresql/10.0.1", + "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.1.nupkg.sha512" + }, + "System.Diagnostics.EventLog/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wugvy+pBVzjQEnRs9wMTWwoaeNFX3hsaHeVHFDIvJSWXp7wfmNWu3mxAwBIE6pyW+g6+rHa1Of5fTzb0QVqUTA==", + "path": "system.diagnostics.eventlog/10.0.5", + "hashPath": "system.diagnostics.eventlog.10.0.5.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nKikRYheDeSaXA3wGr2otwaiRFygBa25m+hc7MEomZVIEWZvKVqd8wgP9yn+8QpLRGgw//dUs4LErGx9gtVmAA==", + "path": "system.identitymodel.tokens.jwt/8.17.0", + "hashPath": "system.identitymodel.tokens.jwt.8.17.0.nupkg.sha512" + }, + "xunit/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", + "path": "xunit/2.9.3", + "hashPath": "xunit.2.9.3.nupkg.sha512" + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "path": "xunit.abstractions/2.0.3", + "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" + }, + "xunit.assert/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==", + "path": "xunit.assert/2.9.3", + "hashPath": "xunit.assert.2.9.3.nupkg.sha512" + }, + "xunit.core/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", + "path": "xunit.core/2.9.3", + "hashPath": "xunit.core.2.9.3.nupkg.sha512" + }, + "xunit.extensibility.core/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", + "path": "xunit.extensibility.core/2.9.3", + "hashPath": "xunit.extensibility.core.2.9.3.nupkg.sha512" + }, + "xunit.extensibility.execution/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", + "path": "xunit.extensibility.execution/2.9.3", + "hashPath": "xunit.extensibility.execution.2.9.3.nupkg.sha512" + }, + "RacePlannerApi/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Antiforgery/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.BearerToken/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Cookies/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Core/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.OAuth/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization.Policy/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Authorization/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Endpoints/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Forms/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Server/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Web/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.CookiePolicy/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cors/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.Internal/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HostFiltering/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Html.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Features/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Results/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpLogging/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpOverrides/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpsPolicy/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Identity/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization.Routing/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Metadata/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Core/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Cors/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Localization/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Razor/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.RazorPages/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.OutputCaching/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.RateLimiting/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor.Runtime/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.RequestDecompression/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCompression/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Rewrite/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.HttpSys/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IIS/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IISIntegration/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Session/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Core/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticAssets/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticFiles/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebSockets/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebUtilities/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.CSharp/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Ini/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.KeyPerFile/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Xml/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Features/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Composite/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Embedded/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Http/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Core/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Stores/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.TraceSource/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ObjectPool/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.DataAnnotations/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Validation/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.WebEncoders/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.JSInterop/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Net.Http.Headers/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic.Core/15.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Registry/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "mscorlib/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "netstandard/2.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.AppContext/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Buffers/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Concurrent/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Immutable/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.NonGeneric/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Specialized/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Annotations/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.EventBasedAsync/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.TypeConverter/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Configuration/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Console/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Core/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.Common/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.DataSetExtensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Contracts/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Debug/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.DiagnosticSource/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.FileVersionInfo/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Process/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.StackTrace/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TextWriterTraceListener/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tools/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TraceSource/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tracing/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Dynamic.Runtime/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Asn1/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Cbor/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Tar/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Calendars/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.Brotli/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.ZipFile/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.AccessControl/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.DriveInfo/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Watcher/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.IsolatedStorage/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.MemoryMappedFiles/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipelines/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes.AccessControl/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.UnmanagedMemoryStream/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.AsyncEnumerable/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Expressions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Parallel/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Queryable/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Memory/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http.Json/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.HttpListener/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Mail/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NameResolution/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NetworkInformation/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Ping/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Quic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Requests/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Security/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.ServerSentEvents/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.ServicePoint/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Sockets/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebClient/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebHeaderCollection/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebProxy/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets.Client/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics.Vectors/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ObjectModel/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.DispatchProxy/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.ILGeneration/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Lightweight/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Metadata/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.TypeExtensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Reader/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.ResourceManager/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Writer/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.Unsafe/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.VisualC/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Handles/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.JavaScript/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.RuntimeInformation/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Intrinsics/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Loader/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Numerics/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Formatters/8.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Json/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Xml/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.AccessControl/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Claims/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Algorithms/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Cng/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Csp/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Encoding/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.OpenSsl/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.X509Certificates/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Xml/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal.Windows/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.SecureString/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceModel.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceProcess/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.CodePages/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encodings.Web/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Json/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.RegularExpressions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.AccessControl/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Channels/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Overlapped/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.RateLimiting/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Dataflow/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Parallel/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Thread/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.ThreadPool/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Timer/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions.Local/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ValueTuple/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web.HttpUtility/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Linq/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.ReaderWriter/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XDocument/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlDocument/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlSerializer/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath.XDocument/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "WindowsBase/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "coverlet.collector/6.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==", + "path": "coverlet.collector/6.0.4", + "hashPath": "coverlet.collector.6.0.4.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/10.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ipC4u1VojgEfoIZhtbS2Sx5IluJTP/Jf1hz3yGsxGBgSukYY/CquI6rAjxn5H58CZgVn36qcuPPtNMwZ0AUzMg==", + "path": "microsoft.entityframeworkcore.analyzers/10.0.5", + "hashPath": "microsoft.entityframeworkcore.analyzers.10.0.5.nupkg.sha512" + }, + "xunit.analyzers/1.18.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==", + "path": "xunit.analyzers/1.18.0", + "hashPath": "xunit.analyzers.1.18.0.nupkg.sha512" + }, + "xunit.runner.visualstudio/3.1.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5mj99LvCqrq3CNi06xYdyIAXOEh+5b33F2nErCzI5zWiDdLHXiPXEWFSUAF8zlIv0ZWqjZNCwHTQeAPYbF3pCg==", + "path": "xunit.runner.visualstudio/3.1.4", + "hashPath": "xunit.runner.visualstudio.3.1.4.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.dll b/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.dll new file mode 100644 index 0000000..b18fb26 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.pdb b/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.pdb new file mode 100644 index 0000000..f5f02d5 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.pdb differ diff --git a/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.runtimeconfig.json b/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.runtimeconfig.json new file mode 100644 index 0000000..3251c8d --- /dev/null +++ b/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "10.0.0" + } + ], + "configProperties": { + "MSTest.EnableParentProcessQuery": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..6b4cb52 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..4bd6351 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..7b44217 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..711b34d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..8e5665d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..7430499 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..310ab84 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..451e2d2 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..e606f2d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..c4a0f6d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..861e885 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..a3867c8 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..08ad46b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..44c4b7f Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..668630a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..e7ac83f Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..305ae61 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..a2eeac8 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..7394ada Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..36ad487 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..21fd3a2 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..3138d0b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..e0afbb4 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..591475d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..f6d7529 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..008facc Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..7a2bc17 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..f5e04ec Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..4c707a0 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..84e7a2d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..4198d29 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..6583956 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..354b0bf Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..f46d948 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..42c1de2 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..9e65b3a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..26b5522 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..bdc41ed Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..302a135 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..b435708 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..c9f988e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..0849e28 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..8657f14 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..a2a3f0e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..834e160 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Antiforgery.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Antiforgery.dll new file mode 100644 index 0000000..abcecbd Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Antiforgery.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll new file mode 100644 index 0000000..75d29f0 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll new file mode 100644 index 0000000..476b519 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll new file mode 100644 index 0000000..d1c2036 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Core.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Core.dll new file mode 100644 index 0000000..2d9212f Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Core.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll new file mode 100644 index 0000000..42bcde8 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.dll new file mode 100644 index 0000000..78918b8 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll new file mode 100644 index 0000000..ff27312 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..f2befb2 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Authorization.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Authorization.dll new file mode 100644 index 0000000..7402e6d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Authorization.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll new file mode 100644 index 0000000..5526997 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Forms.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 0000000..75caae7 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Server.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Server.dll new file mode 100644 index 0000000..cc22d93 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Server.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Web.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 0000000..a14f78b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.dll new file mode 100644 index 0000000..ffcefb5 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..7de5aaa Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.CookiePolicy.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.CookiePolicy.dll new file mode 100644 index 0000000..840c700 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.CookiePolicy.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cors.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cors.dll new file mode 100644 index 0000000..085dd9d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cors.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll new file mode 100644 index 0000000..a2c9b92 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll new file mode 100644 index 0000000..8ef8827 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll new file mode 100644 index 0000000..1098251 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll new file mode 100644 index 0000000..bd696c7 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.dll new file mode 100644 index 0000000..11e96ca Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..ab8297b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll new file mode 100644 index 0000000..83188c5 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.dll new file mode 100644 index 0000000..4e4c362 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HostFiltering.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HostFiltering.dll new file mode 100644 index 0000000..8e7c34a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HostFiltering.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll new file mode 100644 index 0000000..663c502 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll new file mode 100644 index 0000000..750c671 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.dll new file mode 100644 index 0000000..a316b0a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll new file mode 100644 index 0000000..6ff5e6d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll new file mode 100644 index 0000000..9b28eb3 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll new file mode 100644 index 0000000..341cd63 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.dll new file mode 100644 index 0000000..af85217 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Extensions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Extensions.dll new file mode 100644 index 0000000..26420d2 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Extensions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Features.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Features.dll new file mode 100644 index 0000000..1e890c2 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Features.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Results.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Results.dll new file mode 100644 index 0000000..c490cc9 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Results.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.dll new file mode 100644 index 0000000..51a7735 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpLogging.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpLogging.dll new file mode 100644 index 0000000..8960dca Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpLogging.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpOverrides.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpOverrides.dll new file mode 100644 index 0000000..bc668fb Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpOverrides.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll new file mode 100644 index 0000000..ba8711d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Identity.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Identity.dll new file mode 100644 index 0000000..b7eb5e4 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Identity.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.Routing.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.Routing.dll new file mode 100644 index 0000000..1a8e8df Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.Routing.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.dll new file mode 100644 index 0000000..e19e066 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Metadata.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..a435091 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Metadata.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll new file mode 100644 index 0000000..8eb0691 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll new file mode 100644 index 0000000..e5d5108 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Core.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Core.dll new file mode 100644 index 0000000..5811cfb Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Core.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll new file mode 100644 index 0000000..3ea6a53 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll new file mode 100644 index 0000000..584314c Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll new file mode 100644 index 0000000..e54b014 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll new file mode 100644 index 0000000..c807e23 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll new file mode 100644 index 0000000..fbd2408 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll new file mode 100644 index 0000000..7334cda Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll new file mode 100644 index 0000000..c581e0e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll new file mode 100644 index 0000000..d186087 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll new file mode 100644 index 0000000..d7345be Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.dll new file mode 100644 index 0000000..bffad3f Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.OutputCaching.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.OutputCaching.dll new file mode 100644 index 0000000..052ab6a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.OutputCaching.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RateLimiting.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RateLimiting.dll new file mode 100644 index 0000000..7cbc9ed Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RateLimiting.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll new file mode 100644 index 0000000..a22f7d7 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.dll new file mode 100644 index 0000000..26f4994 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RequestDecompression.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RequestDecompression.dll new file mode 100644 index 0000000..06dbe84 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RequestDecompression.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll new file mode 100644 index 0000000..fd24da5 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.dll new file mode 100644 index 0000000..7ea26d2 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCompression.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCompression.dll new file mode 100644 index 0000000..6d37b73 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCompression.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Rewrite.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Rewrite.dll new file mode 100644 index 0000000..ac49708 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Rewrite.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll new file mode 100644 index 0000000..cdeeee7 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.dll new file mode 100644 index 0000000..c047a5f Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll new file mode 100644 index 0000000..2005266 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IIS.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IIS.dll new file mode 100644 index 0000000..5ccbe1d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IIS.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll new file mode 100644 index 0000000..427a96c Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll new file mode 100644 index 0000000..92fd3b2 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll new file mode 100644 index 0000000..36c341c Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll new file mode 100644 index 0000000..a729930 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll new file mode 100644 index 0000000..fa9f156 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll new file mode 100644 index 0000000..48ffc27 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Session.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Session.dll new file mode 100644 index 0000000..0b5c0fb Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Session.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Common.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 0000000..8eee367 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Core.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Core.dll new file mode 100644 index 0000000..7967c82 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Core.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll new file mode 100644 index 0000000..49a1488 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.dll new file mode 100644 index 0000000..d18feaf Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticAssets.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticAssets.dll new file mode 100644 index 0000000..0236c1b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticAssets.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticFiles.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticFiles.dll new file mode 100644 index 0000000..c6c1e10 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticFiles.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebSockets.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebSockets.dll new file mode 100644 index 0000000..e445974 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebSockets.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebUtilities.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebUtilities.dll new file mode 100644 index 0000000..efc55f3 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebUtilities.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.dll new file mode 100644 index 0000000..fe3bace Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.CSharp.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.CSharp.dll new file mode 100644 index 0000000..17117fe Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.CSharp.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Ini.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Ini.dll new file mode 100644 index 0000000..e931d2e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Ini.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll new file mode 100644 index 0000000..4b4807b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Xml.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Xml.dll new file mode 100644 index 0000000..bf366aa Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Xml.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll new file mode 100644 index 0000000..d66a778 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll new file mode 100644 index 0000000..bf32d8f Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Features.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..aeb6969 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Features.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Composite.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Composite.dll new file mode 100644 index 0000000..8d6f548 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Composite.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll new file mode 100644 index 0000000..fea1f54 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Http.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Http.dll new file mode 100644 index 0000000..c9359d6 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Http.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Core.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Core.dll new file mode 100644 index 0000000..d1a29e7 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Core.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Stores.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Stores.dll new file mode 100644 index 0000000..db4c4ea Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Stores.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.Abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100644 index 0000000..d030a42 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.dll new file mode 100644 index 0000000..e4f78b5 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.TraceSource.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.TraceSource.dll new file mode 100644 index 0000000..c3163a9 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.TraceSource.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.ObjectPool.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.ObjectPool.dll new file mode 100644 index 0000000..4ad6453 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.ObjectPool.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll new file mode 100644 index 0000000..471302a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Validation.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Validation.dll new file mode 100644 index 0000000..1a7e90b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Validation.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.WebEncoders.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.WebEncoders.dll new file mode 100644 index 0000000..d8447dc Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.WebEncoders.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.JSInterop.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.JSInterop.dll new file mode 100644 index 0000000..af02f5e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.JSInterop.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Net.Http.Headers.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Net.Http.Headers.dll new file mode 100644 index 0000000..fa98d21 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Net.Http.Headers.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.VisualBasic.Core.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..a94831d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.VisualBasic.Core.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.VisualBasic.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..0a0b007 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.VisualBasic.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Win32.Primitives.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..78e5153 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Win32.Primitives.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Win32.Registry.dll b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..40df9c7 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Win32.Registry.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.AppContext.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.AppContext.dll new file mode 100644 index 0000000..a67496c Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.AppContext.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Buffers.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Buffers.dll new file mode 100644 index 0000000..a2e4ffa Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Buffers.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.Concurrent.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.Concurrent.dll new file mode 100644 index 0000000..3d24a69 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.Concurrent.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.Immutable.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.Immutable.dll new file mode 100644 index 0000000..9838e1e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.Immutable.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.NonGeneric.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..d9fcaf5 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.NonGeneric.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.Specialized.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.Specialized.dll new file mode 100644 index 0000000..aa3744e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.Specialized.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.dll new file mode 100644 index 0000000..303b525 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.Annotations.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..00cb62d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.Annotations.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.DataAnnotations.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..1427b04 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.DataAnnotations.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.EventBasedAsync.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..bbc7c5e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.EventBasedAsync.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.Primitives.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..2a3e4dc Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.Primitives.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.TypeConverter.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..d44cb96 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.TypeConverter.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.dll new file mode 100644 index 0000000..1ad22dc Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Configuration.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Configuration.dll new file mode 100644 index 0000000..9befc53 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Configuration.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Console.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Console.dll new file mode 100644 index 0000000..668b169 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Console.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Core.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Core.dll new file mode 100644 index 0000000..1521f23 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Core.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Data.Common.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Data.Common.dll new file mode 100644 index 0000000..147c86a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Data.Common.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Data.DataSetExtensions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..0aafcf8 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Data.DataSetExtensions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Data.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Data.dll new file mode 100644 index 0000000..7c943de Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Data.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Contracts.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..273ff61 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Contracts.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Debug.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..f9f1a7b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Debug.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.DiagnosticSource.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..2ab2b47 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.DiagnosticSource.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.FileVersionInfo.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..9771234 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.FileVersionInfo.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Process.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Process.dll new file mode 100644 index 0000000..5c4ddda Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Process.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.StackTrace.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..527ff7e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.StackTrace.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.TextWriterTraceListener.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..6051bc7 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Tools.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..17e4aae Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Tools.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.TraceSource.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..c7c2bdd Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.TraceSource.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Tracing.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..770ca20 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Tracing.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Drawing.Primitives.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Drawing.Primitives.dll new file mode 100644 index 0000000..80840fc Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Drawing.Primitives.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Drawing.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Drawing.dll new file mode 100644 index 0000000..2c6a9a5 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Drawing.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Dynamic.Runtime.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..f17f576 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Dynamic.Runtime.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Formats.Asn1.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Formats.Asn1.dll new file mode 100644 index 0000000..1d4e4e0 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Formats.Asn1.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Formats.Cbor.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Formats.Cbor.dll new file mode 100644 index 0000000..f418812 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Formats.Cbor.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Formats.Tar.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Formats.Tar.dll new file mode 100644 index 0000000..b73ec90 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Formats.Tar.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Globalization.Calendars.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Globalization.Calendars.dll new file mode 100644 index 0000000..fa86493 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Globalization.Calendars.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Globalization.Extensions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Globalization.Extensions.dll new file mode 100644 index 0000000..2a02f79 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Globalization.Extensions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Globalization.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Globalization.dll new file mode 100644 index 0000000..9de7ff9 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Globalization.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.Brotli.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..a6a4dfd Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.Brotli.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.FileSystem.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..6d2c24a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.FileSystem.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.ZipFile.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..aa7e540 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.ZipFile.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.dll new file mode 100644 index 0000000..7cf91f2 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.AccessControl.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..1e63370 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.AccessControl.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.DriveInfo.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..bf71394 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.DriveInfo.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.Primitives.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..616de49 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.Primitives.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.Watcher.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..3d81501 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.Watcher.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.dll new file mode 100644 index 0000000..15f2b4d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.IsolatedStorage.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..9b628ff Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.IsolatedStorage.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.MemoryMappedFiles.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..85a217c Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.MemoryMappedFiles.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Pipelines.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Pipelines.dll new file mode 100644 index 0000000..a00a1b4 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Pipelines.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Pipes.AccessControl.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..f49f477 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Pipes.AccessControl.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Pipes.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Pipes.dll new file mode 100644 index 0000000..83eadbd Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Pipes.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.UnmanagedMemoryStream.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..b48ad3a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.UnmanagedMemoryStream.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.dll new file mode 100644 index 0000000..bedba29 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.AsyncEnumerable.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.AsyncEnumerable.dll new file mode 100644 index 0000000..b94adae Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.AsyncEnumerable.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.Expressions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.Expressions.dll new file mode 100644 index 0000000..96c47a4 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.Expressions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.Parallel.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.Parallel.dll new file mode 100644 index 0000000..ce9bf16 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.Parallel.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.Queryable.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.Queryable.dll new file mode 100644 index 0000000..1ea84b5 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.Queryable.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.dll new file mode 100644 index 0000000..600d3f8 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Memory.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Memory.dll new file mode 100644 index 0000000..17abdcf Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Memory.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Http.Json.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Http.Json.dll new file mode 100644 index 0000000..ef343d5 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Http.Json.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Http.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Http.dll new file mode 100644 index 0000000..f3c6fb7 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Http.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.HttpListener.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.HttpListener.dll new file mode 100644 index 0000000..7cef176 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.HttpListener.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Mail.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Mail.dll new file mode 100644 index 0000000..75143cf Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Mail.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.NameResolution.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.NameResolution.dll new file mode 100644 index 0000000..50e6c6e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.NameResolution.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.NetworkInformation.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..645b315 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.NetworkInformation.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Ping.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Ping.dll new file mode 100644 index 0000000..1db132d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Ping.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Primitives.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Primitives.dll new file mode 100644 index 0000000..9a6110d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Primitives.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Quic.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Quic.dll new file mode 100644 index 0000000..032e846 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Quic.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Requests.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Requests.dll new file mode 100644 index 0000000..d6c882f Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Requests.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Security.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Security.dll new file mode 100644 index 0000000..11a62fc Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Security.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.ServerSentEvents.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.ServerSentEvents.dll new file mode 100644 index 0000000..4241dbe Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.ServerSentEvents.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.ServicePoint.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.ServicePoint.dll new file mode 100644 index 0000000..d73fdbc Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.ServicePoint.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Sockets.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Sockets.dll new file mode 100644 index 0000000..f067d3d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Sockets.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebClient.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebClient.dll new file mode 100644 index 0000000..9bfcd24 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebClient.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebHeaderCollection.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..9a2150f Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebHeaderCollection.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebProxy.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebProxy.dll new file mode 100644 index 0000000..82df457 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebProxy.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebSockets.Client.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..f42b4e5 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebSockets.Client.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebSockets.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebSockets.dll new file mode 100644 index 0000000..d7f1546 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebSockets.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.dll new file mode 100644 index 0000000..5614a1a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Numerics.Vectors.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Numerics.Vectors.dll new file mode 100644 index 0000000..200f535 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Numerics.Vectors.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Numerics.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Numerics.dll new file mode 100644 index 0000000..6bbcbdd Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Numerics.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.ObjectModel.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.ObjectModel.dll new file mode 100644 index 0000000..d6b486a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.ObjectModel.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.DispatchProxy.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..4ece184 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.DispatchProxy.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Emit.ILGeneration.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..8dd4550 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Emit.ILGeneration.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Emit.Lightweight.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..73cca4a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Emit.Lightweight.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Emit.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Emit.dll new file mode 100644 index 0000000..53b7dab Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Emit.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Extensions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Extensions.dll new file mode 100644 index 0000000..ebdd58c Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Extensions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Metadata.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Metadata.dll new file mode 100644 index 0000000..d75b416 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Metadata.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Primitives.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Primitives.dll new file mode 100644 index 0000000..7f4cf62 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Primitives.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.TypeExtensions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..063e4c5 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.TypeExtensions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.dll new file mode 100644 index 0000000..93e25fa Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Resources.Reader.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Resources.Reader.dll new file mode 100644 index 0000000..75a6ea1 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Resources.Reader.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Resources.ResourceManager.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..17ebd33 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Resources.ResourceManager.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Resources.Writer.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Resources.Writer.dll new file mode 100644 index 0000000..2ae7370 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Resources.Writer.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.Unsafe.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..23ee2e2 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.VisualC.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..dc86ecf Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Extensions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Extensions.dll new file mode 100644 index 0000000..4142f78 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Extensions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Handles.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Handles.dll new file mode 100644 index 0000000..42e367e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Handles.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.InteropServices.JavaScript.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.InteropServices.JavaScript.dll new file mode 100644 index 0000000..92733b2 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..0fc1794 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.InteropServices.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..c08864f Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.InteropServices.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Intrinsics.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..bceebbc Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Intrinsics.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Loader.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Loader.dll new file mode 100644 index 0000000..0120518 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Loader.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Numerics.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Numerics.dll new file mode 100644 index 0000000..4817bd6 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Numerics.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Formatters.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..5924e6d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Formatters.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Json.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..4947e76 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Json.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Primitives.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..1fe60d3 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Primitives.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Xml.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..cae9264 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Xml.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.dll new file mode 100644 index 0000000..ecfd41f Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.dll new file mode 100644 index 0000000..2070196 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.AccessControl.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.AccessControl.dll new file mode 100644 index 0000000..ddb0f63 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.AccessControl.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Claims.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Claims.dll new file mode 100644 index 0000000..d8c0363 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Claims.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Algorithms.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..7892a4a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Algorithms.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Cng.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..280e395 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Cng.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Csp.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..b2dcd0b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Csp.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Encoding.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..fe66307 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Encoding.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.OpenSsl.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..3b2cc13 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.OpenSsl.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Primitives.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..89a7572 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Primitives.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.X509Certificates.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..c9b9a37 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.X509Certificates.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Xml.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..9384019 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Xml.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.dll new file mode 100644 index 0000000..0339d9c Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Principal.Windows.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..f640228 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Principal.Windows.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Principal.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Principal.dll new file mode 100644 index 0000000..bcb2874 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Principal.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.SecureString.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.SecureString.dll new file mode 100644 index 0000000..adfdf01 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.SecureString.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.dll new file mode 100644 index 0000000..789a860 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.ServiceModel.Web.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.ServiceModel.Web.dll new file mode 100644 index 0000000..97b48a3 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.ServiceModel.Web.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.ServiceProcess.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.ServiceProcess.dll new file mode 100644 index 0000000..d9ac14d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.ServiceProcess.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encoding.CodePages.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..52375f2 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encoding.CodePages.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encoding.Extensions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..58d95f3 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encoding.Extensions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encoding.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encoding.dll new file mode 100644 index 0000000..6b3da8e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encoding.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encodings.Web.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..1217572 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encodings.Web.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Json.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Json.dll new file mode 100644 index 0000000..ae3b3cf Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Json.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.RegularExpressions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..45b1792 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.RegularExpressions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.AccessControl.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.AccessControl.dll new file mode 100644 index 0000000..85966c3 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.AccessControl.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Channels.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Channels.dll new file mode 100644 index 0000000..319e4e4 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Channels.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Overlapped.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Overlapped.dll new file mode 100644 index 0000000..b316c30 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Overlapped.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.RateLimiting.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.RateLimiting.dll new file mode 100644 index 0000000..f31d59a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.RateLimiting.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.Dataflow.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..b6148e4 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.Dataflow.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.Extensions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..0b79f9e Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.Extensions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.Parallel.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..6c67060 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.Parallel.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.dll new file mode 100644 index 0000000..3116fcf Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Thread.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Thread.dll new file mode 100644 index 0000000..b8d1741 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Thread.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.ThreadPool.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..d854f9d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.ThreadPool.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Timer.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Timer.dll new file mode 100644 index 0000000..2124489 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Timer.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.dll new file mode 100644 index 0000000..3d14319 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Transactions.Local.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Transactions.Local.dll new file mode 100644 index 0000000..28ddf84 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Transactions.Local.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Transactions.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Transactions.dll new file mode 100644 index 0000000..fed2998 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Transactions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.ValueTuple.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.ValueTuple.dll new file mode 100644 index 0000000..9ae1927 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.ValueTuple.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Web.HttpUtility.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Web.HttpUtility.dll new file mode 100644 index 0000000..c224686 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Web.HttpUtility.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Web.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Web.dll new file mode 100644 index 0000000..e414d3d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Web.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Windows.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Windows.dll new file mode 100644 index 0000000..c7e0313 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Windows.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.Linq.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.Linq.dll new file mode 100644 index 0000000..24553cf Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.Linq.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.ReaderWriter.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..5872b7c Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.ReaderWriter.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.Serialization.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.Serialization.dll new file mode 100644 index 0000000..5033bac Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.Serialization.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XDocument.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XDocument.dll new file mode 100644 index 0000000..52184f6 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XDocument.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XPath.XDocument.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..027c5f6 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XPath.XDocument.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XPath.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XPath.dll new file mode 100644 index 0000000..22ecf78 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XPath.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XmlDocument.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..d369d50 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XmlDocument.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XmlSerializer.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..3daec58 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XmlSerializer.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.dll new file mode 100644 index 0000000..ee264aa Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/System.dll b/tests/integration/backend/bin/Debug/net10.0/refs/System.dll new file mode 100644 index 0000000..21c27a9 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/System.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/WindowsBase.dll b/tests/integration/backend/bin/Debug/net10.0/refs/WindowsBase.dll new file mode 100644 index 0000000..3ac2fc9 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/WindowsBase.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/mscorlib.dll b/tests/integration/backend/bin/Debug/net10.0/refs/mscorlib.dll new file mode 100644 index 0000000..3a991ae Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/mscorlib.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/refs/netstandard.dll b/tests/integration/backend/bin/Debug/net10.0/refs/netstandard.dll new file mode 100644 index 0000000..3d2b9f7 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/refs/netstandard.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..2b48978 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..59fa16a Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..a4b7361 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..968210b Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..5f94d05 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll b/tests/integration/backend/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll new file mode 100755 index 0000000..e7b4733 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.dll b/tests/integration/backend/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.dll new file mode 100755 index 0000000..a0eb3e5 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/testhost.dll b/tests/integration/backend/bin/Debug/net10.0/testhost.dll new file mode 100755 index 0000000..538cc6d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/testhost.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..d397c2d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..1f753be Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..fb6e8f0 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..e032b07 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..c5b5b63 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/xunit.abstractions.dll b/tests/integration/backend/bin/Debug/net10.0/xunit.abstractions.dll new file mode 100755 index 0000000..d1e90bf Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/xunit.abstractions.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/xunit.assert.dll b/tests/integration/backend/bin/Debug/net10.0/xunit.assert.dll new file mode 100755 index 0000000..99bc34c Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/xunit.assert.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/xunit.core.dll b/tests/integration/backend/bin/Debug/net10.0/xunit.core.dll new file mode 100755 index 0000000..d56aa16 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/xunit.core.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/xunit.execution.dotnet.dll b/tests/integration/backend/bin/Debug/net10.0/xunit.execution.dotnet.dll new file mode 100755 index 0000000..7a1cc87 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/xunit.execution.dotnet.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll b/tests/integration/backend/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll new file mode 100755 index 0000000..8126550 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..34e54ed Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..dc5e3d1 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..bf6c73d Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..cfbf0bc Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..f671e52 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..f30f879 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..c2b89ef Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..a0764e6 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..a6014d3 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..3e7e989 Binary files /dev/null and b/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/integration/backend/obj/Debug/net10.0/MvcTestingAppManifest.json b/tests/integration/backend/obj/Debug/net10.0/MvcTestingAppManifest.json new file mode 100644 index 0000000..9de8e60 --- /dev/null +++ b/tests/integration/backend/obj/Debug/net10.0/MvcTestingAppManifest.json @@ -0,0 +1,3 @@ +{ + "RacePlannerApi, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null": "\/Users\/mastermito\/Dev\/raceplanner\/backend" +} \ No newline at end of file diff --git a/tests/integration/backend/obj/Debug/net10.0/backend..06C82A7F.Up2Date b/tests/integration/backend/obj/Debug/net10.0/backend..06C82A7F.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.AssemblyInfo.cs b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.AssemblyInfo.cs index a9ddafb..3ee9db9 100644 --- a/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.AssemblyInfo.cs +++ b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.AssemblyInfo.cs @@ -13,10 +13,10 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("backend.Tests.Integration")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3421818d414ad1a8389553b9c193a05c84cecc96")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+13c9c8aa68a452b4b3b25844b868cc510dea3c8b")] [assembly: System.Reflection.AssemblyProductAttribute("backend.Tests.Integration")] [assembly: System.Reflection.AssemblyTitleAttribute("backend.Tests.Integration")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -// Von der MSBuild WriteCodeFragment-Klasse generiert. +// Generated by the MSBuild WriteCodeFragment class. diff --git a/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.AssemblyInfoInputs.cache b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.AssemblyInfoInputs.cache index 5cbb89c..9ba85bd 100644 --- a/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.AssemblyInfoInputs.cache +++ b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.AssemblyInfoInputs.cache @@ -1 +1 @@ -a5a6240bf357ac4768ce3a5586d3e9f518946078b7126d051306396143212e02 +10ebc16f150edda2f766795934b620ae6014b98a1dd841043962e1e0feeeba4b diff --git a/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.csproj.AssemblyReference.cache b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.csproj.AssemblyReference.cache index c6b7e2d..0a4683c 100644 Binary files a/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.csproj.AssemblyReference.cache and b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.csproj.AssemblyReference.cache differ diff --git a/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.csproj.CoreCompileInputs.cache b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a28c7b6 --- /dev/null +++ b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +20d28be78e1f3b386d1458f7ee036dd30ba5978f63da64391931f5111b8d0da0 diff --git a/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.csproj.FileListAbsolute.txt b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..46e002f --- /dev/null +++ b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.csproj.FileListAbsolute.txt @@ -0,0 +1,438 @@ +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/.msCoverageSourceRootsMapping_backend.Tests.Integration +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/CoverletSourceRootsMapping_backend.Tests.Integration +/Users/mastermito/Dev/raceplanner/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.csproj.AssemblyReference.cache +/Users/mastermito/Dev/raceplanner/tests/integration/backend/obj/Debug/net10.0/MvcTestingAppManifest.json +/Users/mastermito/Dev/raceplanner/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.GeneratedMSBuildEditorConfig.editorconfig +/Users/mastermito/Dev/raceplanner/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.AssemblyInfoInputs.cache +/Users/mastermito/Dev/raceplanner/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.AssemblyInfo.cs +/Users/mastermito/Dev/raceplanner/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.csproj.CoreCompileInputs.cache +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/xunit.abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.deps.json +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.runtimeconfig.json +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/appsettings.Development.json +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/appsettings.json +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/appsettings.Production.json +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.staticwebassets.endpoints.json +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/MvcTestingAppManifest.json +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.deps.json +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.runtimeconfig.json +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/backend.Tests.Integration.pdb +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Antiforgery.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Core.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Authorization.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Forms.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Server.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Web.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.CookiePolicy.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cors.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HostFiltering.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Extensions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Features.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Results.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpLogging.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpOverrides.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Identity.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.Routing.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Metadata.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Core.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.OutputCaching.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RateLimiting.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RequestDecompression.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCompression.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Rewrite.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IIS.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Session.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Common.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Core.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticAssets.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticFiles.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebSockets.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebUtilities.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.CSharp.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Ini.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Xml.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Features.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Composite.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Http.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Core.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Stores.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.TraceSource.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.ObjectPool.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.Validation.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Extensions.WebEncoders.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.JSInterop.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Net.Http.Headers.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.VisualBasic.Core.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.VisualBasic.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Win32.Primitives.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/Microsoft.Win32.Registry.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/mscorlib.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/netstandard.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.AppContext.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Buffers.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.Concurrent.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.Immutable.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.NonGeneric.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Collections.Specialized.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.Annotations.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.DataAnnotations.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.EventBasedAsync.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.Primitives.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.ComponentModel.TypeConverter.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Configuration.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Console.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Core.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Data.Common.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Data.DataSetExtensions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Data.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Contracts.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Debug.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.DiagnosticSource.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.FileVersionInfo.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Process.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.StackTrace.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.TextWriterTraceListener.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Tools.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.TraceSource.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Diagnostics.Tracing.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Drawing.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Drawing.Primitives.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Dynamic.Runtime.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Formats.Asn1.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Formats.Cbor.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Formats.Tar.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Globalization.Calendars.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Globalization.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Globalization.Extensions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.Brotli.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.FileSystem.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Compression.ZipFile.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.AccessControl.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.DriveInfo.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.Primitives.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.FileSystem.Watcher.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.IsolatedStorage.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.MemoryMappedFiles.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Pipelines.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Pipes.AccessControl.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.Pipes.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.IO.UnmanagedMemoryStream.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.AsyncEnumerable.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.Expressions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.Parallel.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Linq.Queryable.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Memory.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Http.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Http.Json.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.HttpListener.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Mail.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.NameResolution.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.NetworkInformation.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Ping.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Primitives.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Quic.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Requests.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Security.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.ServerSentEvents.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.ServicePoint.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.Sockets.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebClient.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebHeaderCollection.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebProxy.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebSockets.Client.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Net.WebSockets.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Numerics.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Numerics.Vectors.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.ObjectModel.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.DispatchProxy.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Emit.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Emit.ILGeneration.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Emit.Lightweight.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Extensions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Metadata.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.Primitives.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Reflection.TypeExtensions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Resources.Reader.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Resources.ResourceManager.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Resources.Writer.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.Unsafe.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.VisualC.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Extensions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Handles.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.InteropServices.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.InteropServices.JavaScript.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Intrinsics.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Loader.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Numerics.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Formatters.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Json.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Primitives.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Runtime.Serialization.Xml.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.AccessControl.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Claims.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Algorithms.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Cng.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Csp.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Encoding.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.OpenSsl.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Primitives.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.X509Certificates.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Cryptography.Xml.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Principal.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.Principal.Windows.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Security.SecureString.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.ServiceModel.Web.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.ServiceProcess.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encoding.CodePages.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encoding.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encoding.Extensions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Encodings.Web.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.Json.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Text.RegularExpressions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.AccessControl.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Channels.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Overlapped.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.RateLimiting.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.Dataflow.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.Extensions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Tasks.Parallel.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Thread.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.ThreadPool.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Threading.Timer.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Transactions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Transactions.Local.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.ValueTuple.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Web.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Web.HttpUtility.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Windows.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.Linq.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.ReaderWriter.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.Serialization.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XDocument.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XmlDocument.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XmlSerializer.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XPath.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/System.Xml.XPath.XDocument.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/refs/WindowsBase.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/BCrypt.Net-Next.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/FluentAssertions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.Mvc.Testing.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.AspNetCore.TestHost.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.InMemory.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Caching.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Caching.Memory.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Json.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Physical.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Hosting.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Configuration.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Console.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.Debug.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventLog.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventSource.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Options.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.OpenApi.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/testhost.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Newtonsoft.Json.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Npgsql.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/System.Diagnostics.EventLog.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/xunit.assert.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/xunit.core.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/xunit.execution.dotnet.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/bin/Debug/net10.0/RacePlannerApi.pdb +/Users/mastermito/Dev/raceplanner/tests/integration/backend/obj/Debug/net10.0/backend..06C82A7F.Up2Date +/Users/mastermito/Dev/raceplanner/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/obj/Debug/net10.0/refint/backend.Tests.Integration.dll +/Users/mastermito/Dev/raceplanner/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.pdb +/Users/mastermito/Dev/raceplanner/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.genruntimeconfig.cache +/Users/mastermito/Dev/raceplanner/tests/integration/backend/obj/Debug/net10.0/ref/backend.Tests.Integration.dll diff --git a/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.dll b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.dll new file mode 100644 index 0000000..b18fb26 Binary files /dev/null and b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.dll differ diff --git a/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.genruntimeconfig.cache b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.genruntimeconfig.cache new file mode 100644 index 0000000..eb03469 --- /dev/null +++ b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.genruntimeconfig.cache @@ -0,0 +1 @@ +5bc209d22a48977ab53995296560119d3d83e9858a941ab706fdb0fafc5b0608 diff --git a/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.pdb b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.pdb new file mode 100644 index 0000000..f5f02d5 Binary files /dev/null and b/tests/integration/backend/obj/Debug/net10.0/backend.Tests.Integration.pdb differ diff --git a/tests/integration/backend/obj/Debug/net10.0/ref/backend.Tests.Integration.dll b/tests/integration/backend/obj/Debug/net10.0/ref/backend.Tests.Integration.dll new file mode 100644 index 0000000..f9acf5c Binary files /dev/null and b/tests/integration/backend/obj/Debug/net10.0/ref/backend.Tests.Integration.dll differ diff --git a/tests/integration/backend/obj/Debug/net10.0/refint/backend.Tests.Integration.dll b/tests/integration/backend/obj/Debug/net10.0/refint/backend.Tests.Integration.dll new file mode 100644 index 0000000..f9acf5c Binary files /dev/null and b/tests/integration/backend/obj/Debug/net10.0/refint/backend.Tests.Integration.dll differ