diff --git a/VendorManagement/ServiceDefaults/Extensions.cs b/VendorManagement/ServiceDefaults/Extensions.cs new file mode 100644 index 0000000..18cc330 --- /dev/null +++ b/VendorManagement/ServiceDefaults/Extensions.cs @@ -0,0 +1,130 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Diagnostics.HealthChecks; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Diagnostics.HealthChecks; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.ServiceDiscovery; +using OpenTelemetry; +using OpenTelemetry.Metrics; +using OpenTelemetry.Trace; + +namespace Microsoft.Extensions.Hosting; + +// Adds common Aspire services: service discovery, resilience, health checks, and OpenTelemetry. +// This project should be referenced by each service project in your solution. +// To learn more about using this project, see https://aka.ms/dotnet/aspire/service-defaults +public static class Extensions +{ + private const string HealthEndpointPath = "/health"; + private const string AlivenessEndpointPath = "/alive"; + + public static TBuilder AddServiceDefaults(this TBuilder builder) where TBuilder : IHostApplicationBuilder + { + builder.ConfigureOpenTelemetry(); + + builder.AddDefaultHealthChecks(); + + builder.Services.AddServiceDiscovery(); + + builder.Services.ConfigureHttpClientDefaults(http => + { + // Turn on resilience by default + http.AddStandardResilienceHandler(); + + // Turn on service discovery by default + http.AddServiceDiscovery(); + }); + + // Uncomment the following to restrict the allowed schemes for service discovery. + // builder.Services.Configure(options => + // { + // options.AllowedSchemes = ["https"]; + // }); + + return builder; + } + + public static TBuilder ConfigureOpenTelemetry(this TBuilder builder) + where TBuilder : IHostApplicationBuilder + { + builder.Logging.AddOpenTelemetry(logging => + { + logging.IncludeFormattedMessage = true; + logging.IncludeScopes = true; + }); + + builder.Services.AddOpenTelemetry() + .WithMetrics(metrics => + { + metrics.AddAspNetCoreInstrumentation() + .AddHttpClientInstrumentation() + .AddRuntimeInstrumentation(); + }) + .WithTracing(tracing => + { + tracing.AddSource(builder.Environment.ApplicationName) + .AddAspNetCoreInstrumentation(tracing => + // Exclude health check requests from tracing + tracing.Filter = context => + !context.Request.Path.StartsWithSegments(HealthEndpointPath) + && !context.Request.Path.StartsWithSegments(AlivenessEndpointPath) + ) + // Uncomment the following line to enable gRPC instrumentation (requires the OpenTelemetry.Instrumentation.GrpcNetClient package) + //.AddGrpcClientInstrumentation() + .AddHttpClientInstrumentation(); + }); + + builder.AddOpenTelemetryExporters(); + + return builder; + } + + private static TBuilder AddOpenTelemetryExporters(this TBuilder builder) + where TBuilder : IHostApplicationBuilder + { + var useOtlpExporter = !string.IsNullOrWhiteSpace(builder.Configuration["OTEL_EXPORTER_OTLP_ENDPOINT"]); + + if (useOtlpExporter) + { + builder.Services.AddOpenTelemetry().UseOtlpExporter(); + } + + // Uncomment the following lines to enable the Azure Monitor exporter (requires the Azure.Monitor.OpenTelemetry.AspNetCore package) + //if (!string.IsNullOrEmpty(builder.Configuration["APPLICATIONINSIGHTS_CONNECTION_STRING"])) + //{ + // builder.Services.AddOpenTelemetry() + // .UseAzureMonitor(); + //} + + return builder; + } + + public static TBuilder AddDefaultHealthChecks(this TBuilder builder) + where TBuilder : IHostApplicationBuilder + { + builder.Services.AddHealthChecks() + // Add a default liveness check to ensure app is responsive + .AddCheck("self", () => HealthCheckResult.Healthy(), ["live"]); + + return builder; + } + + public static WebApplication MapDefaultEndpoints(this WebApplication app) + { + // Adding health checks endpoints to applications in non-development environments has security implications. + // See https://aka.ms/dotnet/aspire/healthchecks for details before enabling these endpoints in non-development environments. + if (app.Environment.IsDevelopment()) + { + // All health checks must pass for app to be considered ready to accept traffic after starting + app.MapHealthChecks(HealthEndpointPath); + + // Only health checks tagged with the "live" tag must pass for app to be considered alive + app.MapHealthChecks(AlivenessEndpointPath, new HealthCheckOptions + { + Predicate = r => r.Tags.Contains("live") + }); + } + + return app; + } +} \ No newline at end of file diff --git a/VendorManagement/ServiceDefaults/ServiceDefaults.csproj b/VendorManagement/ServiceDefaults/ServiceDefaults.csproj new file mode 100644 index 0000000..938db20 --- /dev/null +++ b/VendorManagement/ServiceDefaults/ServiceDefaults.csproj @@ -0,0 +1,22 @@ + + + + net10.0 + enable + enable + true + + + + + + + + + + + + + + + diff --git a/VendorManagement/VendorManagement.slnx b/VendorManagement/VendorManagement.slnx new file mode 100644 index 0000000..0b559be --- /dev/null +++ b/VendorManagement/VendorManagement.slnx @@ -0,0 +1,4 @@ + + + + diff --git a/VendorManagement/Vendors.Api/Program.cs b/VendorManagement/Vendors.Api/Program.cs new file mode 100644 index 0000000..a404de2 --- /dev/null +++ b/VendorManagement/Vendors.Api/Program.cs @@ -0,0 +1,37 @@ + +using Microsoft.OpenApi; +using Scalar.AspNetCore; +using Vendors.Api; + +var builder = WebApplication.CreateBuilder(args); +builder.AddServiceDefaults(); +builder.Services.AddOpenApi(config => +{ + config.AddDocumentTransformer((doc, ctx, ct) => + { + doc.Info = new OpenApiInfo() + { + Title = "Vendors API for Classroom Training", + Description = + "This API provides a list of vendors and allows lookup by unique identifier. It is intended for use in classroom training scenarios. \n\n The API Key can be anything that ends in three integers. Those integers are multiplied by 100 and the result is delayed by that number of milliseconds.", + }; + return Task.CompletedTask; + }); +}); + +var app = builder.Build(); + + +app.MapVendorApiEndpoints(); +app.MapOpenApi(); +app.MapScalarApiReference(options => +{ + options.Theme = ScalarTheme.BluePlanet; + options.Title = "Vendors API Reference"; + +}); + +app.MapDefaultEndpoints(); + +app.MapGet("/", () => Results.Redirect("/scalar")).WithDescription("Redirect to API Reference").WithDisplayName("Home Redirect"); +app.Run(); \ No newline at end of file diff --git a/VendorManagement/Vendors.Api/Properties/launchSettings.json b/VendorManagement/Vendors.Api/Properties/launchSettings.json new file mode 100644 index 0000000..29da105 --- /dev/null +++ b/VendorManagement/Vendors.Api/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "http://vendors_api.dev.localhost:5242", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://vendors_api.dev.localhost:7057;http://vendors_api.dev.localhost:5242", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/VendorManagement/Vendors.Api/StaticVendorList.cs b/VendorManagement/Vendors.Api/StaticVendorList.cs new file mode 100644 index 0000000..50d2b6d --- /dev/null +++ b/VendorManagement/Vendors.Api/StaticVendorList.cs @@ -0,0 +1,38 @@ +namespace Vendors.Api; + +public static class StaticVendorList +{ + public static readonly List Vendors = new() + { + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0001"), "Microsoft", "https://www.microsoft.com", new VendorContact("Alice Johnson", "alice.johnson@microsoft.example", "+1-425-555-0101")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0002"), "Google", "https://www.google.com", new VendorContact("Ravi Patel", "ravi.patel@google.example", "+1-650-555-0102")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0003"), "Amazon Web Services", "https://aws.amazon.com", new VendorContact("Monica Reyes", "monica.reyes@aws.example", "+1-206-555-0103")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0004"), "IBM", "https://www.ibm.com", new VendorContact("David Lee", "david.lee@ibm.example", "+1-914-555-0104")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0005"), "Oracle", "https://www.oracle.com", new VendorContact("Samantha Green", "samantha.green@oracle.example", "+1-650-555-0105")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0006"), "Salesforce", "https://www.salesforce.com", new VendorContact("Carlos Martinez", "carlos.martinez@salesforce.example", "+1-415-555-0106")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0007"), "Atlassian", "https://www.atlassian.com", new VendorContact("Emily Chen", "emily.chen@atlassian.example", "+1-800-555-0107")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0008"), "GitHub", "https://github.com", new VendorContact("Liam O'Connor", "liam.oconnor@github.example", "+1-415-555-0108")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0009"), "GitLab", "https://about.gitlab.com", new VendorContact("Zara Khan", "zara.khan@gitlab.example", "+1-415-555-0109")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0010"), "Docker", "https://www.docker.com", new VendorContact("Tom Baker", "tom.baker@docker.example", null)), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0011"), "Red Hat", "https://www.redhat.com", new VendorContact("Priya Nair", "priya.nair@redhat.example", "+1-617-555-0111")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0012"), "SAP", "https://www.sap.com", new VendorContact("Oliver Brown", "oliver.brown@sap.example", "+49-89-555-0112")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0013"), "VMware", "https://www.vmware.com", new VendorContact("Hannah Wilson", "hannah.wilson@vmware.example", "+1-650-555-0113")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0014"), "Elastic", "https://www.elastic.co", new VendorContact("Mateo Alvarez", "mateo.alvarez@elastic.example", "+1-512-555-0114")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0015"), "MongoDB", "https://www.mongodb.com", new VendorContact("Yuki Tanaka", "yuki.tanaka@mongodb.example", "+1-646-555-0115")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0016"), "Datadog", "https://www.datadoghq.com", new VendorContact("Noah Wright", "noah.wright@datadog.example", null)), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0017"), "Splunk", "https://www.splunk.com", new VendorContact("Aisha Mohammed", "aisha.mohammed@splunk.example", "+1-415-555-0117")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0018"), "HashiCorp", "https://www.hashicorp.com", new VendorContact("Ethan Park", "ethan.park@hashicorp.example", "+1-415-555-0118")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0019"), "Twilio", "https://www.twilio.com", new VendorContact("Nina Rossi", "nina.rossi@twilio.example", "+1-415-555-0119")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0020"), "Stripe", "https://stripe.com", new VendorContact("Jordan King", "jordan.king@stripe.example", null)), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0021"), "Slack", "https://slack.com", new VendorContact("Maya Singh", "maya.singh@slack.example", "+1-415-555-0121")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0022"), "Segment (Twilio)", "https://segment.com", new VendorContact("Victor Hugo", "victor.hugo@segment.example", "+1-415-555-0122")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0023"), "New Relic", "https://newrelic.com", new VendorContact("Sofia Petrova", "sofia.petrova@newrelic.example", "+1-650-555-0123")), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0024"), "Figma", "https://www.figma.com", new VendorContact("Connor Blake", "connor.blake@figma.example", null)), + new Vendor(Guid.Parse("b1d6f5a1-3f49-4b14-9b6b-0c1d0a1f0025"), "JetBrains", "https://www.jetbrains.com", new VendorContact("Irina Kozlova", "irina.kozlova@jetbrains.example", "+1-415-555-0125")), + }; +} + +public record Vendor(Guid Id, string Name, string WebSiteUrl, VendorContact Contact); + +public record VendorContact(string Name, string Email, string? PhoneNumber); + diff --git a/VendorManagement/Vendors.Api/VendorApiExtensions.cs b/VendorManagement/Vendors.Api/VendorApiExtensions.cs new file mode 100644 index 0000000..9ae883f --- /dev/null +++ b/VendorManagement/Vendors.Api/VendorApiExtensions.cs @@ -0,0 +1,72 @@ +namespace Vendors.Api; + +public static class VendorApiExtensions +{ + extension(IEndpointRouteBuilder endpoints) + { + public IEndpointRouteBuilder MapVendorApiEndpoints() + { + var group = endpoints.MapGroup("/vendors") + .WithDescription("Vendor List And Lookup") + .WithDisplayName("Vendor List"); + + group.MapGet("", GetVendors).WithDisplayName("Vendor List").WithDescription("Get the list of vendors"); + + group.MapGet("{id:guid}", GetVendorById) + .WithDisplayName("Vendor By Id") + .WithDescription("Get a vendor by its unique identifier"); + + return endpoints; + } + + static async Task GetVendors(string? apiKey) + { + if (apiKey is null) + { + return TypedResults.BadRequest("API_KEY is required"); + } + + var lastThree = apiKey.Length >= 3 ? apiKey[^3..] : apiKey; + if (!int.TryParse(lastThree, out var delaySeconds)) + { + return TypedResults.BadRequest("API_KEY must end with three digits"); + } + + await Task.Delay(delaySeconds * 100); + var response = new + { + Note = "This is fake data for a classroom example", Vendors = StaticVendorList.Vendors + }; + + return TypedResults.Ok(response); + } + + static async Task GetVendorById(Guid id, string? apiKey) + { + // get the last three characters of the API key + // if they are an integer, delay that many seconds + // if they are not return a 400 bad request + if (apiKey is null) + { + return TypedResults.BadRequest("API_KEY is required"); + } + + var lastThree = apiKey.Length >= 3 ? apiKey[^3..] : apiKey; + if (!int.TryParse(lastThree, out var delaySeconds)) + { + return TypedResults.BadRequest("API_KEY must end with three digits"); + } + + await Task.Delay(delaySeconds * 100); + + var vendor = StaticVendorList.Vendors.FirstOrDefault(v => v.Id == id); + + if (vendor == null) + { + return TypedResults.NotFound(); + } + + return TypedResults.Ok(vendor); + } + } +} \ No newline at end of file diff --git a/VendorManagement/Vendors.Api/Vendors.Api.csproj b/VendorManagement/Vendors.Api/Vendors.Api.csproj new file mode 100644 index 0000000..e79cd32 --- /dev/null +++ b/VendorManagement/Vendors.Api/Vendors.Api.csproj @@ -0,0 +1,20 @@ + + + + net10.0 + enable + enable + + + + + + + + + + + + + + diff --git a/VendorManagement/Vendors.Api/appsettings.Development.json b/VendorManagement/Vendors.Api/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/VendorManagement/Vendors.Api/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/VendorManagement/Vendors.Api/appsettings.json b/VendorManagement/Vendors.Api/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/VendorManagement/Vendors.Api/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/.gitignore b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/.gitignore new file mode 100644 index 0000000..6185763 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/.gitignore @@ -0,0 +1,15 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/contentModel.xml +/modules.xml +/projectSettingsUpdater.xml +/.idea.WolverineAndNats.iml +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/copilot.data.migration.agent.xml b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/copilot.data.migration.agent.xml new file mode 100644 index 0000000..4ea72a9 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/copilot.data.migration.agent.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/copilot.data.migration.ask2agent.xml b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/copilot.data.migration.ask2agent.xml new file mode 100644 index 0000000..1f2ea11 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/copilot.data.migration.ask2agent.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/dataSources.xml b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/dataSources.xml new file mode 100644 index 0000000..f7102ac --- /dev/null +++ b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/dataSources.xml @@ -0,0 +1,19 @@ + + + + + postgresql + true + org.postgresql.Driver + jdbc:postgresql://localhost:51238/?password=v0%7Ew8n1%7BE%29KYsw-1*3st0R&user=postgres + $ProjectFileDir$ + + + postgresql + true + org.postgresql.Driver + jdbc:postgresql://localhost:54454/?password=v0%7Ew8n1%7BE%29KYsw-1*3st0R&user=postgres + $ProjectFileDir$ + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/db-forest-config.xml b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/db-forest-config.xml new file mode 100644 index 0000000..3b60878 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/db-forest-config.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/encodings.xml b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/indexLayout.xml b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/vcs.xml b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/vcs.xml new file mode 100644 index 0000000..8e48c4d --- /dev/null +++ b/wolverine-nats/WolverineAndNats/.idea/.idea.WolverineAndNats/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/ApiOne.csproj b/wolverine-nats/WolverineAndNats/ApiOne/ApiOne.csproj new file mode 100644 index 0000000..219bc47 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/ApiOne.csproj @@ -0,0 +1,20 @@ + + + + net10.0 + enable + enable + + + + + + + + + + + + + + diff --git a/wolverine-nats/WolverineAndNats/ApiOne/Endpoints/Extensions.cs b/wolverine-nats/WolverineAndNats/ApiOne/Endpoints/Extensions.cs new file mode 100644 index 0000000..808a0be --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/Endpoints/Extensions.cs @@ -0,0 +1,44 @@ +using Messages; +using Wolverine; + +namespace ApiOne.Endpoints; + +public static class Extensions +{ + extension(IEndpointRouteBuilder endpoints) + { + public IEndpointRouteBuilder MapApiOneEndpoints() + { + endpoints.MapPost("/messages", async (SendMessage request, IMessageBus messageBus) => + { + await messageBus.PublishAsync(request); + return Results.Accepted(); + }); + + endpoints.MapPost("/math", async (AddThem request, IMessageBus bus) => + { + var result = await bus.InvokeAsync(request); + return Results.Ok(result); + }); + + endpoints.MapPost("/users", async (UserCreate user, IMessageBus bus) => + { + var doc = new UserDocument(Guid.NewGuid(), user.Name); + await bus.PublishAsync(doc); + return Results.Accepted(); + }); + endpoints.MapPut("/users/{id:guid}/name", async (Guid id, UserCreate user, IMessageBus bus) => + { + var nameChanged = new UserNameChanged(id, user.Name); + await bus.PublishAsync(nameChanged); + return Results.Accepted(); + }); + + return endpoints; + } + } +} + +public record UserCreate(string Name); + + diff --git a/wolverine-nats/WolverineAndNats/ApiOne/Program.cs b/wolverine-nats/WolverineAndNats/ApiOne/Program.cs new file mode 100644 index 0000000..4e73320 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/Program.cs @@ -0,0 +1,56 @@ +using ApiOne.Endpoints; +using Marten; +using Messages; +using Wolverine; +using Wolverine.Marten; +using Wolverine.Nats; + +var builder = WebApplication.CreateBuilder(args); +builder.AddServiceDefaults(); +builder.AddNpgsqlDataSource("db-one"); + +builder.UseWolverine(options => + { + options.UseNats(builder.Configuration.GetConnectionString("nats") ?? + throw new Exception("No NATS connection string configured")) + .AutoProvision() + .UseJetStream(js => + { + js.MaxDeliver = 5; + js.AckWait = TimeSpan.FromSeconds(30); + }) + + .DefineStream("PEOPLE", stream => + stream.WithSubject("people.>") + .WithLimits(maxMessages: 5_000, maxAge: TimeSpan.FromDays(5)) + //.WithReplicas(3) + .EnableScheduledDelivery()); + + + + options.PublishMessage() + .ToNatsSubject("messages-sent"); + + options.PublishMessage() + .ToNatsSubject("people.created"); + options.PublishMessage() + .ToNatsSubject("people.name-changed"); + + options.PublishMessage() + .ToNatsSubject("math.add"); + +}); + +builder.Services.AddMarten(config => + { + + }).UseLightweightSessions() + .IntegrateWithWolverine() + .UseNpgsqlDataSource(); + +var app = builder.Build(); + +app.MapGet("/", () => "Hello World!"); +app.MapApiOneEndpoints(); +app.MapDefaultEndpoints(); +app.Run(); \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/Properties/launchSettings.json b/wolverine-nats/WolverineAndNats/ApiOne/Properties/launchSettings.json new file mode 100644 index 0000000..e03e748 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/Properties/launchSettings.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "https://apione.dev.localhost:7131", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/wolverine-nats/WolverineAndNats/ApiOne/appsettings.Development.json b/wolverine-nats/WolverineAndNats/ApiOne/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/wolverine-nats/WolverineAndNats/ApiOne/appsettings.json b/wolverine-nats/WolverineAndNats/ApiOne/appsettings.json new file mode 100644 index 0000000..9b6d2bf --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/appsettings.json @@ -0,0 +1,10 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning", + "Npgsql": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne new file mode 100755 index 0000000..18b102a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.deps.json b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.deps.json new file mode 100644 index 0000000..bad2575 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.deps.json @@ -0,0 +1,1821 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "ApiOne/1.0.0": { + "dependencies": { + "Aspire.Npgsql": "13.1.0", + "Messages": "1.0.0", + "ServiceDefaults": "1.0.0", + "WolverineFx.Marten": "5.13.0", + "WolverineFx.Nats": "5.13.0" + }, + "runtime": { + "ApiOne.dll": {} + } + }, + "Aspire.Npgsql/13.1.0": { + "dependencies": { + "AspNetCore.HealthChecks.NpgSql": "9.0.0", + "Npgsql.DependencyInjection": "10.0.0", + "Npgsql.OpenTelemetry": "10.0.0", + "OpenTelemetry.Extensions.Hosting": "1.14.0" + }, + "runtime": { + "lib/net10.0/Aspire.Npgsql.dll": { + "assemblyVersion": "13.1.0.0", + "fileVersion": "13.100.25.61603" + } + } + }, + "AspNetCore.HealthChecks.NpgSql/9.0.0": { + "dependencies": { + "Npgsql": "10.0.0" + }, + "runtime": { + "lib/net8.0/HealthChecks.NpgSql.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.0.0" + } + } + }, + "DistributedLock.Core/1.0.8": { + "runtime": { + "lib/net8.0/DistributedLock.Core.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "DistributedLock.Postgres/1.3.0": { + "dependencies": { + "DistributedLock.Core": "1.0.8", + "Npgsql": "10.0.0" + }, + "runtime": { + "lib/net8.0/DistributedLock.Postgres.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "FastExpressionCompiler/5.3.0": { + "runtime": { + "lib/net9.0/FastExpressionCompiler.dll": { + "assemblyVersion": "5.3.0.0", + "fileVersion": "5.3.0.0" + } + } + }, + "FSharp.Core/9.0.100": { + "runtime": { + "lib/netstandard2.1/FSharp.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.1.24.52202" + } + }, + "resources": { + "lib/netstandard2.1/cs/FSharp.Core.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.1/de/FSharp.Core.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.1/es/FSharp.Core.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.1/fr/FSharp.Core.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.1/it/FSharp.Core.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.1/ja/FSharp.Core.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.1/ko/FSharp.Core.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.1/pl/FSharp.Core.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.1/ru/FSharp.Core.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.1/tr/FSharp.Core.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "JasperFx/1.17.0": { + "dependencies": { + "FastExpressionCompiler": "5.3.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Polly.Core": "8.6.5", + "Spectre.Console": "0.53.0" + }, + "runtime": { + "lib/net10.0/JasperFx.dll": { + "assemblyVersion": "1.17.0.0", + "fileVersion": "1.17.0.0" + } + } + }, + "JasperFx.Events/1.17.0": { + "dependencies": { + "JasperFx": "1.17.0" + }, + "runtime": { + "lib/net10.0/JasperFx.Events.dll": { + "assemblyVersion": "1.17.0.0", + "fileVersion": "1.17.0.0" + } + } + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "dependencies": { + "JasperFx": "1.17.0", + "Microsoft.CodeAnalysis": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Scripting": "5.0.0" + }, + "runtime": { + "lib/net10.0/JasperFx.RuntimeCompiler.dll": { + "assemblyVersion": "4.3.2.0", + "fileVersion": "4.3.2.0" + } + } + }, + "Marten/8.19.0": { + "dependencies": { + "FSharp.Core": "9.0.100", + "JasperFx": "1.17.0", + "JasperFx.Events": "1.17.0", + "JasperFx.RuntimeCompiler": "4.3.2", + "Newtonsoft.Json": "13.0.3", + "Npgsql.Json.NET": "9.0.4", + "Weasel.Postgresql": "8.5.0" + }, + "runtime": { + "lib/net10.0/Marten.dll": { + "assemblyVersion": "8.19.0.0", + "fileVersion": "8.19.0.0" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.CodeAnalysis/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "5.0.0", + "Microsoft.CodeAnalysis.VisualBasic.Workspaces": "5.0.0", + "System.Composition": "9.0.0" + } + }, + "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.Scripting/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Common": "5.0.0", + "Microsoft.CodeAnalysis.Scripting.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.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.Scripting/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp.Scripting": "5.0.0" + } + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Common": "5.0.0", + "Microsoft.CodeAnalysis.VisualBasic": "5.0.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.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.Extensions.AmbientMetadata.Application/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Telemetry": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Http.Diagnostics": "10.1.0", + "Microsoft.Extensions.Resilience": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Diagnostics.ExceptionSummarization": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0", + "Polly.Extensions": "8.4.2", + "Polly.RateLimiting": "8.4.2" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "dependencies": { + "Microsoft.Extensions.ServiceDiscovery.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "dependencies": { + "Microsoft.Extensions.AmbientMetadata.Application": "10.1.0", + "Microsoft.Extensions.DependencyInjection.AutoActivation": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Compliance.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "NATS.Client.Abstractions/2.7.0": { + "runtime": { + "lib/net8.0/NATS.Client.Abstractions.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Core/2.7.0": { + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Core.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Hosting/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.JetStream/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.KeyValueStore/2.7.0": { + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.ObjectStore/2.7.0": { + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Serializers.Json/2.7.0": { + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Services/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Services.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Simplified/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Net/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Hosting": "2.7.0", + "NATS.Client.JetStream": "2.7.0", + "NATS.Client.KeyValueStore": "2.7.0", + "NATS.Client.ObjectStore": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0", + "NATS.Client.Services": "2.7.0", + "NATS.Client.Simplified": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Net.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NetTopologySuite/2.5.0": { + "runtime": { + "lib/netstandard2.0/NetTopologySuite.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "NetTopologySuite.IO.PostGis/2.1.0": { + "dependencies": { + "NetTopologySuite": "2.5.0" + }, + "runtime": { + "lib/netstandard2.1/NetTopologySuite.IO.PostGis.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "NewId/4.0.1": { + "runtime": { + "lib/net6.0/NewId.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "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.0": { + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "Npgsql.DependencyInjection/10.0.0": { + "dependencies": { + "Npgsql": "10.0.0" + }, + "runtime": { + "lib/net8.0/Npgsql.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "Npgsql.Json.NET/9.0.4": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "Npgsql": "10.0.0" + }, + "runtime": { + "lib/net6.0/Npgsql.Json.NET.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "Npgsql.NetTopologySuite/9.0.4": { + "dependencies": { + "NetTopologySuite": "2.5.0", + "NetTopologySuite.IO.PostGis": "2.1.0", + "Npgsql": "10.0.0" + }, + "runtime": { + "lib/net6.0/Npgsql.NetTopologySuite.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "Npgsql.OpenTelemetry/10.0.0": { + "dependencies": { + "Npgsql": "10.0.0", + "OpenTelemetry.Api": "1.14.0" + }, + "runtime": { + "lib/net8.0/Npgsql.OpenTelemetry.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "OpenTelemetry/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Api/1.14.0": { + "runtime": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "assemblyVersion": "1.14.0.761", + "fileVersion": "1.14.0.761" + } + } + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "assemblyVersion": "1.14.0.774", + "fileVersion": "1.14.0.774" + } + } + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "assemblyVersion": "1.14.0.775", + "fileVersion": "1.14.0.775" + } + } + }, + "Polly.Core/8.6.5": { + "runtime": { + "lib/net8.0/Polly.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.6.5.5194" + } + } + }, + "Polly.Extensions/8.4.2": { + "dependencies": { + "Polly.Core": "8.6.5" + }, + "runtime": { + "lib/net8.0/Polly.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + }, + "Polly.RateLimiting/8.4.2": { + "dependencies": { + "Polly.Core": "8.6.5" + }, + "runtime": { + "lib/net8.0/Polly.RateLimiting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + }, + "Spectre.Console/0.53.0": { + "runtime": { + "lib/net9.0/Spectre.Console.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.53.0.0" + } + } + }, + "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" + } + } + }, + "Weasel.Core/8.5.0": { + "dependencies": { + "JasperFx": "1.17.0" + }, + "runtime": { + "lib/net10.0/Weasel.Core.dll": { + "assemblyVersion": "8.5.0.0", + "fileVersion": "8.5.0.0" + } + } + }, + "Weasel.Postgresql/8.5.0": { + "dependencies": { + "DistributedLock.Postgres": "1.3.0", + "Npgsql": "10.0.0", + "Npgsql.NetTopologySuite": "9.0.4", + "Weasel.Core": "8.5.0" + }, + "runtime": { + "lib/net10.0/Weasel.Postgresql.dll": { + "assemblyVersion": "8.5.0.0", + "fileVersion": "8.5.0.0" + } + } + }, + "WolverineFx/5.13.0": { + "dependencies": { + "JasperFx": "1.17.0", + "JasperFx.Events": "1.17.0", + "JasperFx.RuntimeCompiler": "4.3.2", + "NewId": "4.0.1", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net10.0/Wolverine.dll": { + "assemblyVersion": "5.13.0.0", + "fileVersion": "5.13.0.0" + } + } + }, + "WolverineFx.Marten/5.13.0": { + "dependencies": { + "Marten": "8.19.0", + "WolverineFx.Postgresql": "5.13.0" + }, + "runtime": { + "lib/net10.0/Wolverine.Marten.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "WolverineFx.Nats/5.13.0": { + "dependencies": { + "NATS.Net": "2.7.0", + "WolverineFx": "5.13.0" + }, + "runtime": { + "lib/net10.0/Wolverine.Nats.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "WolverineFx.Postgresql/5.13.0": { + "dependencies": { + "Weasel.Postgresql": "8.5.0", + "WolverineFx.RDBMS": "5.13.0" + }, + "runtime": { + "lib/net10.0/Wolverine.Postgresql.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "WolverineFx.RDBMS/5.13.0": { + "dependencies": { + "Weasel.Core": "8.5.0", + "WolverineFx": "5.13.0" + }, + "runtime": { + "lib/net10.0/Wolverine.RDBMS.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "Messages/1.0.0": { + "runtime": { + "Messages.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "ServiceDefaults/1.0.0": { + "dependencies": { + "Microsoft.Extensions.Http.Resilience": "10.1.0", + "Microsoft.Extensions.ServiceDiscovery": "10.1.0", + "OpenTelemetry.Exporter.OpenTelemetryProtocol": "1.14.0", + "OpenTelemetry.Extensions.Hosting": "1.14.0", + "OpenTelemetry.Instrumentation.AspNetCore": "1.14.0", + "OpenTelemetry.Instrumentation.Http": "1.14.0", + "OpenTelemetry.Instrumentation.Runtime": "1.14.0" + }, + "runtime": { + "ServiceDefaults.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "ApiOne/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Aspire.Npgsql/13.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaxFv4W11jqDoA8KHzJsaQ5PlAOHQfYCv0PqOt2nn6rPlcT+KZuzBSnAVlKQ1M5+nW2T9D+Zdi9vhXvPVz2R/w==", + "path": "aspire.npgsql/13.1.0", + "hashPath": "aspire.npgsql.13.1.0.nupkg.sha512" + }, + "AspNetCore.HealthChecks.NpgSql/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npc58/AD5zuVxERdhCl2Kb7WnL37mwX42SJcXIwvmEig0/dugOLg3SIwtfvvh3TnvTwR/sk5LYNkkPaBdks61A==", + "path": "aspnetcore.healthchecks.npgsql/9.0.0", + "hashPath": "aspnetcore.healthchecks.npgsql.9.0.0.nupkg.sha512" + }, + "DistributedLock.Core/1.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LAOsY8WxX8JU/n3lfXFz+f2pfnv0+4bHkCrOO3bwa28u9HrS3DlxSG6jf+u76SqesKs+KehZi0CndkfaUXBKvg==", + "path": "distributedlock.core/1.0.8", + "hashPath": "distributedlock.core.1.0.8.nupkg.sha512" + }, + "DistributedLock.Postgres/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CyjXmbhFgG30qPg4DwGnsmZO63y5DBRo+PI2xW0NwtFrsYsMVt/T1RcEUlb36JMKhDkf+euhnkanv/nU+W35qA==", + "path": "distributedlock.postgres/1.3.0", + "hashPath": "distributedlock.postgres.1.3.0.nupkg.sha512" + }, + "FastExpressionCompiler/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XRmGW48Gdm7B70WUtTJJUnmuc8jRDmOhhjG/a3rix/nXChnrkETaSvA0j2VrcsH4MNeYLe60LA5o5JABmbneag==", + "path": "fastexpressioncompiler/5.3.0", + "hashPath": "fastexpressioncompiler.5.3.0.nupkg.sha512" + }, + "FSharp.Core/9.0.100": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ye8yagHGsH08H2Twno5GRWkSbrMtxK/SWiHuPcF+3nODpW65/VJ8RO0aWxp8n9+KQbmahg90wAEL3TEXjF0r6A==", + "path": "fsharp.core/9.0.100", + "hashPath": "fsharp.core.9.0.100.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" + }, + "JasperFx/1.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d0QqJ33u1IIyG88p8xMi1X9DtfL5Zyq0ivxn5KWJRaVSS3gJ/q9Ws0FopQiG4mxDl/w7rbnSmuFpu4iSimP5IQ==", + "path": "jasperfx/1.17.0", + "hashPath": "jasperfx.1.17.0.nupkg.sha512" + }, + "JasperFx.Events/1.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sLvOvE5ABMcATyFLVIKDHeWbjVlhPL8TuK3To1cUdX452Xk6zyEAoW8u/UHfDr4meI9rXoMu4a5GaG8xDjp50A==", + "path": "jasperfx.events/1.17.0", + "hashPath": "jasperfx.events.1.17.0.nupkg.sha512" + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zA8iKRvnM1doCM7QqKXfit+FO9LF9hZ+BPoxe4L/+wf6RlARUMpV6HYjr1LWqogT2T5RzC5iO9r9HITl94MonA==", + "path": "jasperfx.runtimecompiler/4.3.2", + "hashPath": "jasperfx.runtimecompiler.4.3.2.nupkg.sha512" + }, + "Marten/8.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kZXpOCBbPKAvjcTS8Eco0n8N31cbPwNDuJuPktet2IKhXd9RWweSfWNh1XG8PEAQqc1oZksZty2ZD9mSOFA6gw==", + "path": "marten/8.19.0", + "hashPath": "marten.8.19.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "path": "microsoft.bcl.timeprovider/10.0.0", + "hashPath": "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7vItpZDkGm4NS2wp4P1S07Z1e61LaBWDW5tPXE1c6z5/x9KbF2RymhAPoYg7Qoiyk7odEZ6EjBEJ47p3dBpYQ==", + "path": "microsoft.codeanalysis/5.0.0", + "hashPath": "microsoft.codeanalysis.5.0.0.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.Scripting/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1sGloRYbG3743ut/+vuXy9/WaRQTm7mDtp71rBaVSmKpFntvo5Hcro1ubg6/3SeeLtiFYJl7V3Dk0Fo3CGlnHA==", + "path": "microsoft.codeanalysis.csharp.scripting/5.0.0", + "hashPath": "microsoft.codeanalysis.csharp.scripting.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.Scripting/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/KgZdm6kRTrR/O2jqXxU5GWREYhtVmqcNWczyPt8hsQkFGFK/C6CrLWfG44FCUn0aPHGDRBHYjXlGosQ/H8oXw==", + "path": "microsoft.codeanalysis.scripting/5.0.0", + "hashPath": "microsoft.codeanalysis.scripting.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XTulByMNxqXGCgMeODUoG2h4oK4/nLv1BcawRVcjv+UZHMpoaymtdaq3cJqlNrEvYEcbU48g5swJ3RhY1m3fBg==", + "path": "microsoft.codeanalysis.scripting.common/5.0.0", + "hashPath": "microsoft.codeanalysis.scripting.common.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sUBWvHs2HgHGA+b716dgjS7JiXGen5ntyohAurPLR1ZiZzFp3FlnVA7GrMTqVGdVJTVqiC3c4K8k1bk0gj6IPg==", + "path": "microsoft.codeanalysis.visualbasic/5.0.0", + "hashPath": "microsoft.codeanalysis.visualbasic.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nom4UuZVEZGaV6Qa+joJR/BawXZMtflvQJFKc0SaUc3LrZr/8LmRY5cn8mbvLOWIVfwWkQz+cVE6eQKu9qa65g==", + "path": "microsoft.codeanalysis.visualbasic.workspaces/5.0.0", + "hashPath": "microsoft.codeanalysis.visualbasic.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.Extensions.AmbientMetadata.Application/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+T2Ax2fgw7T7nlhio+ZtgSyYGfevHCOXNPqO0vxA+f2HmbtfwAnIwHEE/jm1/4uFRDDP8PEENpxAhbucg+wUWg==", + "path": "microsoft.extensions.ambientmetadata.application/10.1.0", + "hashPath": "microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M3JWrgZMkVzyEybZzNkTiC/e8U1ipXTi8xm8bj+PHHp4AcEmhmIEqnxRS0VHVCKZjLkOPt2hY2CIisUFQ6gqLA==", + "path": "microsoft.extensions.compliance.abstractions/10.1.0", + "hashPath": "microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-O052pqWkdVNXaj3n9E4x6nLL7sG860434gLh7XHhFp/KpyAY9/rCk9NJUinYfQnDkAA8UgCHimVZz+lTjnEwzQ==", + "path": "microsoft.extensions.dependencyinjection.autoactivation/10.1.0", + "hashPath": "microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q76peCoP6vXXf95RLFeMGzcaQs8l3lk+n/ZOTi2i+OLd3R0HzzB0Fswjua4NY1viIbA1s6l1mqRjQbxY7+Jylw==", + "path": "microsoft.extensions.diagnostics.exceptionsummarization/10.1.0", + "hashPath": "microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RA1Egggf5o7/5AI5TIxOmmV7T06X2jvA9nSlJazU++X/pgu48EDAjDflTq/+kAk0FHUm9ZpAiBVdWfOP2opAbQ==", + "path": "microsoft.extensions.http.diagnostics/10.1.0", + "hashPath": "microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rwDoQBB93yQjd1XtcZBnOLRX23LW7Z49TIAp1sn7i2r/pW3y4iB8E+EEL0ZyOPuEZxT9xEVN9y39KWlG1FDPkQ==", + "path": "microsoft.extensions.http.resilience/10.1.0", + "hashPath": "microsoft.extensions.http.resilience.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NzA+c4m2q92qZPjiZLFm+ToeQC3KFqzP+Dr/1pV5y9d7H/hDM2Yxno0kcw5DGpSvS0s6Pwsp+FWMdk/kXBPZ7g==", + "path": "microsoft.extensions.resilience/10.1.0", + "hashPath": "microsoft.extensions.resilience.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b78YWSrwXQI/pSzKIe/TO1lC2FcBfrux6+AmgTRStKcJYHNU1r8ii1GICRNv37CobIcaW8w33LW+xmThqIG/bg==", + "path": "microsoft.extensions.servicediscovery/10.1.0", + "hashPath": "microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uNPOkiRJx6J01aoHQBoX+QR6ZmQpIYdg/OO9+x/M3lkY6JTHBxp3pohcOyEe9l77MT8+3fVEP84/Uw+JODkA0Q==", + "path": "microsoft.extensions.servicediscovery.abstractions/10.1.0", + "hashPath": "microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OFnpwOBRZZXMMySvM7eJsEQ87ED5SaRbxHg/an1u89MWHw0mXUUbx5WPb5XFN0uS8kJPe6M+ZMRYwRP0nJeDPA==", + "path": "microsoft.extensions.telemetry/10.1.0", + "hashPath": "microsoft.extensions.telemetry.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0jAF2b0YJ1LOtunmo3PzSoJOx/ThhcGH5Y5kaV0jeM0BUlyr9orjg+fH5YabqnPSmwcN/DSTj0iZ7UwDISn5ag==", + "path": "microsoft.extensions.telemetry.abstractions/10.1.0", + "hashPath": "microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512" + }, + "NATS.Client.Abstractions/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DQ6x64lyH7Li2jS8/IV+XIEkhnhE9KENQ5luAoYTLPNEmFoIVcWN8RQSHjyRJviu4RGbw6AvHmlxvehnSqJk8w==", + "path": "nats.client.abstractions/2.7.0", + "hashPath": "nats.client.abstractions.2.7.0.nupkg.sha512" + }, + "NATS.Client.Core/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/l3nqhk6mfG50QjjvwKMN+kSUgJ27fmoaXAXXjrB13YpCbcl20c7Mj82KsutbjmxMVKSdb1mc7Wvj2Ahr03e8A==", + "path": "nats.client.core/2.7.0", + "hashPath": "nats.client.core.2.7.0.nupkg.sha512" + }, + "NATS.Client.Hosting/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P0OoQWqhKPavjmkO23mOdqHsm4GmO9OdjlTrWTpvQes67DLgxmYTjGu1PYK0pi/XJuuiUeZdKhINt6XvygaqYg==", + "path": "nats.client.hosting/2.7.0", + "hashPath": "nats.client.hosting.2.7.0.nupkg.sha512" + }, + "NATS.Client.JetStream/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MHT27WsvKCPSQ234WO+PnaDH0+rAs1W70BPnSvt/4iZ/Dunfx8oQHSGskfAz62R1U2ZGBTbucjkPCJqjCep0bA==", + "path": "nats.client.jetstream/2.7.0", + "hashPath": "nats.client.jetstream.2.7.0.nupkg.sha512" + }, + "NATS.Client.KeyValueStore/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vmpy1y3fU0TzrOhEtS+9NajcjY1R08tHR7GQIIXB2IE2k0vh1rHLChUtrMypvTlng90KHGhGPsr/EzJnu6hqzA==", + "path": "nats.client.keyvaluestore/2.7.0", + "hashPath": "nats.client.keyvaluestore.2.7.0.nupkg.sha512" + }, + "NATS.Client.ObjectStore/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UqD6MjojKm2LCK+wTGSN/lsDe9of9qygFWGSAw1m6p9eoey1HnEVH0MKqItqAKUgsuyaaZaB999/S+z6uugGQg==", + "path": "nats.client.objectstore/2.7.0", + "hashPath": "nats.client.objectstore.2.7.0.nupkg.sha512" + }, + "NATS.Client.Serializers.Json/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-13R0EvJae6dXhcfdBX29LadDdc+0SPWVp0HdAQH4D7H3Eyd2/0jxgrLNH9nlZM8lo3tSk/iDojP7e+VQjlzM1w==", + "path": "nats.client.serializers.json/2.7.0", + "hashPath": "nats.client.serializers.json.2.7.0.nupkg.sha512" + }, + "NATS.Client.Services/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EEs4ibYIwg/pP/bBPhn+K3eDfNBehTisGs2L+eZv7e+eHfBHcjSvAfbEhhyACMuFSuTROWpBaiFAH4xCWgdnbA==", + "path": "nats.client.services/2.7.0", + "hashPath": "nats.client.services.2.7.0.nupkg.sha512" + }, + "NATS.Client.Simplified/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8HU5stAU/xpQr7OyGaZbkjJGeq7hcukUUdcme4sOBiSUrjWpfgJTYeFmwFQHALFah9dkm1EYrHp1RND6lLSJTA==", + "path": "nats.client.simplified/2.7.0", + "hashPath": "nats.client.simplified.2.7.0.nupkg.sha512" + }, + "NATS.Net/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-89IrKEUb/kOzzcQ+J5SKAKmlRybRklllZKa1/LuBNkn3BblIUHYXku6JibN1wWr02HgJGH+OMYBZ0SVX1+HnCA==", + "path": "nats.net/2.7.0", + "hashPath": "nats.net.2.7.0.nupkg.sha512" + }, + "NetTopologySuite/2.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5/+2O2ADomEdUn09mlSigACdqvAf0m/pVPGtIPEPQWnyrVykYY0NlfXLIdkMgi41kvH9kNrPqYaFBTZtHYH7Xw==", + "path": "nettopologysuite/2.5.0", + "hashPath": "nettopologysuite.2.5.0.nupkg.sha512" + }, + "NetTopologySuite.IO.PostGis/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3W8XTFz8iP6GQ5jDXK1/LANHiU+988k1kmmuPWNKcJLpmSg6CvFpbTpz+s4+LBzkAp64wHGOldSlkSuzYfrIKA==", + "path": "nettopologysuite.io.postgis/2.1.0", + "hashPath": "nettopologysuite.io.postgis.2.1.0.nupkg.sha512" + }, + "NewId/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jegBasNndmG21G3BmT51suFDCIz/sLN81j+IxmkZ4iWoaDi8LygeHiyNnYbXz5OQh9nCRJFIx1+PJrlYi1Gc9Q==", + "path": "newid/4.0.1", + "hashPath": "newid.4.0.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.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", + "path": "npgsql/10.0.0", + "hashPath": "npgsql.10.0.0.nupkg.sha512" + }, + "Npgsql.DependencyInjection/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-htuxMDQ7nHgadPxoO6XXVvSgYcVierLrhzOoamyUchvC4oHnYdD05zZ0dYsq80DN0vco9t/Vp+ZxYvnfJxbhIg==", + "path": "npgsql.dependencyinjection/10.0.0", + "hashPath": "npgsql.dependencyinjection.10.0.0.nupkg.sha512" + }, + "Npgsql.Json.NET/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Eunq7mqatJujFOaZMdiWT9N7eUXHEFxe4IX/PeN8Nt1BpNYjzF2tPlmqR90EvuGT3tiEicmj4xDviC0UcPwM1w==", + "path": "npgsql.json.net/9.0.4", + "hashPath": "npgsql.json.net.9.0.4.nupkg.sha512" + }, + "Npgsql.NetTopologySuite/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7AwBLPz8EPmgAXveZ55K0Tz/9bNb8j4VI4pkTOQjyHrce8wWfAA9pefm3REidy+Kt2UFiAWef34YVi7sb/kB4A==", + "path": "npgsql.nettopologysuite/9.0.4", + "hashPath": "npgsql.nettopologysuite.9.0.4.nupkg.sha512" + }, + "Npgsql.OpenTelemetry/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eftmCZWng874x4iSfQyfF+PpnfA6hloHGQ3EzELVhRyPOEHcMygxSXhx4KI8HKu/Qg8uK1MF5tcwOVhwL7duJw==", + "path": "npgsql.opentelemetry/10.0.0", + "hashPath": "npgsql.opentelemetry.10.0.0.nupkg.sha512" + }, + "OpenTelemetry/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aiPBAr1+0dPDItH++MQQr5UgMf4xiybruzNlAoYYMYN3UUk+mGRcoKuZy4Z4rhhWUZIpK2Xhe7wUUXSTM32duQ==", + "path": "opentelemetry/1.14.0", + "hashPath": "opentelemetry.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Api/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-foHci6viUw1f3gUB8qzz3Rk02xZIWMo299X0rxK0MoOWok/3dUVru+KKdY7WIoSHwRGpxGKkmAz9jIk2RFNbsQ==", + "path": "opentelemetry.api/1.14.0", + "hashPath": "opentelemetry.api.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/lxOM92v+zU5I0rGl5tXAGz6EJtxk2MvzZ0VN6F6L5pMqT6s6RCXnGWXg6fW+vtZJsllBlQaf/VLPTzgefJpg==", + "path": "opentelemetry.api.providerbuilderextensions/1.14.0", + "hashPath": "opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7ELExeje+T/KOywHuHwZBGQNtYlepUaYRFXWgoEaT1iKpFJVwOlE1Y2+uqHI2QQmah0Ue+XgRmDy924vWHfJ6Q==", + "path": "opentelemetry.exporter.opentelemetryprotocol/1.14.0", + "hashPath": "opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZAxkCIa3Q3YWZ1sGrolXfkhPqn2PFSz2Cel74em/fATZgY5ixlw6MQp2icmqKCz4C7M1W2G0b92K3rX8mOtFRg==", + "path": "opentelemetry.extensions.hosting/1.14.0", + "hashPath": "opentelemetry.extensions.hosting.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NQAQpFa3a4ofPUYwxcwtNPGpuRNwwx1HM7MnLEESYjYkhfhER+PqqGywW65rWd7bJEc1/IaL+xbmHH99pYDE0A==", + "path": "opentelemetry.instrumentation.aspnetcore/1.14.0", + "hashPath": "opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uH8X1fYnywrgaUrSbemKvFiFkBwY7ZbBU7Wh4A/ORQmdpF3G/5STidY4PlK4xYuIv9KkdMXH/vkpvzQcayW70g==", + "path": "opentelemetry.instrumentation.http/1.14.0", + "hashPath": "opentelemetry.instrumentation.http.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6o4JDOQaKv6bInAYZxuyxxfMKr6hFpwLnKEgQ+q+oBNA9Fm1sysjFCOzRzk7U0WD86LsRPXX+chv1vJIg7cfg==", + "path": "opentelemetry.instrumentation.runtime/1.14.0", + "hashPath": "opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512" + }, + "Polly.Core/8.6.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t+sUVrIwvo7UmsgHGgOG9F0GDZSRIm47u2ylH17Gvcv1q5hNEwgD5GoBlFyc0kh/pebmPyrAgvGsR/65ZBaXlg==", + "path": "polly.core/8.6.5", + "hashPath": "polly.core.8.6.5.nupkg.sha512" + }, + "Polly.Extensions/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GZ9vRVmR0jV2JtZavt+pGUsQ1O1cuRKG7R7VOZI6ZDy9y6RNPvRvXK1tuS4ffUrv8L0FTea59oEuQzgS0R7zSA==", + "path": "polly.extensions/8.4.2", + "hashPath": "polly.extensions.8.4.2.nupkg.sha512" + }, + "Polly.RateLimiting/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehTImQ/eUyO07VYW2WvwSmU9rRH200SKJ/3jku9rOkyWE0A2JxNFmAVms8dSn49QLSjmjFRRSgfNyOgr/2PSmA==", + "path": "polly.ratelimiting/8.4.2", + "hashPath": "polly.ratelimiting.8.4.2.nupkg.sha512" + }, + "Spectre.Console/0.53.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m2iv8Egfywp7FaNLKCmCFHbSf36D4ctzZKvlAK9NXMyGLh6L+CnrZWK8o+LOYsoAS1jtoHn0W1BT0W8vuq/FUw==", + "path": "spectre.console/0.53.0", + "hashPath": "spectre.console.0.53.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" + }, + "Weasel.Core/8.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aNlEmFqgJ3GGgVmEAVOiUFN10m/OzL5fYP22FeVhd6jrN9rj0daJnxhkA+f00gkXcAVgx6LidsWVBnsmxLhIIw==", + "path": "weasel.core/8.5.0", + "hashPath": "weasel.core.8.5.0.nupkg.sha512" + }, + "Weasel.Postgresql/8.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4a8Had3NmSw1HR2U2wVqN7ho0Q5mo4RLwYMk4v/4xGm8nqEB2WKMRCaGNbFss+p+LxWimyiikMabM0q46bd2/w==", + "path": "weasel.postgresql/8.5.0", + "hashPath": "weasel.postgresql.8.5.0.nupkg.sha512" + }, + "WolverineFx/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FB5Yo6M0SyQWDgHz2EjwQcflhrjRd9mERV6/N6WHQHJO1kW8fSxEIcOHndhikcVkZvmhUdwu5PW4V4ypEmpKTA==", + "path": "wolverinefx/5.13.0", + "hashPath": "wolverinefx.5.13.0.nupkg.sha512" + }, + "WolverineFx.Marten/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s6nzaLC/CmLc3VsBspeCUXv3/hjJOpoCEIUtQX1316rB+hOq18axSywtidNLkWNMC6N6+86WJuCqoVPXvW/YSQ==", + "path": "wolverinefx.marten/5.13.0", + "hashPath": "wolverinefx.marten.5.13.0.nupkg.sha512" + }, + "WolverineFx.Nats/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8GN8uwRX56vp3fN8KSQqrEYlAtAKoOz1ZpCckZCsr15sP8eoE+Sa5wfzkGQ186cAYnkBa2P0yMlr1QRCmHYaYQ==", + "path": "wolverinefx.nats/5.13.0", + "hashPath": "wolverinefx.nats.5.13.0.nupkg.sha512" + }, + "WolverineFx.Postgresql/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ntzQeLiJmdDuvmSK0aJaKT1fX2iBdNXncVPg1B81r90CLHSv32aqBVwXFzPtBJkIWaAhCzzWu/vy3tNH9d4QjA==", + "path": "wolverinefx.postgresql/5.13.0", + "hashPath": "wolverinefx.postgresql.5.13.0.nupkg.sha512" + }, + "WolverineFx.RDBMS/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Het8JdsausBm0q8GJ24QWvONsxRQ1n+j1HIWZI5jXbgPmlPv1MWPfwH3rm0Q4okYpP/1WIj7470sJbkOj46GnA==", + "path": "wolverinefx.rdbms/5.13.0", + "hashPath": "wolverinefx.rdbms.5.13.0.nupkg.sha512" + }, + "Messages/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "ServiceDefaults/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.dll new file mode 100644 index 0000000..da71d9c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.pdb b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.pdb new file mode 100644 index 0000000..73d817e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.pdb differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.runtimeconfig.json b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.runtimeconfig.json new file mode 100644 index 0000000..ed5401a --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "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.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.staticwebassets.endpoints.json b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Aspire.Npgsql.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Aspire.Npgsql.dll new file mode 100755 index 0000000..adf6023 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Aspire.Npgsql.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/DistributedLock.Core.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/DistributedLock.Core.dll new file mode 100755 index 0000000..a4870d3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/DistributedLock.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/DistributedLock.Postgres.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/DistributedLock.Postgres.dll new file mode 100755 index 0000000..82952aa Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/DistributedLock.Postgres.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/FSharp.Core.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/FSharp.Core.dll new file mode 100755 index 0000000..ea0b963 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/FSharp.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/FastExpressionCompiler.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/FastExpressionCompiler.dll new file mode 100755 index 0000000..c10a22c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/FastExpressionCompiler.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/HealthChecks.NpgSql.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/HealthChecks.NpgSql.dll new file mode 100755 index 0000000..3c061a9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/HealthChecks.NpgSql.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Humanizer.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Humanizer.dll new file mode 100755 index 0000000..c9a7ef8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Humanizer.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/JasperFx.Events.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/JasperFx.Events.dll new file mode 100755 index 0000000..cac36d5 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/JasperFx.Events.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll new file mode 100755 index 0000000..cb1f7fd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/JasperFx.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/JasperFx.dll new file mode 100755 index 0000000..bb9accf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/JasperFx.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Marten.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Marten.dll new file mode 100755 index 0000000..c9cf208 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Marten.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Messages.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Messages.dll new file mode 100644 index 0000000..95f77d9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Messages.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Messages.pdb b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Messages.pdb new file mode 100644 index 0000000..872a410 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Messages.pdb differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100755 index 0000000..e982c02 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll new file mode 100755 index 0000000..ca7722c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll new file mode 100755 index 0000000..ec6ffbf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100755 index 0000000..ab1265c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100755 index 0000000..dc1f35d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll new file mode 100755 index 0000000..8d0876e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll new file mode 100755 index 0000000..c56e604 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll new file mode 100755 index 0000000..6b7962d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100755 index 0000000..7135704 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll new file mode 100755 index 0000000..f54bd93 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll new file mode 100755 index 0000000..e9dbcea Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll new file mode 100755 index 0000000..f7faed9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll new file mode 100755 index 0000000..595c65d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll new file mode 100755 index 0000000..4f63d2a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll new file mode 100755 index 0000000..46dd33d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll new file mode 100755 index 0000000..a5749cd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll new file mode 100755 index 0000000..adb9d3f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll new file mode 100755 index 0000000..acbd79f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll new file mode 100755 index 0000000..5804085 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll new file mode 100755 index 0000000..f472139 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll new file mode 100755 index 0000000..3cbddc0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Abstractions.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Abstractions.dll new file mode 100755 index 0000000..a3c7d6a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Core.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Core.dll new file mode 100755 index 0000000..39790f8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Hosting.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Hosting.dll new file mode 100755 index 0000000..deefdbf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.JetStream.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.JetStream.dll new file mode 100755 index 0000000..cb29478 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.JetStream.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll new file mode 100755 index 0000000..e1213bb Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.ObjectStore.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.ObjectStore.dll new file mode 100755 index 0000000..fd0c6d4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.ObjectStore.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll new file mode 100755 index 0000000..67c26e2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Services.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Services.dll new file mode 100755 index 0000000..d73c5d2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Services.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Simplified.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Simplified.dll new file mode 100755 index 0000000..6bce2aa Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Simplified.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Net.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Net.dll new file mode 100755 index 0000000..8445f86 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Net.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NetTopologySuite.IO.PostGis.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NetTopologySuite.IO.PostGis.dll new file mode 100755 index 0000000..658dcf3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NetTopologySuite.IO.PostGis.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NetTopologySuite.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NetTopologySuite.dll new file mode 100755 index 0000000..8460083 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NetTopologySuite.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NewId.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NewId.dll new file mode 100755 index 0000000..33f918f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NewId.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Newtonsoft.Json.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Newtonsoft.Json.dll new file mode 100755 index 0000000..d035c38 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Newtonsoft.Json.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.DependencyInjection.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.DependencyInjection.dll new file mode 100755 index 0000000..0a2440b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.DependencyInjection.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.Json.NET.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.Json.NET.dll new file mode 100755 index 0000000..651d13b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.Json.NET.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.NetTopologySuite.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.NetTopologySuite.dll new file mode 100755 index 0000000..5cc39e4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.NetTopologySuite.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.OpenTelemetry.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.OpenTelemetry.dll new file mode 100755 index 0000000..de42906 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.OpenTelemetry.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.dll new file mode 100755 index 0000000..1207ef0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll new file mode 100755 index 0000000..f46a6fd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Api.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Api.dll new file mode 100755 index 0000000..2eddb36 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Api.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll new file mode 100755 index 0000000..5f1882e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll new file mode 100755 index 0000000..a817a7a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll new file mode 100755 index 0000000..fd25ac6 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll new file mode 100755 index 0000000..18c61ed Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll new file mode 100755 index 0000000..2d825dd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.dll new file mode 100755 index 0000000..7cc4ece Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Polly.Core.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Polly.Core.dll new file mode 100755 index 0000000..57eae20 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Polly.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Polly.Extensions.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Polly.Extensions.dll new file mode 100755 index 0000000..312cf8e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Polly.Extensions.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Polly.RateLimiting.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Polly.RateLimiting.dll new file mode 100755 index 0000000..e29985e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Polly.RateLimiting.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ServiceDefaults.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ServiceDefaults.dll new file mode 100644 index 0000000..f8273ad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ServiceDefaults.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ServiceDefaults.pdb b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ServiceDefaults.pdb new file mode 100644 index 0000000..eafc129 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ServiceDefaults.pdb differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Spectre.Console.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Spectre.Console.dll new file mode 100755 index 0000000..d1b571d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Spectre.Console.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.AttributedModel.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.AttributedModel.dll new file mode 100755 index 0000000..2664688 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.AttributedModel.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.Convention.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.Convention.dll new file mode 100755 index 0000000..40f6537 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.Convention.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.Hosting.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.Hosting.dll new file mode 100755 index 0000000..b1cce85 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.Runtime.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.Runtime.dll new file mode 100755 index 0000000..c30bbbb Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.Runtime.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.TypedParts.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.TypedParts.dll new file mode 100755 index 0000000..1556319 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.TypedParts.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Weasel.Core.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Weasel.Core.dll new file mode 100755 index 0000000..6bd8cda Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Weasel.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Weasel.Postgresql.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Weasel.Postgresql.dll new file mode 100755 index 0000000..67128b8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Weasel.Postgresql.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.Marten.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.Marten.dll new file mode 100755 index 0000000..ce47d1e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.Marten.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.Nats.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.Nats.dll new file mode 100755 index 0000000..009f0d3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.Nats.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.Postgresql.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.Postgresql.dll new file mode 100755 index 0000000..8bb0c73 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.Postgresql.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.RDBMS.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.RDBMS.dll new file mode 100755 index 0000000..69aa0c3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.RDBMS.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.dll new file mode 100755 index 0000000..ad44ea4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/appsettings.Development.json b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/appsettings.json b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/appsettings.json new file mode 100644 index 0000000..9b6d2bf --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/appsettings.json @@ -0,0 +1,10 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning", + "Npgsql": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/FSharp.Core.resources.dll new file mode 100755 index 0000000..ca78e99 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..5026d91 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..fa3b62e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..de0032e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..f5dae0b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..c3e5620 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..8dd116e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..9c9e5c3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..fe7a8c8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/FSharp.Core.resources.dll new file mode 100755 index 0000000..2b527ff Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..87e10b0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..3a2887c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..3bef0e7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..1ac21c1 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..201b964 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..7d60e32 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..5e1cc23 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..71227fc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/FSharp.Core.resources.dll new file mode 100755 index 0000000..d84c77f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..ce491fd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..3a50733 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..7b14221 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..eabc7a9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..ccd63e9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..2aa2e42 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..de991ad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..ffe4e81 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/FSharp.Core.resources.dll new file mode 100755 index 0000000..1fa7684 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..bdf9041 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..4eb6122 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..35b8d36 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..6224d3d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..8153da0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..24a6fc9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..ae46f62 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..2870de8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/FSharp.Core.resources.dll new file mode 100755 index 0000000..8e1e203 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..b824665 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..31d7841 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..4f5ea19 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..a128ff1 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..5ef0d16 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..83f0214 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c62df50 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..738856c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/FSharp.Core.resources.dll new file mode 100755 index 0000000..ad7a56f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..db113c0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..118b9b8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..8d5c43a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..c8b03b8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..76732af Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..36a413b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c88dd66 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..7400f4a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/FSharp.Core.resources.dll new file mode 100755 index 0000000..5cdab69 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..87b7088 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..036e931 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..7305396 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..7e0e174 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..72007ca Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..8b9768e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..adead79 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9f8ffe3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/FSharp.Core.resources.dll new file mode 100755 index 0000000..a561919 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..93476d2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..e318959 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..89c6efc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..a1d9ec3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..1e49360 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..6d9c7ac Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..82b3fa2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9db06d4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/FSharp.Core.resources.dll new file mode 100755 index 0000000..f90631f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..e75f09f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..8be5aa7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..a263248 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..5280b0d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..1d0ce8a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..f4d5744 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..3a16748 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..8b9f7ce Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/FSharp.Core.resources.dll new file mode 100755 index 0000000..304fc82 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..33a7463 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..bd7b2a2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..6feb49f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..5004e0d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..3049968 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..5f5481b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..413ac6a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..b5e3f64 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/FSharp.Core.resources.dll new file mode 100755 index 0000000..4ba4a10 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..3e0a242 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..c219a07 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..6697523 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..506eb95 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..6095bb4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..65c17bf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..28739df Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..e5f35c2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/FSharp.Core.resources.dll new file mode 100755 index 0000000..5077036 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..b64fcad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..215fe77 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..53d30cc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..a71ab8b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..89ab7dc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..b317bb4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c1b4544 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..712df48 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/FSharp.Core.resources.dll new file mode 100755 index 0000000..6370812 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..64f8c0f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..d96f8c8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..23c31b7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..8c58451 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..129e754 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..75fb189 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..7d3ed5d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..14fee21 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/ApiOne.csproj.nuget.dgspec.json b/wolverine-nats/WolverineAndNats/ApiOne/obj/ApiOne.csproj.nuget.dgspec.json new file mode 100644 index 0000000..94d7d4a --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/ApiOne.csproj.nuget.dgspec.json @@ -0,0 +1,1344 @@ +{ + "format": 1, + "restore": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/ApiOne.csproj": {} + }, + "projects": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/ApiOne.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/ApiOne.csproj", + "projectName": "ApiOne", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/ApiOne.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj" + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Aspire.Npgsql": { + "target": "Package", + "version": "[13.1.0, )" + }, + "WolverineFx.Marten": { + "target": "Package", + "version": "[5.13.0, )" + }, + "WolverineFx.Nats": { + "target": "Package", + "version": "[5.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj", + "projectName": "Messages", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj", + "projectName": "ServiceDefaults", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.Extensions.Http.Resilience": { + "target": "Package", + "version": "[10.1.0, )" + }, + "Microsoft.Extensions.ServiceDiscovery": { + "target": "Package", + "version": "[10.1.0, )" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Extensions.Hosting": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.AspNetCore": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.Http": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.Runtime": { + "target": "Package", + "version": "[1.14.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/ApiOne.csproj.nuget.g.props b/wolverine-nats/WolverineAndNats/ApiOne/obj/ApiOne.csproj.nuget.g.props new file mode 100644 index 0000000..1e40171 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/ApiOne.csproj.nuget.g.props @@ -0,0 +1,22 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/jeffrygonzalez/.nuget/packages/ + /Users/jeffrygonzalez/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + + + /Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.analyzers/3.11.0 + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/ApiOne.csproj.nuget.g.targets b/wolverine-nats/WolverineAndNats/ApiOne/obj/ApiOne.csproj.nuget.g.targets new file mode 100644 index 0000000..18a4474 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/ApiOne.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.AssemblyInfo.cs b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.AssemblyInfo.cs new file mode 100644 index 0000000..d4956be --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ApiOne")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+029fc808861743407d1014ffb7cabf40b443645a")] +[assembly: System.Reflection.AssemblyProductAttribute("ApiOne")] +[assembly: System.Reflection.AssemblyTitleAttribute("ApiOne")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.AssemblyInfoInputs.cache b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.AssemblyInfoInputs.cache new file mode 100644 index 0000000..9f3bb31 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +aa188eb55677e971aa8faef1b2e6fc02fcd456e258a3eb3dc291bd0beb99de05 diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.GeneratedMSBuildEditorConfig.editorconfig b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d968a7f --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,31 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFramework = net10.0 +build_property.TargetPlatformMinVersion = +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.RootNamespace = ApiOne +build_property.RootNamespace = ApiOne +build_property.ProjectDir = /Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.GlobalUsings.g.cs b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.GlobalUsings.g.cs new file mode 100644 index 0000000..5e6145d --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.MvcApplicationPartsAssemblyInfo.cache b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.assets.cache b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.assets.cache new file mode 100644 index 0000000..b2b8825 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.assets.cache differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.AssemblyReference.cache b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.AssemblyReference.cache new file mode 100644 index 0000000..a860513 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.AssemblyReference.cache differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.CoreCompileInputs.cache b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..99cb1af --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d48ccf235ac147585b2350debd3d2a68076fa2364d8bcbecfe2480d56babae91 diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.FileListAbsolute.txt b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..1c23a2f --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.FileListAbsolute.txt @@ -0,0 +1,227 @@ +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/appsettings.Development.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/appsettings.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.staticwebassets.endpoints.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.deps.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.runtimeconfig.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ApiOne.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Aspire.Npgsql.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/HealthChecks.NpgSql.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/DistributedLock.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/DistributedLock.Postgres.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/FastExpressionCompiler.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/FSharp.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Humanizer.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/JasperFx.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/JasperFx.Events.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Marten.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.JetStream.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.ObjectStore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Services.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Client.Simplified.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NATS.Net.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NetTopologySuite.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NetTopologySuite.IO.PostGis.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/NewId.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Newtonsoft.Json.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.DependencyInjection.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.Json.NET.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.NetTopologySuite.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Npgsql.OpenTelemetry.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Api.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Polly.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Polly.Extensions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Polly.RateLimiting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Spectre.Console.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.AttributedModel.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.Convention.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.Runtime.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/System.Composition.TypedParts.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Weasel.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Weasel.Postgresql.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.Marten.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.Nats.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.Postgresql.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Wolverine.RDBMS.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Messages.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ServiceDefaults.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/Messages.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/bin/Debug/net10.0/ServiceDefaults.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.AssemblyReference.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/rpswa.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.GeneratedMSBuildEditorConfig.editorconfig +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.AssemblyInfoInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.AssemblyInfo.cs +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.CoreCompileInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.MvcApplicationPartsAssemblyInfo.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.sourcelink.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/rjimswa.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/scopedcss/bundle/ApiOne.styles.css +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/staticwebassets.build.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/staticwebassets.build.json.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/staticwebassets.development.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/swae.build.ex.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.Up2Date +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/refint/ApiOne.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.genruntimeconfig.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ref/ApiOne.dll diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.Up2Date b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.dll b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.dll new file mode 100644 index 0000000..da71d9c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.genruntimeconfig.cache b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.genruntimeconfig.cache new file mode 100644 index 0000000..c9ebb09 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.genruntimeconfig.cache @@ -0,0 +1 @@ +b018960e08f91de311742fbf664318bd5a9ac428508ff3961cd7625c614316fc diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.pdb b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.pdb new file mode 100644 index 0000000..73d817e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.pdb differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.sourcelink.json b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.sourcelink.json new file mode 100644 index 0000000..a43e21e --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ApiOne.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/Users/jeffrygonzalez/work/reference/*":"https://raw.githubusercontent.com/HypertheoryTraining/reference/029fc808861743407d1014ffb7cabf40b443645a/*"}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/apphost b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/apphost new file mode 100755 index 0000000..18b102a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/apphost differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ref/ApiOne.dll b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ref/ApiOne.dll new file mode 100644 index 0000000..2e72ca5 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/ref/ApiOne.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/refint/ApiOne.dll b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/refint/ApiOne.dll new file mode 100644 index 0000000..2e72ca5 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/refint/ApiOne.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..52621f2 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"6KJBIjSgd8Q1VASfaW6MnmooVdxUQRAwdkpqcG5uahE=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["K9mFvFJedr94wo7X9ZNYC5mqYY6cgGKL/CUkC\u002BnQNxQ=","jM8JKFytkC\u002BnjkiNvyK3sNcmngtUJWic6SfSQQ89UtI=","1/5LpgA64gfEMx8nNq8LK95nH7P4bExUC/IN2e820tQ=","Cv8zPgzz9Rgl8QXqmz2V9dyZTD0RKrF5TWyUqfh9zYc="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..d73b884 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"PwhxMfxdA8BNKZ9GT/UWkOJvuMrQ6DJwyPCqgS0xiTg=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["K9mFvFJedr94wo7X9ZNYC5mqYY6cgGKL/CUkC\u002BnQNxQ=","jM8JKFytkC\u002BnjkiNvyK3sNcmngtUJWic6SfSQQ89UtI=","1/5LpgA64gfEMx8nNq8LK95nH7P4bExUC/IN2e820tQ=","Cv8zPgzz9Rgl8QXqmz2V9dyZTD0RKrF5TWyUqfh9zYc="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/rpswa.dswa.cache.json b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..c7585ef --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"1l1tc0WemguugWDip4gDrCtVxRm5L7mWlpSucBvHpq0=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["K9mFvFJedr94wo7X9ZNYC5mqYY6cgGKL/CUkC\u002BnQNxQ=","jM8JKFytkC\u002BnjkiNvyK3sNcmngtUJWic6SfSQQ89UtI="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/staticwebassets.build.json b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..cc97226 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"5Ys7Fh6qwS6hSnFS9X3mPfu/HF20bUxpm+IK3FMsNKg=","Source":"ApiOne","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/staticwebassets.build.json.cache b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..875acf1 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +5Ys7Fh6qwS6hSnFS9X3mPfu/HF20bUxpm+IK3FMsNKg= \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/swae.build.ex.cache b/wolverine-nats/WolverineAndNats/ApiOne/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/project.assets.json b/wolverine-nats/WolverineAndNats/ApiOne/obj/project.assets.json new file mode 100644 index 0000000..dc10d01 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/project.assets.json @@ -0,0 +1,5009 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Aspire.Npgsql/13.1.0": { + "type": "package", + "dependencies": { + "AspNetCore.HealthChecks.NpgSql": "9.0.0", + "Npgsql.DependencyInjection": "10.0.0", + "Npgsql.OpenTelemetry": "10.0.0", + "OpenTelemetry.Extensions.Hosting": "1.14.0" + }, + "compile": { + "lib/net10.0/Aspire.Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Aspire.Npgsql.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net10.0/Aspire.Npgsql.targets": {} + } + }, + "AspNetCore.HealthChecks.NpgSql/9.0.0": { + "type": "package", + "dependencies": { + "Npgsql": "8.0.3" + }, + "compile": { + "lib/net8.0/HealthChecks.NpgSql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/HealthChecks.NpgSql.dll": { + "related": ".xml" + } + } + }, + "DistributedLock.Core/1.0.8": { + "type": "package", + "compile": { + "lib/net8.0/DistributedLock.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DistributedLock.Core.dll": { + "related": ".xml" + } + } + }, + "DistributedLock.Postgres/1.3.0": { + "type": "package", + "dependencies": { + "DistributedLock.Core": "[1.0.8, 1.1.0)", + "Npgsql": "8.0.6" + }, + "compile": { + "lib/net8.0/DistributedLock.Postgres.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DistributedLock.Postgres.dll": { + "related": ".xml" + } + } + }, + "FastExpressionCompiler/5.3.0": { + "type": "package", + "compile": { + "lib/net9.0/FastExpressionCompiler.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/FastExpressionCompiler.dll": { + "related": ".xml" + } + } + }, + "FSharp.Core/9.0.100": { + "type": "package", + "compile": { + "lib/netstandard2.1/FSharp.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/FSharp.Core.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/netstandard2.1/cs/FSharp.Core.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.1/de/FSharp.Core.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.1/es/FSharp.Core.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.1/fr/FSharp.Core.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.1/it/FSharp.Core.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.1/ja/FSharp.Core.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.1/ko/FSharp.Core.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.1/pl/FSharp.Core.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.1/ru/FSharp.Core.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.1/tr/FSharp.Core.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "ImTools/4.0.0": { + "type": "package", + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + } + }, + "JasperFx/1.17.0": { + "type": "package", + "dependencies": { + "FastExpressionCompiler": "5.3.0", + "ImTools": "4.0.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Polly.Core": "8.6.5", + "Spectre.Console": "0.53.0" + }, + "compile": { + "lib/net10.0/JasperFx.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/JasperFx.dll": { + "related": ".xml" + } + } + }, + "JasperFx.Events/1.17.0": { + "type": "package", + "dependencies": { + "JasperFx": "1.17.0" + }, + "compile": { + "lib/net10.0/JasperFx.Events.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/JasperFx.Events.dll": { + "related": ".xml" + } + } + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "type": "package", + "dependencies": { + "JasperFx": "1.17.0", + "Microsoft.CodeAnalysis": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Scripting": "5.0.0" + }, + "compile": { + "lib/net10.0/JasperFx.RuntimeCompiler.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/JasperFx.RuntimeCompiler.dll": { + "related": ".xml" + } + } + }, + "Marten/8.19.0": { + "type": "package", + "dependencies": { + "FSharp.Core": "9.0.100", + "JasperFx": "1.17.0", + "JasperFx.Events": "1.17.0", + "JasperFx.RuntimeCompiler": "4.3.2", + "Newtonsoft.Json": "13.0.3", + "Npgsql.Json.NET": "9.0.4", + "Weasel.Postgresql": "8.5.0" + }, + "compile": { + "lib/net10.0/Marten.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Marten.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.CodeAnalysis/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "[5.0.0]", + "Microsoft.CodeAnalysis.VisualBasic.Workspaces": "[5.0.0]", + "System.Composition": "9.0.0" + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "type": "package", + "build": { + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {}, + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {} + } + }, + "Microsoft.CodeAnalysis.Common/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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.Scripting/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp": "[5.0.0]", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "Microsoft.CodeAnalysis.Scripting.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp": "[5.0.0]", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[5.0.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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.Scripting/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp.Scripting": "[5.0.0]" + } + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "Microsoft.CodeAnalysis.VisualBasic": "[5.0.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[5.0.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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.Extensions.AmbientMetadata.Application/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Telemetry": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Http.Diagnostics": "10.1.0", + "Microsoft.Extensions.Resilience": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Http.Resilience.targets": {} + } + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Diagnostics.ExceptionSummarization": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0", + "Polly.Extensions": "8.4.2", + "Polly.RateLimiting": "8.4.2" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ServiceDiscovery.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.AmbientMetadata.Application": "10.1.0", + "Microsoft.Extensions.DependencyInjection.AutoActivation": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Compliance.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.props": {}, + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.targets": {} + } + }, + "NATS.Client.Abstractions/2.7.0": { + "type": "package", + "compile": { + "lib/net8.0/NATS.Client.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Abstractions.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Core/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Core.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Hosting/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.JetStream/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.KeyValueStore/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.ObjectStore/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Serializers.Json/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Services/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Services.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Services.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Simplified/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "related": ".xml" + } + } + }, + "NATS.Net/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Hosting": "2.7.0", + "NATS.Client.JetStream": "2.7.0", + "NATS.Client.KeyValueStore": "2.7.0", + "NATS.Client.ObjectStore": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0", + "NATS.Client.Services": "2.7.0", + "NATS.Client.Simplified": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Net.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Net.dll": { + "related": ".xml" + } + } + }, + "NetTopologySuite/2.5.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NetTopologySuite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/NetTopologySuite.dll": { + "related": ".xml" + } + } + }, + "NetTopologySuite.IO.PostGis/2.1.0": { + "type": "package", + "dependencies": { + "NetTopologySuite": "[2.0.0, 3.0.0-A)" + }, + "compile": { + "lib/netstandard2.1/NetTopologySuite.IO.PostGis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/NetTopologySuite.IO.PostGis.dll": { + "related": ".xml" + } + } + }, + "NewId/4.0.1": { + "type": "package", + "compile": { + "lib/net6.0/NewId.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/NewId.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Npgsql/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Npgsql": "10.0.0" + }, + "compile": { + "lib/net8.0/Npgsql.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "Npgsql.Json.NET/9.0.4": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "Npgsql": "9.0.4" + }, + "compile": { + "lib/net6.0/Npgsql.Json.NET.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Npgsql.Json.NET.dll": { + "related": ".xml" + } + } + }, + "Npgsql.NetTopologySuite/9.0.4": { + "type": "package", + "dependencies": { + "NetTopologySuite": "2.5.0", + "NetTopologySuite.IO.PostGIS": "2.1.0", + "Npgsql": "9.0.4" + }, + "compile": { + "lib/net6.0/Npgsql.NetTopologySuite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Npgsql.NetTopologySuite.dll": { + "related": ".xml" + } + } + }, + "Npgsql.OpenTelemetry/10.0.0": { + "type": "package", + "dependencies": { + "Npgsql": "10.0.0", + "OpenTelemetry.API": "1.14.0" + }, + "compile": { + "lib/net8.0/Npgsql.OpenTelemetry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.OpenTelemetry.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Api/1.14.0": { + "type": "package", + "compile": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "related": ".xml" + } + } + }, + "Polly.Core/8.6.5": { + "type": "package", + "compile": { + "lib/net8.0/Polly.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Polly.Extensions/8.4.2": { + "type": "package", + "dependencies": { + "Polly.Core": "8.4.2" + }, + "compile": { + "lib/net8.0/Polly.Extensions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.Extensions.dll": { + "related": ".pdb;.xml" + } + } + }, + "Polly.RateLimiting/8.4.2": { + "type": "package", + "dependencies": { + "Polly.Core": "8.4.2" + }, + "compile": { + "lib/net8.0/Polly.RateLimiting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.RateLimiting.dll": { + "related": ".pdb;.xml" + } + } + }, + "Spectre.Console/0.53.0": { + "type": "package", + "compile": { + "lib/net9.0/Spectre.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Spectre.Console.dll": { + "related": ".xml" + } + } + }, + "System.Composition/9.0.0": { + "type": "package", + "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" + }, + "compile": { + "lib/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.AttributedModel/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Convention/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Hosting/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.Runtime": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Runtime/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.TypedParts/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Weasel.Core/8.5.0": { + "type": "package", + "dependencies": { + "JasperFx": "1.11.3" + }, + "compile": { + "lib/net10.0/Weasel.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Weasel.Core.dll": { + "related": ".xml" + } + } + }, + "Weasel.Postgresql/8.5.0": { + "type": "package", + "dependencies": { + "DistributedLock.Postgres": "1.3.0", + "Npgsql": "9.0.4", + "Npgsql.NetTopologySuite": "9.0.4", + "Weasel.Core": "8.5.0" + }, + "compile": { + "lib/net10.0/Weasel.Postgresql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Weasel.Postgresql.dll": { + "related": ".xml" + } + } + }, + "WolverineFx/5.13.0": { + "type": "package", + "dependencies": { + "JasperFx": "1.17.0", + "JasperFx.Events": "1.17.0", + "JasperFx.RuntimeCompiler": "4.3.2", + "NewId": "4.0.1", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net10.0/Wolverine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.dll": { + "related": ".xml" + } + } + }, + "WolverineFx.Marten/5.13.0": { + "type": "package", + "dependencies": { + "Marten": "8.19.0", + "WolverineFx.Postgresql": "5.13.0" + }, + "compile": { + "lib/net10.0/Wolverine.Marten.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.Marten.dll": { + "related": ".xml" + } + } + }, + "WolverineFx.Nats/5.13.0": { + "type": "package", + "dependencies": { + "NATS.Net": "2.7.0", + "WolverineFx": "5.13.0" + }, + "compile": { + "lib/net10.0/Wolverine.Nats.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.Nats.dll": { + "related": ".xml" + } + } + }, + "WolverineFx.Postgresql/5.13.0": { + "type": "package", + "dependencies": { + "Weasel.Postgresql": "8.5.0", + "WolverineFx.RDBMS": "5.13.0" + }, + "compile": { + "lib/net10.0/Wolverine.Postgresql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.Postgresql.dll": { + "related": ".xml" + } + } + }, + "WolverineFx.RDBMS/5.13.0": { + "type": "package", + "dependencies": { + "Weasel.Core": "8.5.0", + "WolverineFx": "5.13.0" + }, + "compile": { + "lib/net10.0/Wolverine.RDBMS.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.RDBMS.dll": { + "related": ".xml" + } + } + }, + "Messages/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/Messages.dll": {} + }, + "runtime": { + "bin/placeholder/Messages.dll": {} + } + }, + "ServiceDefaults/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Microsoft.Extensions.Http.Resilience": "10.1.0", + "Microsoft.Extensions.ServiceDiscovery": "10.1.0", + "OpenTelemetry.Exporter.OpenTelemetryProtocol": "1.14.0", + "OpenTelemetry.Extensions.Hosting": "1.14.0", + "OpenTelemetry.Instrumentation.AspNetCore": "1.14.0", + "OpenTelemetry.Instrumentation.Http": "1.14.0", + "OpenTelemetry.Instrumentation.Runtime": "1.14.0" + }, + "compile": { + "bin/placeholder/ServiceDefaults.dll": {} + }, + "runtime": { + "bin/placeholder/ServiceDefaults.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "Aspire.Npgsql/13.1.0": { + "sha512": "TaxFv4W11jqDoA8KHzJsaQ5PlAOHQfYCv0PqOt2nn6rPlcT+KZuzBSnAVlKQ1M5+nW2T9D+Zdi9vhXvPVz2R/w==", + "type": "package", + "path": "aspire.npgsql/13.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ConfigurationSchema.json", + "Icon.png", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "aspire.npgsql.13.1.0.nupkg.sha512", + "aspire.npgsql.nuspec", + "buildTransitive/net10.0/Aspire.Npgsql.targets", + "buildTransitive/net8.0/Aspire.Npgsql.targets", + "buildTransitive/net9.0/Aspire.Npgsql.targets", + "lib/net10.0/Aspire.Npgsql.dll", + "lib/net10.0/Aspire.Npgsql.xml", + "lib/net8.0/Aspire.Npgsql.dll", + "lib/net8.0/Aspire.Npgsql.xml", + "lib/net9.0/Aspire.Npgsql.dll", + "lib/net9.0/Aspire.Npgsql.xml" + ] + }, + "AspNetCore.HealthChecks.NpgSql/9.0.0": { + "sha512": "npc58/AD5zuVxERdhCl2Kb7WnL37mwX42SJcXIwvmEig0/dugOLg3SIwtfvvh3TnvTwR/sk5LYNkkPaBdks61A==", + "type": "package", + "path": "aspnetcore.healthchecks.npgsql/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "aspnetcore.healthchecks.npgsql.9.0.0.nupkg.sha512", + "aspnetcore.healthchecks.npgsql.nuspec", + "icon.png", + "lib/net8.0/HealthChecks.NpgSql.dll", + "lib/net8.0/HealthChecks.NpgSql.xml", + "lib/netstandard2.0/HealthChecks.NpgSql.dll", + "lib/netstandard2.0/HealthChecks.NpgSql.xml" + ] + }, + "DistributedLock.Core/1.0.8": { + "sha512": "LAOsY8WxX8JU/n3lfXFz+f2pfnv0+4bHkCrOO3bwa28u9HrS3DlxSG6jf+u76SqesKs+KehZi0CndkfaUXBKvg==", + "type": "package", + "path": "distributedlock.core/1.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "distributedlock.core.1.0.8.nupkg.sha512", + "distributedlock.core.nuspec", + "lib/net462/DistributedLock.Core.dll", + "lib/net462/DistributedLock.Core.xml", + "lib/net8.0/DistributedLock.Core.dll", + "lib/net8.0/DistributedLock.Core.xml", + "lib/netstandard2.0/DistributedLock.Core.dll", + "lib/netstandard2.0/DistributedLock.Core.xml", + "lib/netstandard2.1/DistributedLock.Core.dll", + "lib/netstandard2.1/DistributedLock.Core.xml", + "package.readme.md" + ] + }, + "DistributedLock.Postgres/1.3.0": { + "sha512": "CyjXmbhFgG30qPg4DwGnsmZO63y5DBRo+PI2xW0NwtFrsYsMVt/T1RcEUlb36JMKhDkf+euhnkanv/nU+W35qA==", + "type": "package", + "path": "distributedlock.postgres/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "distributedlock.postgres.1.3.0.nupkg.sha512", + "distributedlock.postgres.nuspec", + "lib/net462/DistributedLock.Postgres.dll", + "lib/net462/DistributedLock.Postgres.xml", + "lib/net8.0/DistributedLock.Postgres.dll", + "lib/net8.0/DistributedLock.Postgres.xml", + "lib/netstandard2.0/DistributedLock.Postgres.dll", + "lib/netstandard2.0/DistributedLock.Postgres.xml", + "lib/netstandard2.1/DistributedLock.Postgres.dll", + "lib/netstandard2.1/DistributedLock.Postgres.xml", + "package.readme.md" + ] + }, + "FastExpressionCompiler/5.3.0": { + "sha512": "XRmGW48Gdm7B70WUtTJJUnmuc8jRDmOhhjG/a3rix/nXChnrkETaSvA0j2VrcsH4MNeYLe60LA5o5JABmbneag==", + "type": "package", + "path": "fastexpressioncompiler/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "FastExpressionCompiler.snk", + "LICENSE/LICENSE", + "fastexpressioncompiler.5.3.0.nupkg.sha512", + "fastexpressioncompiler.nuspec", + "lib/net472/FastExpressionCompiler.dll", + "lib/net472/FastExpressionCompiler.xml", + "lib/net6.0/FastExpressionCompiler.dll", + "lib/net6.0/FastExpressionCompiler.xml", + "lib/net8.0/FastExpressionCompiler.dll", + "lib/net8.0/FastExpressionCompiler.xml", + "lib/net9.0/FastExpressionCompiler.dll", + "lib/net9.0/FastExpressionCompiler.xml", + "lib/netstandard2.0/FastExpressionCompiler.dll", + "lib/netstandard2.0/FastExpressionCompiler.xml", + "lib/netstandard2.1/FastExpressionCompiler.dll", + "lib/netstandard2.1/FastExpressionCompiler.xml", + "logo.png", + "readme.md" + ] + }, + "FSharp.Core/9.0.100": { + "sha512": "ye8yagHGsH08H2Twno5GRWkSbrMtxK/SWiHuPcF+3nODpW65/VJ8RO0aWxp8n9+KQbmahg90wAEL3TEXjF0r6A==", + "type": "package", + "path": "fsharp.core/9.0.100", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "fsharp.core.9.0.100.nupkg.sha512", + "fsharp.core.nuspec", + "lib/netstandard2.0/FSharp.Core.dll", + "lib/netstandard2.0/FSharp.Core.xml", + "lib/netstandard2.0/cs/FSharp.Core.resources.dll", + "lib/netstandard2.0/de/FSharp.Core.resources.dll", + "lib/netstandard2.0/es/FSharp.Core.resources.dll", + "lib/netstandard2.0/fr/FSharp.Core.resources.dll", + "lib/netstandard2.0/it/FSharp.Core.resources.dll", + "lib/netstandard2.0/ja/FSharp.Core.resources.dll", + "lib/netstandard2.0/ko/FSharp.Core.resources.dll", + "lib/netstandard2.0/pl/FSharp.Core.resources.dll", + "lib/netstandard2.0/pt-BR/FSharp.Core.resources.dll", + "lib/netstandard2.0/ru/FSharp.Core.resources.dll", + "lib/netstandard2.0/tr/FSharp.Core.resources.dll", + "lib/netstandard2.0/zh-Hans/FSharp.Core.resources.dll", + "lib/netstandard2.0/zh-Hant/FSharp.Core.resources.dll", + "lib/netstandard2.1/FSharp.Core.dll", + "lib/netstandard2.1/FSharp.Core.xml", + "lib/netstandard2.1/cs/FSharp.Core.resources.dll", + "lib/netstandard2.1/de/FSharp.Core.resources.dll", + "lib/netstandard2.1/es/FSharp.Core.resources.dll", + "lib/netstandard2.1/fr/FSharp.Core.resources.dll", + "lib/netstandard2.1/it/FSharp.Core.resources.dll", + "lib/netstandard2.1/ja/FSharp.Core.resources.dll", + "lib/netstandard2.1/ko/FSharp.Core.resources.dll", + "lib/netstandard2.1/pl/FSharp.Core.resources.dll", + "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll", + "lib/netstandard2.1/ru/FSharp.Core.resources.dll", + "lib/netstandard2.1/tr/FSharp.Core.resources.dll", + "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll", + "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "ImTools/4.0.0": { + "sha512": "dms0JfLKC9AQbQX/EdpRjn59EjEvaCxIgv1z9YxbEQb5SiOVoo7vlIKdEySeEwUkWhN05rZnNpUpG+aw5VqPVQ==", + "type": "package", + "path": "imtools/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ImTools.snk", + "LICENSE.txt", + "content/net45/ImTools/ImTools.cs", + "contentFiles/cs/net45/ImTools/ImTools.cs", + "contentFiles/cs/netstandard2.0/ImTools/ImTools.cs", + "imtools.4.0.0.nupkg.sha512", + "imtools.nuspec" + ] + }, + "JasperFx/1.17.0": { + "sha512": "d0QqJ33u1IIyG88p8xMi1X9DtfL5Zyq0ivxn5KWJRaVSS3gJ/q9Ws0FopQiG4mxDl/w7rbnSmuFpu4iSimP5IQ==", + "type": "package", + "path": "jasperfx/1.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jasperfx.1.17.0.nupkg.sha512", + "jasperfx.nuspec", + "lib/net10.0/JasperFx.dll", + "lib/net10.0/JasperFx.xml", + "lib/net8.0/JasperFx.dll", + "lib/net8.0/JasperFx.xml", + "lib/net9.0/JasperFx.dll", + "lib/net9.0/JasperFx.xml" + ] + }, + "JasperFx.Events/1.17.0": { + "sha512": "sLvOvE5ABMcATyFLVIKDHeWbjVlhPL8TuK3To1cUdX452Xk6zyEAoW8u/UHfDr4meI9rXoMu4a5GaG8xDjp50A==", + "type": "package", + "path": "jasperfx.events/1.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jasperfx.events.1.17.0.nupkg.sha512", + "jasperfx.events.nuspec", + "lib/net10.0/JasperFx.Events.dll", + "lib/net10.0/JasperFx.Events.xml", + "lib/net8.0/JasperFx.Events.dll", + "lib/net8.0/JasperFx.Events.xml", + "lib/net9.0/JasperFx.Events.dll", + "lib/net9.0/JasperFx.Events.xml" + ] + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "sha512": "zA8iKRvnM1doCM7QqKXfit+FO9LF9hZ+BPoxe4L/+wf6RlARUMpV6HYjr1LWqogT2T5RzC5iO9r9HITl94MonA==", + "type": "package", + "path": "jasperfx.runtimecompiler/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jasperfx.runtimecompiler.4.3.2.nupkg.sha512", + "jasperfx.runtimecompiler.nuspec", + "lib/net10.0/JasperFx.RuntimeCompiler.dll", + "lib/net10.0/JasperFx.RuntimeCompiler.xml", + "lib/net8.0/JasperFx.RuntimeCompiler.dll", + "lib/net8.0/JasperFx.RuntimeCompiler.xml", + "lib/net9.0/JasperFx.RuntimeCompiler.dll", + "lib/net9.0/JasperFx.RuntimeCompiler.xml" + ] + }, + "Marten/8.19.0": { + "sha512": "kZXpOCBbPKAvjcTS8Eco0n8N31cbPwNDuJuPktet2IKhXd9RWweSfWNh1XG8PEAQqc1oZksZty2ZD9mSOFA6gw==", + "type": "package", + "path": "marten/8.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Marten.dll", + "lib/net10.0/Marten.xml", + "lib/net8.0/Marten.dll", + "lib/net8.0/Marten.xml", + "lib/net9.0/Marten.dll", + "lib/net9.0/Marten.xml", + "marten.8.19.0.nupkg.sha512", + "marten.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "sha512": "owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.AsyncInterfaces.targets", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "sha512": "bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "type": "package", + "path": "microsoft.bcl.timeprovider/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.TimeProvider.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.TimeProvider.targets", + "lib/net462/Microsoft.Bcl.TimeProvider.dll", + "lib/net462/Microsoft.Bcl.TimeProvider.xml", + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll", + "lib/net8.0/Microsoft.Bcl.TimeProvider.xml", + "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll", + "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.xml", + "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512", + "microsoft.bcl.timeprovider.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.CodeAnalysis/5.0.0": { + "sha512": "X7vItpZDkGm4NS2wp4P1S07Z1e61LaBWDW5tPXE1c6z5/x9KbF2RymhAPoYg7Qoiyk7odEZ6EjBEJ47p3dBpYQ==", + "type": "package", + "path": "microsoft.codeanalysis/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "microsoft.codeanalysis.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "sha512": "v/EW3UE8/lbEYHoC2Qq7AR/DnmvpgdtAMndfQNmpuIMx/Mto8L5JnuCfdBYtgvalQOtfNCnxFejxuRrryvUTsg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.11.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets", + "buildTransitive/config/analysislevel_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_all.globalconfig", + "buildTransitive/config/analysislevel_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_default.globalconfig", + "buildTransitive/config/analysislevel_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_none.globalconfig", + "buildTransitive/config/analysislevel_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended_warnaserror.globalconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "documentation/readme.md", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/5.0.0": { + "sha512": "ZXRAdvH6GiDeHRyd3q/km8Z44RoM6FBWHd+gen/la81mVnAdHTEsEkO5J0TCNXBymAcx5UYKt5TvgKBhaLJEow==", + "type": "package", + "path": "microsoft.codeanalysis.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.dll", + "lib/net8.0/Microsoft.CodeAnalysis.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.dll", + "lib/net9.0/Microsoft.CodeAnalysis.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/5.0.0": { + "sha512": "5DSyJ9bk+ATuDy7fp2Zt0mJStDVKbBoiz1DyfAwSa+k4H4IwykAUcV3URelw5b8/iVbfSaOwkwmPUZH6opZKCw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Scripting/5.0.0": { + "sha512": "1sGloRYbG3743ut/+vuXy9/WaRQTm7mDtp71rBaVSmKpFntvo5Hcro1ubg6/3SeeLtiFYJl7V3Dk0Fo3CGlnHA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.scripting/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "microsoft.codeanalysis.csharp.scripting.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.scripting.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { + "sha512": "Al/Q8B+yO8odSqGVpSvrShMFDvlQdIBU//F3E6Rb0YdiLSALE9wh/pvozPNnfmh5HDnvU+mkmSjpz4hQO++jaA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Scripting/5.0.0": { + "sha512": "/KgZdm6kRTrR/O2jqXxU5GWREYhtVmqcNWczyPt8hsQkFGFK/C6CrLWfG44FCUn0aPHGDRBHYjXlGosQ/H8oXw==", + "type": "package", + "path": "microsoft.codeanalysis.scripting/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "microsoft.codeanalysis.scripting.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.scripting.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "sha512": "XTulByMNxqXGCgMeODUoG2h4oK4/nLv1BcawRVcjv+UZHMpoaymtdaq3cJqlNrEvYEcbU48g5swJ3RhY1m3fBg==", + "type": "package", + "path": "microsoft.codeanalysis.scripting.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "microsoft.codeanalysis.scripting.common.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.scripting.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "sha512": "sUBWvHs2HgHGA+b716dgjS7JiXGen5ntyohAurPLR1ZiZzFp3FlnVA7GrMTqVGdVJTVqiC3c4K8k1bk0gj6IPg==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "microsoft.codeanalysis.visualbasic.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "sha512": "Nom4UuZVEZGaV6Qa+joJR/BawXZMtflvQJFKc0SaUc3LrZr/8LmRY5cn8mbvLOWIVfwWkQz+cVE6eQKu9qa65g==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic.workspaces/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "microsoft.codeanalysis.visualbasic.workspaces.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { + "sha512": "ZbUmIvT6lqTNKiv06Jl5wf0MTMi1vQ1oH7ou4CLcs2C/no/L7EhP3T8y3XXvn9VbqMcJaJnEsNA1jwYUMgc5jg==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.nuspec" + ] + }, + "Microsoft.Extensions.AmbientMetadata.Application/10.1.0": { + "sha512": "+T2Ax2fgw7T7nlhio+ZtgSyYGfevHCOXNPqO0vxA+f2HmbtfwAnIwHEE/jm1/4uFRDDP8PEENpxAhbucg+wUWg==", + "type": "package", + "path": "microsoft.extensions.ambientmetadata.application/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.AmbientMetadata.Application.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net462/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net462/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net8.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net8.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net9.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net9.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/netstandard2.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/netstandard2.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512", + "microsoft.extensions.ambientmetadata.application.nuspec" + ] + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "sha512": "M3JWrgZMkVzyEybZzNkTiC/e8U1ipXTi8xm8bj+PHHp4AcEmhmIEqnxRS0VHVCKZjLkOPt2hY2CIisUFQ6gqLA==", + "type": "package", + "path": "microsoft.extensions.compliance.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.compliance.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "sha512": "O052pqWkdVNXaj3n9E4x6nLL7sG860434gLh7XHhFp/KpyAY9/rCk9NJUinYfQnDkAA8UgCHimVZz+lTjnEwzQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.autoactivation/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.autoactivation.nuspec" + ] + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "sha512": "Q76peCoP6vXXf95RLFeMGzcaQs8l3lk+n/ZOTi2i+OLd3R0HzzB0Fswjua4NY1viIbA1s6l1mqRjQbxY7+Jylw==", + "type": "package", + "path": "microsoft.extensions.diagnostics.exceptionsummarization/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512", + "microsoft.extensions.diagnostics.exceptionsummarization.nuspec" + ] + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "sha512": "RA1Egggf5o7/5AI5TIxOmmV7T06X2jvA9nSlJazU++X/pgu48EDAjDflTq/+kAk0FHUm9ZpAiBVdWfOP2opAbQ==", + "type": "package", + "path": "microsoft.extensions.http.diagnostics/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Http.Diagnostics.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net462/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net9.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net9.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.Diagnostics.xml", + "microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512", + "microsoft.extensions.http.diagnostics.nuspec" + ] + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "sha512": "rwDoQBB93yQjd1XtcZBnOLRX23LW7Z49TIAp1sn7i2r/pW3y4iB8E+EEL0ZyOPuEZxT9xEVN9y39KWlG1FDPkQ==", + "type": "package", + "path": "microsoft.extensions.http.resilience/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Http.Resilience.net462.targets", + "buildTransitive/net462/Microsoft.Extensions.Http.Resilience.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Http.Resilience.targets", + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net10.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/net462/Microsoft.Extensions.Http.Resilience.dll", + "lib/net462/Microsoft.Extensions.Http.Resilience.xml", + "lib/net8.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net8.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/net9.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net9.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.Resilience.xml", + "microsoft.extensions.http.resilience.10.1.0.nupkg.sha512", + "microsoft.extensions.http.resilience.nuspec" + ] + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "sha512": "NzA+c4m2q92qZPjiZLFm+ToeQC3KFqzP+Dr/1pV5y9d7H/hDM2Yxno0kcw5DGpSvS0s6Pwsp+FWMdk/kXBPZ7g==", + "type": "package", + "path": "microsoft.extensions.resilience/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Resilience.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Resilience.dll", + "lib/net10.0/Microsoft.Extensions.Resilience.xml", + "lib/net462/Microsoft.Extensions.Resilience.dll", + "lib/net462/Microsoft.Extensions.Resilience.xml", + "lib/net8.0/Microsoft.Extensions.Resilience.dll", + "lib/net8.0/Microsoft.Extensions.Resilience.xml", + "lib/net9.0/Microsoft.Extensions.Resilience.dll", + "lib/net9.0/Microsoft.Extensions.Resilience.xml", + "lib/netstandard2.0/Microsoft.Extensions.Resilience.dll", + "lib/netstandard2.0/Microsoft.Extensions.Resilience.xml", + "microsoft.extensions.resilience.10.1.0.nupkg.sha512", + "microsoft.extensions.resilience.nuspec" + ] + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "sha512": "b78YWSrwXQI/pSzKIe/TO1lC2FcBfrux6+AmgTRStKcJYHNU1r8ii1GICRNv37CobIcaW8w33LW+xmThqIG/bg==", + "type": "package", + "path": "microsoft.extensions.servicediscovery/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.xml", + "microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512", + "microsoft.extensions.servicediscovery.nuspec" + ] + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "sha512": "uNPOkiRJx6J01aoHQBoX+QR6ZmQpIYdg/OO9+x/M3lkY6JTHBxp3pohcOyEe9l77MT8+3fVEP84/Uw+JODkA0Q==", + "type": "package", + "path": "microsoft.extensions.servicediscovery.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.servicediscovery.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "sha512": "OFnpwOBRZZXMMySvM7eJsEQ87ED5SaRbxHg/an1u89MWHw0mXUUbx5WPb5XFN0uS8kJPe6M+ZMRYwRP0nJeDPA==", + "type": "package", + "path": "microsoft.extensions.telemetry/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Telemetry.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Telemetry.dll", + "lib/net10.0/Microsoft.Extensions.Telemetry.xml", + "lib/net462/Microsoft.Extensions.Telemetry.dll", + "lib/net462/Microsoft.Extensions.Telemetry.xml", + "lib/net8.0/Microsoft.Extensions.Telemetry.dll", + "lib/net8.0/Microsoft.Extensions.Telemetry.xml", + "lib/net9.0/Microsoft.Extensions.Telemetry.dll", + "lib/net9.0/Microsoft.Extensions.Telemetry.xml", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.dll", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.xml", + "microsoft.extensions.telemetry.10.1.0.nupkg.sha512", + "microsoft.extensions.telemetry.nuspec" + ] + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "sha512": "0jAF2b0YJ1LOtunmo3PzSoJOx/ThhcGH5Y5kaV0jeM0BUlyr9orjg+fH5YabqnPSmwcN/DSTj0iZ7UwDISn5ag==", + "type": "package", + "path": "microsoft.extensions.telemetry.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "analyzers/dotnet/cs/Microsoft.Gen.Logging.dll", + "analyzers/dotnet/cs/Microsoft.Gen.Metrics.dll", + "buildTransitive/net462/Microsoft.Extensions.Telemetry.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Telemetry.Abstractions.props", + "buildTransitive/net6.0/Microsoft.Extensions.Telemetry.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.props", + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.telemetry.abstractions.nuspec" + ] + }, + "NATS.Client.Abstractions/2.7.0": { + "sha512": "DQ6x64lyH7Li2jS8/IV+XIEkhnhE9KENQ5luAoYTLPNEmFoIVcWN8RQSHjyRJviu4RGbw6AvHmlxvehnSqJk8w==", + "type": "package", + "path": "nats.client.abstractions/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Abstractions.dll", + "lib/net6.0/NATS.Client.Abstractions.xml", + "lib/net8.0/NATS.Client.Abstractions.dll", + "lib/net8.0/NATS.Client.Abstractions.xml", + "lib/netstandard2.0/NATS.Client.Abstractions.dll", + "lib/netstandard2.0/NATS.Client.Abstractions.xml", + "lib/netstandard2.1/NATS.Client.Abstractions.dll", + "lib/netstandard2.1/NATS.Client.Abstractions.xml", + "nats.client.abstractions.2.7.0.nupkg.sha512", + "nats.client.abstractions.nuspec" + ] + }, + "NATS.Client.Core/2.7.0": { + "sha512": "/l3nqhk6mfG50QjjvwKMN+kSUgJ27fmoaXAXXjrB13YpCbcl20c7Mj82KsutbjmxMVKSdb1mc7Wvj2Ahr03e8A==", + "type": "package", + "path": "nats.client.core/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Core.dll", + "lib/net6.0/NATS.Client.Core.xml", + "lib/net8.0/NATS.Client.Core.dll", + "lib/net8.0/NATS.Client.Core.xml", + "lib/netstandard2.0/NATS.Client.Core.dll", + "lib/netstandard2.0/NATS.Client.Core.xml", + "lib/netstandard2.1/NATS.Client.Core.dll", + "lib/netstandard2.1/NATS.Client.Core.xml", + "nats.client.core.2.7.0.nupkg.sha512", + "nats.client.core.nuspec" + ] + }, + "NATS.Client.Hosting/2.7.0": { + "sha512": "P0OoQWqhKPavjmkO23mOdqHsm4GmO9OdjlTrWTpvQes67DLgxmYTjGu1PYK0pi/XJuuiUeZdKhINt6XvygaqYg==", + "type": "package", + "path": "nats.client.hosting/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Hosting.dll", + "lib/net6.0/NATS.Client.Hosting.xml", + "lib/net8.0/NATS.Client.Hosting.dll", + "lib/net8.0/NATS.Client.Hosting.xml", + "lib/netstandard2.0/NATS.Client.Hosting.dll", + "lib/netstandard2.0/NATS.Client.Hosting.xml", + "lib/netstandard2.1/NATS.Client.Hosting.dll", + "lib/netstandard2.1/NATS.Client.Hosting.xml", + "nats.client.hosting.2.7.0.nupkg.sha512", + "nats.client.hosting.nuspec" + ] + }, + "NATS.Client.JetStream/2.7.0": { + "sha512": "MHT27WsvKCPSQ234WO+PnaDH0+rAs1W70BPnSvt/4iZ/Dunfx8oQHSGskfAz62R1U2ZGBTbucjkPCJqjCep0bA==", + "type": "package", + "path": "nats.client.jetstream/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.JetStream.dll", + "lib/net6.0/NATS.Client.JetStream.xml", + "lib/net8.0/NATS.Client.JetStream.dll", + "lib/net8.0/NATS.Client.JetStream.xml", + "lib/netstandard2.0/NATS.Client.JetStream.dll", + "lib/netstandard2.0/NATS.Client.JetStream.xml", + "lib/netstandard2.1/NATS.Client.JetStream.dll", + "lib/netstandard2.1/NATS.Client.JetStream.xml", + "nats.client.jetstream.2.7.0.nupkg.sha512", + "nats.client.jetstream.nuspec" + ] + }, + "NATS.Client.KeyValueStore/2.7.0": { + "sha512": "vmpy1y3fU0TzrOhEtS+9NajcjY1R08tHR7GQIIXB2IE2k0vh1rHLChUtrMypvTlng90KHGhGPsr/EzJnu6hqzA==", + "type": "package", + "path": "nats.client.keyvaluestore/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.KeyValueStore.dll", + "lib/net6.0/NATS.Client.KeyValueStore.xml", + "lib/net8.0/NATS.Client.KeyValueStore.dll", + "lib/net8.0/NATS.Client.KeyValueStore.xml", + "lib/netstandard2.0/NATS.Client.KeyValueStore.dll", + "lib/netstandard2.0/NATS.Client.KeyValueStore.xml", + "lib/netstandard2.1/NATS.Client.KeyValueStore.dll", + "lib/netstandard2.1/NATS.Client.KeyValueStore.xml", + "nats.client.keyvaluestore.2.7.0.nupkg.sha512", + "nats.client.keyvaluestore.nuspec" + ] + }, + "NATS.Client.ObjectStore/2.7.0": { + "sha512": "UqD6MjojKm2LCK+wTGSN/lsDe9of9qygFWGSAw1m6p9eoey1HnEVH0MKqItqAKUgsuyaaZaB999/S+z6uugGQg==", + "type": "package", + "path": "nats.client.objectstore/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.ObjectStore.dll", + "lib/net6.0/NATS.Client.ObjectStore.xml", + "lib/net8.0/NATS.Client.ObjectStore.dll", + "lib/net8.0/NATS.Client.ObjectStore.xml", + "lib/netstandard2.0/NATS.Client.ObjectStore.dll", + "lib/netstandard2.0/NATS.Client.ObjectStore.xml", + "lib/netstandard2.1/NATS.Client.ObjectStore.dll", + "lib/netstandard2.1/NATS.Client.ObjectStore.xml", + "nats.client.objectstore.2.7.0.nupkg.sha512", + "nats.client.objectstore.nuspec" + ] + }, + "NATS.Client.Serializers.Json/2.7.0": { + "sha512": "13R0EvJae6dXhcfdBX29LadDdc+0SPWVp0HdAQH4D7H3Eyd2/0jxgrLNH9nlZM8lo3tSk/iDojP7e+VQjlzM1w==", + "type": "package", + "path": "nats.client.serializers.json/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Serializers.Json.dll", + "lib/net6.0/NATS.Client.Serializers.Json.xml", + "lib/net8.0/NATS.Client.Serializers.Json.dll", + "lib/net8.0/NATS.Client.Serializers.Json.xml", + "lib/netstandard2.0/NATS.Client.Serializers.Json.dll", + "lib/netstandard2.0/NATS.Client.Serializers.Json.xml", + "lib/netstandard2.1/NATS.Client.Serializers.Json.dll", + "lib/netstandard2.1/NATS.Client.Serializers.Json.xml", + "nats.client.serializers.json.2.7.0.nupkg.sha512", + "nats.client.serializers.json.nuspec" + ] + }, + "NATS.Client.Services/2.7.0": { + "sha512": "EEs4ibYIwg/pP/bBPhn+K3eDfNBehTisGs2L+eZv7e+eHfBHcjSvAfbEhhyACMuFSuTROWpBaiFAH4xCWgdnbA==", + "type": "package", + "path": "nats.client.services/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Services.dll", + "lib/net6.0/NATS.Client.Services.xml", + "lib/net8.0/NATS.Client.Services.dll", + "lib/net8.0/NATS.Client.Services.xml", + "lib/netstandard2.0/NATS.Client.Services.dll", + "lib/netstandard2.0/NATS.Client.Services.xml", + "lib/netstandard2.1/NATS.Client.Services.dll", + "lib/netstandard2.1/NATS.Client.Services.xml", + "nats.client.services.2.7.0.nupkg.sha512", + "nats.client.services.nuspec" + ] + }, + "NATS.Client.Simplified/2.7.0": { + "sha512": "8HU5stAU/xpQr7OyGaZbkjJGeq7hcukUUdcme4sOBiSUrjWpfgJTYeFmwFQHALFah9dkm1EYrHp1RND6lLSJTA==", + "type": "package", + "path": "nats.client.simplified/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Simplified.dll", + "lib/net6.0/NATS.Client.Simplified.xml", + "lib/net8.0/NATS.Client.Simplified.dll", + "lib/net8.0/NATS.Client.Simplified.xml", + "lib/netstandard2.0/NATS.Client.Simplified.dll", + "lib/netstandard2.0/NATS.Client.Simplified.xml", + "lib/netstandard2.1/NATS.Client.Simplified.dll", + "lib/netstandard2.1/NATS.Client.Simplified.xml", + "nats.client.simplified.2.7.0.nupkg.sha512", + "nats.client.simplified.nuspec" + ] + }, + "NATS.Net/2.7.0": { + "sha512": "89IrKEUb/kOzzcQ+J5SKAKmlRybRklllZKa1/LuBNkn3BblIUHYXku6JibN1wWr02HgJGH+OMYBZ0SVX1+HnCA==", + "type": "package", + "path": "nats.net/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Net.dll", + "lib/net6.0/NATS.Net.xml", + "lib/net8.0/NATS.Net.dll", + "lib/net8.0/NATS.Net.xml", + "lib/netstandard2.0/NATS.Net.dll", + "lib/netstandard2.0/NATS.Net.xml", + "lib/netstandard2.1/NATS.Net.dll", + "lib/netstandard2.1/NATS.Net.xml", + "nats.net.2.7.0.nupkg.sha512", + "nats.net.nuspec" + ] + }, + "NetTopologySuite/2.5.0": { + "sha512": "5/+2O2ADomEdUn09mlSigACdqvAf0m/pVPGtIPEPQWnyrVykYY0NlfXLIdkMgi41kvH9kNrPqYaFBTZtHYH7Xw==", + "type": "package", + "path": "nettopologysuite/2.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.0/NetTopologySuite.dll", + "lib/netstandard2.0/NetTopologySuite.xml", + "nettopologysuite.2.5.0.nupkg.sha512", + "nettopologysuite.nuspec" + ] + }, + "NetTopologySuite.IO.PostGis/2.1.0": { + "sha512": "3W8XTFz8iP6GQ5jDXK1/LANHiU+988k1kmmuPWNKcJLpmSg6CvFpbTpz+s4+LBzkAp64wHGOldSlkSuzYfrIKA==", + "type": "package", + "path": "nettopologysuite.io.postgis/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/NetTopologySuite.IO.PostGis.dll", + "lib/netstandard2.0/NetTopologySuite.IO.PostGis.xml", + "lib/netstandard2.1/NetTopologySuite.IO.PostGis.dll", + "lib/netstandard2.1/NetTopologySuite.IO.PostGis.xml", + "nettopologysuite.io.postgis.2.1.0.nupkg.sha512", + "nettopologysuite.io.postgis.nuspec" + ] + }, + "NewId/4.0.1": { + "sha512": "jegBasNndmG21G3BmT51suFDCIz/sLN81j+IxmkZ4iWoaDi8LygeHiyNnYbXz5OQh9nCRJFIx1+PJrlYi1Gc9Q==", + "type": "package", + "path": "newid/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/NewId.dll", + "lib/net6.0/NewId.xml", + "lib/netstandard2.0/NewId.dll", + "lib/netstandard2.0/NewId.xml", + "newid.4.0.1.nupkg.sha512", + "newid.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Npgsql/10.0.0": { + "sha512": "xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", + "type": "package", + "path": "npgsql/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Npgsql.dll", + "lib/net10.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/net9.0/Npgsql.dll", + "lib/net9.0/Npgsql.xml", + "npgsql.10.0.0.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.DependencyInjection/10.0.0": { + "sha512": "htuxMDQ7nHgadPxoO6XXVvSgYcVierLrhzOoamyUchvC4oHnYdD05zZ0dYsq80DN0vco9t/Vp+ZxYvnfJxbhIg==", + "type": "package", + "path": "npgsql.dependencyinjection/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Npgsql.DependencyInjection.dll", + "lib/net8.0/Npgsql.DependencyInjection.xml", + "npgsql.dependencyinjection.10.0.0.nupkg.sha512", + "npgsql.dependencyinjection.nuspec", + "postgresql.png" + ] + }, + "Npgsql.Json.NET/9.0.4": { + "sha512": "Eunq7mqatJujFOaZMdiWT9N7eUXHEFxe4IX/PeN8Nt1BpNYjzF2tPlmqR90EvuGT3tiEicmj4xDviC0UcPwM1w==", + "type": "package", + "path": "npgsql.json.net/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Npgsql.Json.NET.dll", + "lib/net6.0/Npgsql.Json.NET.xml", + "npgsql.json.net.9.0.4.nupkg.sha512", + "npgsql.json.net.nuspec", + "postgresql.png" + ] + }, + "Npgsql.NetTopologySuite/9.0.4": { + "sha512": "7AwBLPz8EPmgAXveZ55K0Tz/9bNb8j4VI4pkTOQjyHrce8wWfAA9pefm3REidy+Kt2UFiAWef34YVi7sb/kB4A==", + "type": "package", + "path": "npgsql.nettopologysuite/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.NetTopologySuite.dll", + "lib/net6.0/Npgsql.NetTopologySuite.xml", + "npgsql.nettopologysuite.9.0.4.nupkg.sha512", + "npgsql.nettopologysuite.nuspec", + "postgresql.png" + ] + }, + "Npgsql.OpenTelemetry/10.0.0": { + "sha512": "eftmCZWng874x4iSfQyfF+PpnfA6hloHGQ3EzELVhRyPOEHcMygxSXhx4KI8HKu/Qg8uK1MF5tcwOVhwL7duJw==", + "type": "package", + "path": "npgsql.opentelemetry/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Npgsql.OpenTelemetry.dll", + "lib/net8.0/Npgsql.OpenTelemetry.xml", + "npgsql.opentelemetry.10.0.0.nupkg.sha512", + "npgsql.opentelemetry.nuspec", + "postgresql.png" + ] + }, + "OpenTelemetry/1.14.0": { + "sha512": "aiPBAr1+0dPDItH++MQQr5UgMf4xiybruzNlAoYYMYN3UUk+mGRcoKuZy4Z4rhhWUZIpK2Xhe7wUUXSTM32duQ==", + "type": "package", + "path": "opentelemetry/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.dll", + "lib/net10.0/OpenTelemetry.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.xml", + "lib/net462/OpenTelemetry.dll", + "lib/net462/OpenTelemetry.dll.sigstore.json", + "lib/net462/OpenTelemetry.xml", + "lib/net8.0/OpenTelemetry.dll", + "lib/net8.0/OpenTelemetry.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.xml", + "lib/net9.0/OpenTelemetry.dll", + "lib/net9.0/OpenTelemetry.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.xml", + "lib/netstandard2.0/OpenTelemetry.dll", + "lib/netstandard2.0/OpenTelemetry.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.xml", + "lib/netstandard2.1/OpenTelemetry.dll", + "lib/netstandard2.1/OpenTelemetry.dll.sigstore.json", + "lib/netstandard2.1/OpenTelemetry.xml", + "opentelemetry-icon-color.png", + "opentelemetry.1.14.0.nupkg.sha512", + "opentelemetry.nuspec" + ] + }, + "OpenTelemetry.Api/1.14.0": { + "sha512": "foHci6viUw1f3gUB8qzz3Rk02xZIWMo299X0rxK0MoOWok/3dUVru+KKdY7WIoSHwRGpxGKkmAz9jIk2RFNbsQ==", + "type": "package", + "path": "opentelemetry.api/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Api.dll", + "lib/net10.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Api.xml", + "lib/net462/OpenTelemetry.Api.dll", + "lib/net462/OpenTelemetry.Api.dll.sigstore.json", + "lib/net462/OpenTelemetry.Api.xml", + "lib/net8.0/OpenTelemetry.Api.dll", + "lib/net8.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Api.xml", + "lib/net9.0/OpenTelemetry.Api.dll", + "lib/net9.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Api.xml", + "lib/netstandard2.0/OpenTelemetry.Api.dll", + "lib/netstandard2.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Api.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.1.14.0.nupkg.sha512", + "opentelemetry.api.nuspec" + ] + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "sha512": "i/lxOM92v+zU5I0rGl5tXAGz6EJtxk2MvzZ0VN6F6L5pMqT6s6RCXnGWXg6fW+vtZJsllBlQaf/VLPTzgefJpg==", + "type": "package", + "path": "opentelemetry.api.providerbuilderextensions/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512", + "opentelemetry.api.providerbuilderextensions.nuspec" + ] + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "sha512": "7ELExeje+T/KOywHuHwZBGQNtYlepUaYRFXWgoEaT1iKpFJVwOlE1Y2+uqHI2QQmah0Ue+XgRmDy924vWHfJ6Q==", + "type": "package", + "path": "opentelemetry.exporter.opentelemetryprotocol/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "opentelemetry-icon-color.png", + "opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512", + "opentelemetry.exporter.opentelemetryprotocol.nuspec" + ] + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "sha512": "ZAxkCIa3Q3YWZ1sGrolXfkhPqn2PFSz2Cel74em/fATZgY5ixlw6MQp2icmqKCz4C7M1W2G0b92K3rX8mOtFRg==", + "type": "package", + "path": "opentelemetry.extensions.hosting/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net462/OpenTelemetry.Extensions.Hosting.xml", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.xml", + "opentelemetry-icon-color.png", + "opentelemetry.extensions.hosting.1.14.0.nupkg.sha512", + "opentelemetry.extensions.hosting.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "sha512": "NQAQpFa3a4ofPUYwxcwtNPGpuRNwwx1HM7MnLEESYjYkhfhER+PqqGywW65rWd7bJEc1/IaL+xbmHH99pYDE0A==", + "type": "package", + "path": "opentelemetry.instrumentation.aspnetcore/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.aspnetcore.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "sha512": "uH8X1fYnywrgaUrSbemKvFiFkBwY7ZbBU7Wh4A/ORQmdpF3G/5STidY4PlK4xYuIv9KkdMXH/vkpvzQcayW70g==", + "type": "package", + "path": "opentelemetry.instrumentation.http/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.Http.xml", + "lib/net462/OpenTelemetry.Instrumentation.Http.dll", + "lib/net462/OpenTelemetry.Instrumentation.Http.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.Http.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.http.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.http.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "sha512": "Z6o4JDOQaKv6bInAYZxuyxxfMKr6hFpwLnKEgQ+q+oBNA9Fm1sysjFCOzRzk7U0WD86LsRPXX+chv1vJIg7cfg==", + "type": "package", + "path": "opentelemetry.instrumentation.runtime/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/net462/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net462/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Runtime.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.runtime.nuspec" + ] + }, + "Polly.Core/8.6.5": { + "sha512": "t+sUVrIwvo7UmsgHGgOG9F0GDZSRIm47u2ylH17Gvcv1q5hNEwgD5GoBlFyc0kh/pebmPyrAgvGsR/65ZBaXlg==", + "type": "package", + "path": "polly.core/8.6.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "lib/net462/Polly.Core.dll", + "lib/net462/Polly.Core.pdb", + "lib/net462/Polly.Core.xml", + "lib/net472/Polly.Core.dll", + "lib/net472/Polly.Core.pdb", + "lib/net472/Polly.Core.xml", + "lib/net6.0/Polly.Core.dll", + "lib/net6.0/Polly.Core.pdb", + "lib/net6.0/Polly.Core.xml", + "lib/net8.0/Polly.Core.dll", + "lib/net8.0/Polly.Core.pdb", + "lib/net8.0/Polly.Core.xml", + "lib/netstandard2.0/Polly.Core.dll", + "lib/netstandard2.0/Polly.Core.pdb", + "lib/netstandard2.0/Polly.Core.xml", + "package-icon.png", + "package-readme.md", + "polly.core.8.6.5.nupkg.sha512", + "polly.core.nuspec" + ] + }, + "Polly.Extensions/8.4.2": { + "sha512": "GZ9vRVmR0jV2JtZavt+pGUsQ1O1cuRKG7R7VOZI6ZDy9y6RNPvRvXK1tuS4ffUrv8L0FTea59oEuQzgS0R7zSA==", + "type": "package", + "path": "polly.extensions/8.4.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Polly.Extensions.dll", + "lib/net462/Polly.Extensions.pdb", + "lib/net462/Polly.Extensions.xml", + "lib/net472/Polly.Extensions.dll", + "lib/net472/Polly.Extensions.pdb", + "lib/net472/Polly.Extensions.xml", + "lib/net6.0/Polly.Extensions.dll", + "lib/net6.0/Polly.Extensions.pdb", + "lib/net6.0/Polly.Extensions.xml", + "lib/net8.0/Polly.Extensions.dll", + "lib/net8.0/Polly.Extensions.pdb", + "lib/net8.0/Polly.Extensions.xml", + "lib/netstandard2.0/Polly.Extensions.dll", + "lib/netstandard2.0/Polly.Extensions.pdb", + "lib/netstandard2.0/Polly.Extensions.xml", + "package-icon.png", + "package-readme.md", + "polly.extensions.8.4.2.nupkg.sha512", + "polly.extensions.nuspec" + ] + }, + "Polly.RateLimiting/8.4.2": { + "sha512": "ehTImQ/eUyO07VYW2WvwSmU9rRH200SKJ/3jku9rOkyWE0A2JxNFmAVms8dSn49QLSjmjFRRSgfNyOgr/2PSmA==", + "type": "package", + "path": "polly.ratelimiting/8.4.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Polly.RateLimiting.dll", + "lib/net462/Polly.RateLimiting.pdb", + "lib/net462/Polly.RateLimiting.xml", + "lib/net472/Polly.RateLimiting.dll", + "lib/net472/Polly.RateLimiting.pdb", + "lib/net472/Polly.RateLimiting.xml", + "lib/net6.0/Polly.RateLimiting.dll", + "lib/net6.0/Polly.RateLimiting.pdb", + "lib/net6.0/Polly.RateLimiting.xml", + "lib/net8.0/Polly.RateLimiting.dll", + "lib/net8.0/Polly.RateLimiting.pdb", + "lib/net8.0/Polly.RateLimiting.xml", + "lib/netstandard2.0/Polly.RateLimiting.dll", + "lib/netstandard2.0/Polly.RateLimiting.pdb", + "lib/netstandard2.0/Polly.RateLimiting.xml", + "package-icon.png", + "package-readme.md", + "polly.ratelimiting.8.4.2.nupkg.sha512", + "polly.ratelimiting.nuspec" + ] + }, + "Spectre.Console/0.53.0": { + "sha512": "m2iv8Egfywp7FaNLKCmCFHbSf36D4ctzZKvlAK9NXMyGLh6L+CnrZWK8o+LOYsoAS1jtoHn0W1BT0W8vuq/FUw==", + "type": "package", + "path": "spectre.console/0.53.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Spectre.Console.dll", + "lib/net8.0/Spectre.Console.xml", + "lib/net9.0/Spectre.Console.dll", + "lib/net9.0/Spectre.Console.xml", + "lib/netstandard2.0/Spectre.Console.dll", + "lib/netstandard2.0/Spectre.Console.xml", + "logo.png", + "spectre.console.0.53.0.nupkg.sha512", + "spectre.console.nuspec" + ] + }, + "System.Composition/9.0.0": { + "sha512": "3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==", + "type": "package", + "path": "system.composition/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.targets", + "lib/net461/_._", + "lib/netcoreapp2.0/_._", + "lib/netstandard2.0/_._", + "system.composition.9.0.0.nupkg.sha512", + "system.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.AttributedModel/9.0.0": { + "sha512": "iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==", + "type": "package", + "path": "system.composition.attributedmodel/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.AttributedModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets", + "lib/net462/System.Composition.AttributedModel.dll", + "lib/net462/System.Composition.AttributedModel.xml", + "lib/net8.0/System.Composition.AttributedModel.dll", + "lib/net8.0/System.Composition.AttributedModel.xml", + "lib/net9.0/System.Composition.AttributedModel.dll", + "lib/net9.0/System.Composition.AttributedModel.xml", + "lib/netstandard2.0/System.Composition.AttributedModel.dll", + "lib/netstandard2.0/System.Composition.AttributedModel.xml", + "system.composition.attributedmodel.9.0.0.nupkg.sha512", + "system.composition.attributedmodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Convention/9.0.0": { + "sha512": "+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==", + "type": "package", + "path": "system.composition.convention/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Convention.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets", + "lib/net462/System.Composition.Convention.dll", + "lib/net462/System.Composition.Convention.xml", + "lib/net8.0/System.Composition.Convention.dll", + "lib/net8.0/System.Composition.Convention.xml", + "lib/net9.0/System.Composition.Convention.dll", + "lib/net9.0/System.Composition.Convention.xml", + "lib/netstandard2.0/System.Composition.Convention.dll", + "lib/netstandard2.0/System.Composition.Convention.xml", + "system.composition.convention.9.0.0.nupkg.sha512", + "system.composition.convention.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Hosting/9.0.0": { + "sha512": "OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==", + "type": "package", + "path": "system.composition.hosting/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets", + "lib/net462/System.Composition.Hosting.dll", + "lib/net462/System.Composition.Hosting.xml", + "lib/net8.0/System.Composition.Hosting.dll", + "lib/net8.0/System.Composition.Hosting.xml", + "lib/net9.0/System.Composition.Hosting.dll", + "lib/net9.0/System.Composition.Hosting.xml", + "lib/netstandard2.0/System.Composition.Hosting.dll", + "lib/netstandard2.0/System.Composition.Hosting.xml", + "system.composition.hosting.9.0.0.nupkg.sha512", + "system.composition.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Runtime/9.0.0": { + "sha512": "w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==", + "type": "package", + "path": "system.composition.runtime/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Runtime.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets", + "lib/net462/System.Composition.Runtime.dll", + "lib/net462/System.Composition.Runtime.xml", + "lib/net8.0/System.Composition.Runtime.dll", + "lib/net8.0/System.Composition.Runtime.xml", + "lib/net9.0/System.Composition.Runtime.dll", + "lib/net9.0/System.Composition.Runtime.xml", + "lib/netstandard2.0/System.Composition.Runtime.dll", + "lib/netstandard2.0/System.Composition.Runtime.xml", + "system.composition.runtime.9.0.0.nupkg.sha512", + "system.composition.runtime.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.TypedParts/9.0.0": { + "sha512": "aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==", + "type": "package", + "path": "system.composition.typedparts/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.TypedParts.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets", + "lib/net462/System.Composition.TypedParts.dll", + "lib/net462/System.Composition.TypedParts.xml", + "lib/net8.0/System.Composition.TypedParts.dll", + "lib/net8.0/System.Composition.TypedParts.xml", + "lib/net9.0/System.Composition.TypedParts.dll", + "lib/net9.0/System.Composition.TypedParts.xml", + "lib/netstandard2.0/System.Composition.TypedParts.dll", + "lib/netstandard2.0/System.Composition.TypedParts.xml", + "system.composition.typedparts.9.0.0.nupkg.sha512", + "system.composition.typedparts.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Weasel.Core/8.5.0": { + "sha512": "aNlEmFqgJ3GGgVmEAVOiUFN10m/OzL5fYP22FeVhd6jrN9rj0daJnxhkA+f00gkXcAVgx6LidsWVBnsmxLhIIw==", + "type": "package", + "path": "weasel.core/8.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Weasel.Core.dll", + "lib/net10.0/Weasel.Core.xml", + "lib/net8.0/Weasel.Core.dll", + "lib/net8.0/Weasel.Core.xml", + "lib/net9.0/Weasel.Core.dll", + "lib/net9.0/Weasel.Core.xml", + "weasel.core.8.5.0.nupkg.sha512", + "weasel.core.nuspec" + ] + }, + "Weasel.Postgresql/8.5.0": { + "sha512": "4a8Had3NmSw1HR2U2wVqN7ho0Q5mo4RLwYMk4v/4xGm8nqEB2WKMRCaGNbFss+p+LxWimyiikMabM0q46bd2/w==", + "type": "package", + "path": "weasel.postgresql/8.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Weasel.Postgresql.dll", + "lib/net10.0/Weasel.Postgresql.xml", + "lib/net8.0/Weasel.Postgresql.dll", + "lib/net8.0/Weasel.Postgresql.xml", + "lib/net9.0/Weasel.Postgresql.dll", + "lib/net9.0/Weasel.Postgresql.xml", + "weasel.postgresql.8.5.0.nupkg.sha512", + "weasel.postgresql.nuspec" + ] + }, + "WolverineFx/5.13.0": { + "sha512": "FB5Yo6M0SyQWDgHz2EjwQcflhrjRd9mERV6/N6WHQHJO1kW8fSxEIcOHndhikcVkZvmhUdwu5PW4V4ypEmpKTA==", + "type": "package", + "path": "wolverinefx/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.dll", + "lib/net10.0/Wolverine.xml", + "lib/net8.0/Wolverine.dll", + "lib/net8.0/Wolverine.xml", + "lib/net9.0/Wolverine.dll", + "lib/net9.0/Wolverine.xml", + "wolverinefx.5.13.0.nupkg.sha512", + "wolverinefx.nuspec" + ] + }, + "WolverineFx.Marten/5.13.0": { + "sha512": "s6nzaLC/CmLc3VsBspeCUXv3/hjJOpoCEIUtQX1316rB+hOq18axSywtidNLkWNMC6N6+86WJuCqoVPXvW/YSQ==", + "type": "package", + "path": "wolverinefx.marten/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.Marten.dll", + "lib/net10.0/Wolverine.Marten.xml", + "lib/net8.0/Wolverine.Marten.dll", + "lib/net8.0/Wolverine.Marten.xml", + "lib/net9.0/Wolverine.Marten.dll", + "lib/net9.0/Wolverine.Marten.xml", + "wolverinefx.marten.5.13.0.nupkg.sha512", + "wolverinefx.marten.nuspec" + ] + }, + "WolverineFx.Nats/5.13.0": { + "sha512": "8GN8uwRX56vp3fN8KSQqrEYlAtAKoOz1ZpCckZCsr15sP8eoE+Sa5wfzkGQ186cAYnkBa2P0yMlr1QRCmHYaYQ==", + "type": "package", + "path": "wolverinefx.nats/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.Nats.dll", + "lib/net10.0/Wolverine.Nats.xml", + "lib/net8.0/Wolverine.Nats.dll", + "lib/net8.0/Wolverine.Nats.xml", + "lib/net9.0/Wolverine.Nats.dll", + "lib/net9.0/Wolverine.Nats.xml", + "wolverinefx.nats.5.13.0.nupkg.sha512", + "wolverinefx.nats.nuspec" + ] + }, + "WolverineFx.Postgresql/5.13.0": { + "sha512": "ntzQeLiJmdDuvmSK0aJaKT1fX2iBdNXncVPg1B81r90CLHSv32aqBVwXFzPtBJkIWaAhCzzWu/vy3tNH9d4QjA==", + "type": "package", + "path": "wolverinefx.postgresql/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.Postgresql.dll", + "lib/net10.0/Wolverine.Postgresql.xml", + "lib/net8.0/Wolverine.Postgresql.dll", + "lib/net8.0/Wolverine.Postgresql.xml", + "lib/net9.0/Wolverine.Postgresql.dll", + "lib/net9.0/Wolverine.Postgresql.xml", + "wolverinefx.postgresql.5.13.0.nupkg.sha512", + "wolverinefx.postgresql.nuspec" + ] + }, + "WolverineFx.RDBMS/5.13.0": { + "sha512": "Het8JdsausBm0q8GJ24QWvONsxRQ1n+j1HIWZI5jXbgPmlPv1MWPfwH3rm0Q4okYpP/1WIj7470sJbkOj46GnA==", + "type": "package", + "path": "wolverinefx.rdbms/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.RDBMS.dll", + "lib/net10.0/Wolverine.RDBMS.xml", + "lib/net8.0/Wolverine.RDBMS.dll", + "lib/net8.0/Wolverine.RDBMS.xml", + "lib/net9.0/Wolverine.RDBMS.dll", + "lib/net9.0/Wolverine.RDBMS.xml", + "wolverinefx.rdbms.5.13.0.nupkg.sha512", + "wolverinefx.rdbms.nuspec" + ] + }, + "Messages/1.0.0": { + "type": "project", + "path": "../Messages/Messages.csproj", + "msbuildProject": "../Messages/Messages.csproj" + }, + "ServiceDefaults/1.0.0": { + "type": "project", + "path": "../ServiceDefaults/ServiceDefaults.csproj", + "msbuildProject": "../ServiceDefaults/ServiceDefaults.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Aspire.Npgsql >= 13.1.0", + "Messages >= 1.0.0", + "ServiceDefaults >= 1.0.0", + "WolverineFx.Marten >= 5.13.0", + "WolverineFx.Nats >= 5.13.0" + ] + }, + "packageFolders": { + "/Users/jeffrygonzalez/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/ApiOne.csproj", + "projectName": "ApiOne", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/ApiOne.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj" + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Aspire.Npgsql": { + "target": "Package", + "version": "[13.1.0, )" + }, + "WolverineFx.Marten": { + "target": "Package", + "version": "[5.13.0, )" + }, + "WolverineFx.Nats": { + "target": "Package", + "version": "[5.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/project.nuget.cache b/wolverine-nats/WolverineAndNats/ApiOne/obj/project.nuget.cache new file mode 100644 index 0000000..8d0da60 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/project.nuget.cache @@ -0,0 +1,89 @@ +{ + "version": 2, + "dgSpecHash": "Zlkr6WGvHo4=", + "success": true, + "projectFilePath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/ApiOne.csproj", + "expectedPackageFiles": [ + "/Users/jeffrygonzalez/.nuget/packages/aspire.npgsql/13.1.0/aspire.npgsql.13.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/aspnetcore.healthchecks.npgsql/9.0.0/aspnetcore.healthchecks.npgsql.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/distributedlock.core/1.0.8/distributedlock.core.1.0.8.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/distributedlock.postgres/1.3.0/distributedlock.postgres.1.3.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/fastexpressioncompiler/5.3.0/fastexpressioncompiler.5.3.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/fsharp.core/9.0.100/fsharp.core.9.0.100.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/imtools/4.0.0/imtools.4.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jasperfx/1.17.0/jasperfx.1.17.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jasperfx.events/1.17.0/jasperfx.events.1.17.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jasperfx.runtimecompiler/4.3.2/jasperfx.runtimecompiler.4.3.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/marten/8.19.0/marten.8.19.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.bcl.asyncinterfaces/9.0.0/microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.bcl.timeprovider/10.0.0/microsoft.bcl.timeprovider.10.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis/5.0.0/microsoft.codeanalysis.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.analyzers/3.11.0/microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.common/5.0.0/microsoft.codeanalysis.common.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.csharp/5.0.0/microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.csharp.scripting/5.0.0/microsoft.codeanalysis.csharp.scripting.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/5.0.0/microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.scripting/5.0.0/microsoft.codeanalysis.scripting.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.scripting.common/5.0.0/microsoft.codeanalysis.scripting.common.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.visualbasic/5.0.0/microsoft.codeanalysis.visualbasic.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.visualbasic.workspaces/5.0.0/microsoft.codeanalysis.visualbasic.workspaces.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.workspaces.common/5.0.0/microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.ambientmetadata.application/10.1.0/microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.compliance.abstractions/10.1.0/microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.dependencyinjection.autoactivation/10.1.0/microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.diagnostics.exceptionsummarization/10.1.0/microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.http.diagnostics/10.1.0/microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.http.resilience/10.1.0/microsoft.extensions.http.resilience.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.resilience/10.1.0/microsoft.extensions.resilience.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.servicediscovery/10.1.0/microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.servicediscovery.abstractions/10.1.0/microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.telemetry/10.1.0/microsoft.extensions.telemetry.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.telemetry.abstractions/10.1.0/microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.abstractions/2.7.0/nats.client.abstractions.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.core/2.7.0/nats.client.core.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.hosting/2.7.0/nats.client.hosting.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.jetstream/2.7.0/nats.client.jetstream.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.keyvaluestore/2.7.0/nats.client.keyvaluestore.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.objectstore/2.7.0/nats.client.objectstore.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.serializers.json/2.7.0/nats.client.serializers.json.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.services/2.7.0/nats.client.services.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.simplified/2.7.0/nats.client.simplified.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.net/2.7.0/nats.net.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nettopologysuite/2.5.0/nettopologysuite.2.5.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nettopologysuite.io.postgis/2.1.0/nettopologysuite.io.postgis.2.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/newid/4.0.1/newid.4.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/npgsql/10.0.0/npgsql.10.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/npgsql.dependencyinjection/10.0.0/npgsql.dependencyinjection.10.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/npgsql.json.net/9.0.4/npgsql.json.net.9.0.4.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/npgsql.nettopologysuite/9.0.4/npgsql.nettopologysuite.9.0.4.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/npgsql.opentelemetry/10.0.0/npgsql.opentelemetry.10.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry/1.14.0/opentelemetry.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.api/1.14.0/opentelemetry.api.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.api.providerbuilderextensions/1.14.0/opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.exporter.opentelemetryprotocol/1.14.0/opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.extensions.hosting/1.14.0/opentelemetry.extensions.hosting.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.aspnetcore/1.14.0/opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.http/1.14.0/opentelemetry.instrumentation.http.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.runtime/1.14.0/opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.core/8.6.5/polly.core.8.6.5.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.extensions/8.4.2/polly.extensions.8.4.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.ratelimiting/8.4.2/polly.ratelimiting.8.4.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/spectre.console/0.53.0/spectre.console.0.53.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition/9.0.0/system.composition.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.attributedmodel/9.0.0/system.composition.attributedmodel.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.convention/9.0.0/system.composition.convention.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.hosting/9.0.0/system.composition.hosting.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.runtime/9.0.0/system.composition.runtime.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.typedparts/9.0.0/system.composition.typedparts.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/weasel.core/8.5.0/weasel.core.8.5.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/weasel.postgresql/8.5.0/weasel.postgresql.8.5.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx/5.13.0/wolverinefx.5.13.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx.marten/5.13.0/wolverinefx.marten.5.13.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx.nats/5.13.0/wolverinefx.nats.5.13.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx.postgresql/5.13.0/wolverinefx.postgresql.5.13.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx.rdbms/5.13.0/wolverinefx.rdbms.5.13.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/project.packagespec.json b/wolverine-nats/WolverineAndNats/ApiOne/obj/project.packagespec.json new file mode 100644 index 0000000..02ad65d --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/ApiOne.csproj","projectName":"ApiOne","projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/ApiOne.csproj","outputPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net10.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net10.0":{"targetAlias":"net10.0","projectReferences":{"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj":{"projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj"},"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj":{"projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"all"},"SdkAnalysisLevel":"10.0.100"}"frameworks":{"net10.0":{"targetAlias":"net10.0","dependencies":{"Aspire.Npgsql":{"target":"Package","version":"[13.1.0, )"},"WolverineFx.Marten":{"target":"Package","version":"[5.13.0, )"},"WolverineFx.Nats":{"target":"Package","version":"[5.13.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json","packagesToPrune":{"Microsoft.AspNetCore":"(,10.0.32767]","Microsoft.AspNetCore.Antiforgery":"(,10.0.32767]","Microsoft.AspNetCore.App":"(,10.0.32767]","Microsoft.AspNetCore.Authentication":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.BearerToken":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Cookies":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Core":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.OAuth":"(,10.0.32767]","Microsoft.AspNetCore.Authorization":"(,10.0.32767]","Microsoft.AspNetCore.Authorization.Policy":"(,10.0.32767]","Microsoft.AspNetCore.Components":"(,10.0.32767]","Microsoft.AspNetCore.Components.Authorization":"(,10.0.32767]","Microsoft.AspNetCore.Components.Endpoints":"(,10.0.32767]","Microsoft.AspNetCore.Components.Forms":"(,10.0.32767]","Microsoft.AspNetCore.Components.Server":"(,10.0.32767]","Microsoft.AspNetCore.Components.Web":"(,10.0.32767]","Microsoft.AspNetCore.Connections.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.CookiePolicy":"(,10.0.32767]","Microsoft.AspNetCore.Cors":"(,10.0.32767]","Microsoft.AspNetCore.Cryptography.Internal":"(,10.0.32767]","Microsoft.AspNetCore.Cryptography.KeyDerivation":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection.Extensions":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics.HealthChecks":"(,10.0.32767]","Microsoft.AspNetCore.HostFiltering":"(,10.0.32767]","Microsoft.AspNetCore.Hosting":"(,10.0.32767]","Microsoft.AspNetCore.Hosting.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Hosting.Server.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Html.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Http":"(,10.0.32767]","Microsoft.AspNetCore.Http.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Http.Connections":"(,10.0.32767]","Microsoft.AspNetCore.Http.Connections.Common":"(,10.0.32767]","Microsoft.AspNetCore.Http.Extensions":"(,10.0.32767]","Microsoft.AspNetCore.Http.Features":"(,10.0.32767]","Microsoft.AspNetCore.Http.Results":"(,10.0.32767]","Microsoft.AspNetCore.HttpLogging":"(,10.0.32767]","Microsoft.AspNetCore.HttpOverrides":"(,10.0.32767]","Microsoft.AspNetCore.HttpsPolicy":"(,10.0.32767]","Microsoft.AspNetCore.Identity":"(,10.0.32767]","Microsoft.AspNetCore.Localization":"(,10.0.32767]","Microsoft.AspNetCore.Localization.Routing":"(,10.0.32767]","Microsoft.AspNetCore.Metadata":"(,10.0.32767]","Microsoft.AspNetCore.Mvc":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.ApiExplorer":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Core":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Cors":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.DataAnnotations":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Formatters.Json":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Formatters.Xml":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Localization":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Razor":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.RazorPages":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.TagHelpers":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.ViewFeatures":"(,10.0.32767]","Microsoft.AspNetCore.OutputCaching":"(,10.0.32767]","Microsoft.AspNetCore.RateLimiting":"(,10.0.32767]","Microsoft.AspNetCore.Razor":"(,10.0.32767]","Microsoft.AspNetCore.Razor.Runtime":"(,10.0.32767]","Microsoft.AspNetCore.RequestDecompression":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCaching":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCaching.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCompression":"(,10.0.32767]","Microsoft.AspNetCore.Rewrite":"(,10.0.32767]","Microsoft.AspNetCore.Routing":"(,10.0.32767]","Microsoft.AspNetCore.Routing.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Server.HttpSys":"(,10.0.32767]","Microsoft.AspNetCore.Server.IIS":"(,10.0.32767]","Microsoft.AspNetCore.Server.IISIntegration":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Core":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.Quic":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets":"(,10.0.32767]","Microsoft.AspNetCore.Session":"(,10.0.32767]","Microsoft.AspNetCore.SignalR":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Common":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Core":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Protocols.Json":"(,10.0.32767]","Microsoft.AspNetCore.StaticAssets":"(,10.0.32767]","Microsoft.AspNetCore.StaticFiles":"(,10.0.32767]","Microsoft.AspNetCore.WebSockets":"(,10.0.32767]","Microsoft.AspNetCore.WebUtilities":"(,10.0.32767]","Microsoft.CSharp":"(,4.7.32767]","Microsoft.Extensions.Caching.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Caching.Memory":"(,10.0.32767]","Microsoft.Extensions.Configuration":"(,10.0.32767]","Microsoft.Extensions.Configuration.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Configuration.Binder":"(,10.0.32767]","Microsoft.Extensions.Configuration.CommandLine":"(,10.0.32767]","Microsoft.Extensions.Configuration.EnvironmentVariables":"(,10.0.32767]","Microsoft.Extensions.Configuration.FileExtensions":"(,10.0.32767]","Microsoft.Extensions.Configuration.Ini":"(,10.0.32767]","Microsoft.Extensions.Configuration.Json":"(,10.0.32767]","Microsoft.Extensions.Configuration.KeyPerFile":"(,10.0.32767]","Microsoft.Extensions.Configuration.UserSecrets":"(,10.0.32767]","Microsoft.Extensions.Configuration.Xml":"(,10.0.32767]","Microsoft.Extensions.DependencyInjection":"(,10.0.32767]","Microsoft.Extensions.DependencyInjection.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Diagnostics":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.HealthChecks":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Features":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Abstractions":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Composite":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Physical":"(,10.0.32767]","Microsoft.Extensions.FileSystemGlobbing":"(,10.0.32767]","Microsoft.Extensions.Hosting":"(,10.0.32767]","Microsoft.Extensions.Hosting.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Http":"(,10.0.32767]","Microsoft.Extensions.Identity.Core":"(,10.0.32767]","Microsoft.Extensions.Identity.Stores":"(,10.0.32767]","Microsoft.Extensions.Localization":"(,10.0.32767]","Microsoft.Extensions.Localization.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Logging":"(,10.0.32767]","Microsoft.Extensions.Logging.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Logging.Configuration":"(,10.0.32767]","Microsoft.Extensions.Logging.Console":"(,10.0.32767]","Microsoft.Extensions.Logging.Debug":"(,10.0.32767]","Microsoft.Extensions.Logging.EventLog":"(,10.0.32767]","Microsoft.Extensions.Logging.EventSource":"(,10.0.32767]","Microsoft.Extensions.Logging.TraceSource":"(,10.0.32767]","Microsoft.Extensions.ObjectPool":"(,10.0.32767]","Microsoft.Extensions.Options":"(,10.0.32767]","Microsoft.Extensions.Options.ConfigurationExtensions":"(,10.0.32767]","Microsoft.Extensions.Options.DataAnnotations":"(,10.0.32767]","Microsoft.Extensions.Primitives":"(,10.0.32767]","Microsoft.Extensions.Validation":"(,10.0.32767]","Microsoft.Extensions.WebEncoders":"(,10.0.32767]","Microsoft.JSInterop":"(,10.0.32767]","Microsoft.Net.Http.Headers":"(,10.0.32767]","Microsoft.VisualBasic":"(,10.4.32767]","Microsoft.Win32.Primitives":"(,4.3.32767]","Microsoft.Win32.Registry":"(,5.0.32767]","runtime.any.System.Collections":"(,4.3.32767]","runtime.any.System.Diagnostics.Tools":"(,4.3.32767]","runtime.any.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.any.System.Globalization":"(,4.3.32767]","runtime.any.System.Globalization.Calendars":"(,4.3.32767]","runtime.any.System.IO":"(,4.3.32767]","runtime.any.System.Reflection":"(,4.3.32767]","runtime.any.System.Reflection.Extensions":"(,4.3.32767]","runtime.any.System.Reflection.Primitives":"(,4.3.32767]","runtime.any.System.Resources.ResourceManager":"(,4.3.32767]","runtime.any.System.Runtime":"(,4.3.32767]","runtime.any.System.Runtime.Handles":"(,4.3.32767]","runtime.any.System.Runtime.InteropServices":"(,4.3.32767]","runtime.any.System.Text.Encoding":"(,4.3.32767]","runtime.any.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.any.System.Threading.Tasks":"(,4.3.32767]","runtime.any.System.Threading.Timer":"(,4.3.32767]","runtime.aot.System.Collections":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tools":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.aot.System.Globalization":"(,4.3.32767]","runtime.aot.System.Globalization.Calendars":"(,4.3.32767]","runtime.aot.System.IO":"(,4.3.32767]","runtime.aot.System.Reflection":"(,4.3.32767]","runtime.aot.System.Reflection.Extensions":"(,4.3.32767]","runtime.aot.System.Reflection.Primitives":"(,4.3.32767]","runtime.aot.System.Resources.ResourceManager":"(,4.3.32767]","runtime.aot.System.Runtime":"(,4.3.32767]","runtime.aot.System.Runtime.Handles":"(,4.3.32767]","runtime.aot.System.Runtime.InteropServices":"(,4.3.32767]","runtime.aot.System.Text.Encoding":"(,4.3.32767]","runtime.aot.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.aot.System.Threading.Tasks":"(,4.3.32767]","runtime.aot.System.Threading.Timer":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.unix.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.unix.System.Console":"(,4.3.32767]","runtime.unix.System.Diagnostics.Debug":"(,4.3.32767]","runtime.unix.System.IO.FileSystem":"(,4.3.32767]","runtime.unix.System.Net.Primitives":"(,4.3.32767]","runtime.unix.System.Net.Sockets":"(,4.3.32767]","runtime.unix.System.Private.Uri":"(,4.3.32767]","runtime.unix.System.Runtime.Extensions":"(,4.3.32767]","runtime.win.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.win.System.Console":"(,4.3.32767]","runtime.win.System.Diagnostics.Debug":"(,4.3.32767]","runtime.win.System.IO.FileSystem":"(,4.3.32767]","runtime.win.System.Net.Primitives":"(,4.3.32767]","runtime.win.System.Net.Sockets":"(,4.3.32767]","runtime.win.System.Runtime.Extensions":"(,4.3.32767]","runtime.win10-arm-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-arm64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win10-x64-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-x86-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7-x86.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7.System.Private.Uri":"(,4.3.32767]","runtime.win8-arm.runtime.native.System.IO.Compression":"(,4.3.32767]","System.AppContext":"(,4.3.32767]","System.Buffers":"(,5.0.32767]","System.Collections":"(,4.3.32767]","System.Collections.Concurrent":"(,4.3.32767]","System.Collections.Immutable":"(,10.0.32767]","System.Collections.NonGeneric":"(,4.3.32767]","System.Collections.Specialized":"(,4.3.32767]","System.ComponentModel":"(,4.3.32767]","System.ComponentModel.Annotations":"(,4.3.32767]","System.ComponentModel.EventBasedAsync":"(,4.3.32767]","System.ComponentModel.Primitives":"(,4.3.32767]","System.ComponentModel.TypeConverter":"(,4.3.32767]","System.Console":"(,4.3.32767]","System.Data.Common":"(,4.3.32767]","System.Data.DataSetExtensions":"(,4.4.32767]","System.Diagnostics.Contracts":"(,4.3.32767]","System.Diagnostics.Debug":"(,4.3.32767]","System.Diagnostics.DiagnosticSource":"(,10.0.32767]","System.Diagnostics.EventLog":"(,10.0.32767]","System.Diagnostics.FileVersionInfo":"(,4.3.32767]","System.Diagnostics.Process":"(,4.3.32767]","System.Diagnostics.StackTrace":"(,4.3.32767]","System.Diagnostics.TextWriterTraceListener":"(,4.3.32767]","System.Diagnostics.Tools":"(,4.3.32767]","System.Diagnostics.TraceSource":"(,4.3.32767]","System.Diagnostics.Tracing":"(,4.3.32767]","System.Drawing.Primitives":"(,4.3.32767]","System.Dynamic.Runtime":"(,4.3.32767]","System.Formats.Asn1":"(,10.0.32767]","System.Formats.Cbor":"(,10.0.32767]","System.Formats.Tar":"(,10.0.32767]","System.Globalization":"(,4.3.32767]","System.Globalization.Calendars":"(,4.3.32767]","System.Globalization.Extensions":"(,4.3.32767]","System.IO":"(,4.3.32767]","System.IO.Compression":"(,4.3.32767]","System.IO.Compression.ZipFile":"(,4.3.32767]","System.IO.FileSystem":"(,4.3.32767]","System.IO.FileSystem.AccessControl":"(,4.4.32767]","System.IO.FileSystem.DriveInfo":"(,4.3.32767]","System.IO.FileSystem.Primitives":"(,4.3.32767]","System.IO.FileSystem.Watcher":"(,4.3.32767]","System.IO.IsolatedStorage":"(,4.3.32767]","System.IO.MemoryMappedFiles":"(,4.3.32767]","System.IO.Pipelines":"(,10.0.32767]","System.IO.Pipes":"(,4.3.32767]","System.IO.Pipes.AccessControl":"(,5.0.32767]","System.IO.UnmanagedMemoryStream":"(,4.3.32767]","System.Linq":"(,4.3.32767]","System.Linq.AsyncEnumerable":"(,10.0.32767]","System.Linq.Expressions":"(,4.3.32767]","System.Linq.Parallel":"(,4.3.32767]","System.Linq.Queryable":"(,4.3.32767]","System.Memory":"(,5.0.32767]","System.Net.Http":"(,4.3.32767]","System.Net.Http.Json":"(,10.0.32767]","System.Net.NameResolution":"(,4.3.32767]","System.Net.NetworkInformation":"(,4.3.32767]","System.Net.Ping":"(,4.3.32767]","System.Net.Primitives":"(,4.3.32767]","System.Net.Requests":"(,4.3.32767]","System.Net.Security":"(,4.3.32767]","System.Net.ServerSentEvents":"(,10.0.32767]","System.Net.Sockets":"(,4.3.32767]","System.Net.WebHeaderCollection":"(,4.3.32767]","System.Net.WebSockets":"(,4.3.32767]","System.Net.WebSockets.Client":"(,4.3.32767]","System.Numerics.Vectors":"(,5.0.32767]","System.ObjectModel":"(,4.3.32767]","System.Private.DataContractSerialization":"(,4.3.32767]","System.Private.Uri":"(,4.3.32767]","System.Reflection":"(,4.3.32767]","System.Reflection.DispatchProxy":"(,6.0.32767]","System.Reflection.Emit":"(,4.7.32767]","System.Reflection.Emit.ILGeneration":"(,4.7.32767]","System.Reflection.Emit.Lightweight":"(,4.7.32767]","System.Reflection.Extensions":"(,4.3.32767]","System.Reflection.Metadata":"(,10.0.32767]","System.Reflection.Primitives":"(,4.3.32767]","System.Reflection.TypeExtensions":"(,4.3.32767]","System.Resources.Reader":"(,4.3.32767]","System.Resources.ResourceManager":"(,4.3.32767]","System.Resources.Writer":"(,4.3.32767]","System.Runtime":"(,4.3.32767]","System.Runtime.CompilerServices.Unsafe":"(,7.0.32767]","System.Runtime.CompilerServices.VisualC":"(,4.3.32767]","System.Runtime.Extensions":"(,4.3.32767]","System.Runtime.Handles":"(,4.3.32767]","System.Runtime.InteropServices":"(,4.3.32767]","System.Runtime.InteropServices.RuntimeInformation":"(,4.3.32767]","System.Runtime.Loader":"(,4.3.32767]","System.Runtime.Numerics":"(,4.3.32767]","System.Runtime.Serialization.Formatters":"(,4.3.32767]","System.Runtime.Serialization.Json":"(,4.3.32767]","System.Runtime.Serialization.Primitives":"(,4.3.32767]","System.Runtime.Serialization.Xml":"(,4.3.32767]","System.Security.AccessControl":"(,6.0.32767]","System.Security.Claims":"(,4.3.32767]","System.Security.Cryptography.Algorithms":"(,4.3.32767]","System.Security.Cryptography.Cng":"(,5.0.32767]","System.Security.Cryptography.Csp":"(,4.3.32767]","System.Security.Cryptography.Encoding":"(,4.3.32767]","System.Security.Cryptography.OpenSsl":"(,5.0.32767]","System.Security.Cryptography.Primitives":"(,4.3.32767]","System.Security.Cryptography.X509Certificates":"(,4.3.32767]","System.Security.Cryptography.Xml":"(,10.0.32767]","System.Security.Principal":"(,4.3.32767]","System.Security.Principal.Windows":"(,5.0.32767]","System.Security.SecureString":"(,4.3.32767]","System.Text.Encoding":"(,4.3.32767]","System.Text.Encoding.CodePages":"(,10.0.32767]","System.Text.Encoding.Extensions":"(,4.3.32767]","System.Text.Encodings.Web":"(,10.0.32767]","System.Text.Json":"(,10.0.32767]","System.Text.RegularExpressions":"(,4.3.32767]","System.Threading":"(,4.3.32767]","System.Threading.AccessControl":"(,10.0.32767]","System.Threading.Channels":"(,10.0.32767]","System.Threading.Overlapped":"(,4.3.32767]","System.Threading.RateLimiting":"(,10.0.32767]","System.Threading.Tasks":"(,4.3.32767]","System.Threading.Tasks.Dataflow":"(,10.0.32767]","System.Threading.Tasks.Extensions":"(,5.0.32767]","System.Threading.Tasks.Parallel":"(,4.3.32767]","System.Threading.Thread":"(,4.3.32767]","System.Threading.ThreadPool":"(,4.3.32767]","System.Threading.Timer":"(,4.3.32767]","System.ValueTuple":"(,4.5.32767]","System.Xml.ReaderWriter":"(,4.3.32767]","System.Xml.XDocument":"(,4.3.32767]","System.Xml.XmlDocument":"(,4.3.32767]","System.Xml.XmlSerializer":"(,4.3.32767]","System.Xml.XPath":"(,4.3.32767]","System.Xml.XPath.XDocument":"(,5.0.32767]"}}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/rider.project.model.nuget.info b/wolverine-nats/WolverineAndNats/ApiOne/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..0c2b1cf --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17700360421668921 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiOne/obj/rider.project.restore.info b/wolverine-nats/WolverineAndNats/ApiOne/obj/rider.project.restore.info new file mode 100644 index 0000000..3728681 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiOne/obj/rider.project.restore.info @@ -0,0 +1 @@ +17700382162662769 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/ApiTwo.csproj b/wolverine-nats/WolverineAndNats/ApiTwo/ApiTwo.csproj new file mode 100644 index 0000000..219bc47 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/ApiTwo.csproj @@ -0,0 +1,20 @@ + + + + net10.0 + enable + enable + + + + + + + + + + + + + + diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/Program.cs b/wolverine-nats/WolverineAndNats/ApiTwo/Program.cs new file mode 100644 index 0000000..7de8fc4 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/Program.cs @@ -0,0 +1,81 @@ +using Marten; +using Messages; +using Wolverine; +using Wolverine.Marten; +using Wolverine.Nats; + +var builder = WebApplication.CreateBuilder(args); + +builder.AddServiceDefaults(); +builder.AddNpgsqlDataSource("db-two"); + +builder.UseWolverine(options => +{ + options.UseNats(builder.Configuration.GetConnectionString("nats") ?? + throw new Exception("No NATS connection string configured")) + .AutoProvision() + .UseJetStream(js => + { + js.MaxDeliver = 5; + js.AckWait = TimeSpan.FromSeconds(30); + }); + //.DefineWorkQueueStream("APITWO", s => s.EnableScheduledDelivery(), "users.>"); + + options.ListenToNatsSubject("messages-sent") + .BufferedInMemory(); + + options.ListenToNatsSubject("math.add") + .ProcessInline(); + + options.ListenToNatsSubject("people.>") + .UseJetStream("PEOPLE", "api-two"); + + +}); + +builder.Services.AddMarten(config => + { + + }).UseLightweightSessions() + .IntegrateWithWolverine() + .UseNpgsqlDataSource(); + +var app = builder.Build(); + +app.MapGet("/users", async (IDocumentSession session) => +{ + var response = await session.Query().ToListAsync(); + return Results.Ok(response); +}); + +app.Run(); + +public static class MessageHandler +{ + public static void Handle(SendMessage message, ILogger logger) + { + logger.LogInformation($"Received message: {message.Message}"); + } + + public static NumbersAdded Handle(AddThem request) + { + var sum = request.Numbers.Sum(); + return new NumbersAdded(sum); + } + public static async Task Handle(UserDocument user, IDocumentSession session) + { + session.Store(user); + await session.SaveChangesAsync(); + } + public static async Task Handle(UserNameChanged nameChanged, IDocumentSession session) + { + var user = await session.LoadAsync(nameChanged.Id); + if (user != null) + { + var updatedUser = user with { Name = nameChanged.NewName }; + session.Store(updatedUser); + await session.SaveChangesAsync(); + } + } +} + diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/Properties/launchSettings.json b/wolverine-nats/WolverineAndNats/ApiTwo/Properties/launchSettings.json new file mode 100644 index 0000000..2977efd --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/Properties/launchSettings.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "https://apitwo.dev.localhost:7204", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/appsettings.Development.json b/wolverine-nats/WolverineAndNats/ApiTwo/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/appsettings.json b/wolverine-nats/WolverineAndNats/ApiTwo/appsettings.json new file mode 100644 index 0000000..1d96cd3 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/appsettings.json @@ -0,0 +1,11 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning", + "Npgsql": "Warning", + "Wolverine": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo new file mode 100755 index 0000000..d3e5d7a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.deps.json b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.deps.json new file mode 100644 index 0000000..2297c04 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.deps.json @@ -0,0 +1,1821 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "ApiTwo/1.0.0": { + "dependencies": { + "Aspire.Npgsql": "13.1.0", + "Messages": "1.0.0", + "ServiceDefaults": "1.0.0", + "WolverineFx.Marten": "5.13.0", + "WolverineFx.Nats": "5.13.0" + }, + "runtime": { + "ApiTwo.dll": {} + } + }, + "Aspire.Npgsql/13.1.0": { + "dependencies": { + "AspNetCore.HealthChecks.NpgSql": "9.0.0", + "Npgsql.DependencyInjection": "10.0.0", + "Npgsql.OpenTelemetry": "10.0.0", + "OpenTelemetry.Extensions.Hosting": "1.14.0" + }, + "runtime": { + "lib/net10.0/Aspire.Npgsql.dll": { + "assemblyVersion": "13.1.0.0", + "fileVersion": "13.100.25.61603" + } + } + }, + "AspNetCore.HealthChecks.NpgSql/9.0.0": { + "dependencies": { + "Npgsql": "10.0.0" + }, + "runtime": { + "lib/net8.0/HealthChecks.NpgSql.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.0.0" + } + } + }, + "DistributedLock.Core/1.0.8": { + "runtime": { + "lib/net8.0/DistributedLock.Core.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "DistributedLock.Postgres/1.3.0": { + "dependencies": { + "DistributedLock.Core": "1.0.8", + "Npgsql": "10.0.0" + }, + "runtime": { + "lib/net8.0/DistributedLock.Postgres.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "FastExpressionCompiler/5.3.0": { + "runtime": { + "lib/net9.0/FastExpressionCompiler.dll": { + "assemblyVersion": "5.3.0.0", + "fileVersion": "5.3.0.0" + } + } + }, + "FSharp.Core/9.0.100": { + "runtime": { + "lib/netstandard2.1/FSharp.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.1.24.52202" + } + }, + "resources": { + "lib/netstandard2.1/cs/FSharp.Core.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.1/de/FSharp.Core.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.1/es/FSharp.Core.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.1/fr/FSharp.Core.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.1/it/FSharp.Core.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.1/ja/FSharp.Core.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.1/ko/FSharp.Core.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.1/pl/FSharp.Core.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.1/ru/FSharp.Core.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.1/tr/FSharp.Core.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "JasperFx/1.17.0": { + "dependencies": { + "FastExpressionCompiler": "5.3.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Polly.Core": "8.6.5", + "Spectre.Console": "0.53.0" + }, + "runtime": { + "lib/net10.0/JasperFx.dll": { + "assemblyVersion": "1.17.0.0", + "fileVersion": "1.17.0.0" + } + } + }, + "JasperFx.Events/1.17.0": { + "dependencies": { + "JasperFx": "1.17.0" + }, + "runtime": { + "lib/net10.0/JasperFx.Events.dll": { + "assemblyVersion": "1.17.0.0", + "fileVersion": "1.17.0.0" + } + } + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "dependencies": { + "JasperFx": "1.17.0", + "Microsoft.CodeAnalysis": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Scripting": "5.0.0" + }, + "runtime": { + "lib/net10.0/JasperFx.RuntimeCompiler.dll": { + "assemblyVersion": "4.3.2.0", + "fileVersion": "4.3.2.0" + } + } + }, + "Marten/8.19.0": { + "dependencies": { + "FSharp.Core": "9.0.100", + "JasperFx": "1.17.0", + "JasperFx.Events": "1.17.0", + "JasperFx.RuntimeCompiler": "4.3.2", + "Newtonsoft.Json": "13.0.3", + "Npgsql.Json.NET": "9.0.4", + "Weasel.Postgresql": "8.5.0" + }, + "runtime": { + "lib/net10.0/Marten.dll": { + "assemblyVersion": "8.19.0.0", + "fileVersion": "8.19.0.0" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.CodeAnalysis/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "5.0.0", + "Microsoft.CodeAnalysis.VisualBasic.Workspaces": "5.0.0", + "System.Composition": "9.0.0" + } + }, + "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.Scripting/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Common": "5.0.0", + "Microsoft.CodeAnalysis.Scripting.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.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.Scripting/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp.Scripting": "5.0.0" + } + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Common": "5.0.0", + "Microsoft.CodeAnalysis.VisualBasic": "5.0.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.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.Extensions.AmbientMetadata.Application/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Telemetry": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Http.Diagnostics": "10.1.0", + "Microsoft.Extensions.Resilience": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Diagnostics.ExceptionSummarization": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0", + "Polly.Extensions": "8.4.2", + "Polly.RateLimiting": "8.4.2" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "dependencies": { + "Microsoft.Extensions.ServiceDiscovery.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "dependencies": { + "Microsoft.Extensions.AmbientMetadata.Application": "10.1.0", + "Microsoft.Extensions.DependencyInjection.AutoActivation": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Compliance.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "NATS.Client.Abstractions/2.7.0": { + "runtime": { + "lib/net8.0/NATS.Client.Abstractions.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Core/2.7.0": { + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Core.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Hosting/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.JetStream/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.KeyValueStore/2.7.0": { + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.ObjectStore/2.7.0": { + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Serializers.Json/2.7.0": { + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Services/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Services.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Simplified/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Net/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Hosting": "2.7.0", + "NATS.Client.JetStream": "2.7.0", + "NATS.Client.KeyValueStore": "2.7.0", + "NATS.Client.ObjectStore": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0", + "NATS.Client.Services": "2.7.0", + "NATS.Client.Simplified": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Net.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NetTopologySuite/2.5.0": { + "runtime": { + "lib/netstandard2.0/NetTopologySuite.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "NetTopologySuite.IO.PostGis/2.1.0": { + "dependencies": { + "NetTopologySuite": "2.5.0" + }, + "runtime": { + "lib/netstandard2.1/NetTopologySuite.IO.PostGis.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "NewId/4.0.1": { + "runtime": { + "lib/net6.0/NewId.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "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.0": { + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "Npgsql.DependencyInjection/10.0.0": { + "dependencies": { + "Npgsql": "10.0.0" + }, + "runtime": { + "lib/net8.0/Npgsql.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "Npgsql.Json.NET/9.0.4": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "Npgsql": "10.0.0" + }, + "runtime": { + "lib/net6.0/Npgsql.Json.NET.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "Npgsql.NetTopologySuite/9.0.4": { + "dependencies": { + "NetTopologySuite": "2.5.0", + "NetTopologySuite.IO.PostGis": "2.1.0", + "Npgsql": "10.0.0" + }, + "runtime": { + "lib/net6.0/Npgsql.NetTopologySuite.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "Npgsql.OpenTelemetry/10.0.0": { + "dependencies": { + "Npgsql": "10.0.0", + "OpenTelemetry.Api": "1.14.0" + }, + "runtime": { + "lib/net8.0/Npgsql.OpenTelemetry.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "OpenTelemetry/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Api/1.14.0": { + "runtime": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "assemblyVersion": "1.14.0.761", + "fileVersion": "1.14.0.761" + } + } + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "assemblyVersion": "1.14.0.774", + "fileVersion": "1.14.0.774" + } + } + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "assemblyVersion": "1.14.0.775", + "fileVersion": "1.14.0.775" + } + } + }, + "Polly.Core/8.6.5": { + "runtime": { + "lib/net8.0/Polly.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.6.5.5194" + } + } + }, + "Polly.Extensions/8.4.2": { + "dependencies": { + "Polly.Core": "8.6.5" + }, + "runtime": { + "lib/net8.0/Polly.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + }, + "Polly.RateLimiting/8.4.2": { + "dependencies": { + "Polly.Core": "8.6.5" + }, + "runtime": { + "lib/net8.0/Polly.RateLimiting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + }, + "Spectre.Console/0.53.0": { + "runtime": { + "lib/net9.0/Spectre.Console.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.53.0.0" + } + } + }, + "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" + } + } + }, + "Weasel.Core/8.5.0": { + "dependencies": { + "JasperFx": "1.17.0" + }, + "runtime": { + "lib/net10.0/Weasel.Core.dll": { + "assemblyVersion": "8.5.0.0", + "fileVersion": "8.5.0.0" + } + } + }, + "Weasel.Postgresql/8.5.0": { + "dependencies": { + "DistributedLock.Postgres": "1.3.0", + "Npgsql": "10.0.0", + "Npgsql.NetTopologySuite": "9.0.4", + "Weasel.Core": "8.5.0" + }, + "runtime": { + "lib/net10.0/Weasel.Postgresql.dll": { + "assemblyVersion": "8.5.0.0", + "fileVersion": "8.5.0.0" + } + } + }, + "WolverineFx/5.13.0": { + "dependencies": { + "JasperFx": "1.17.0", + "JasperFx.Events": "1.17.0", + "JasperFx.RuntimeCompiler": "4.3.2", + "NewId": "4.0.1", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net10.0/Wolverine.dll": { + "assemblyVersion": "5.13.0.0", + "fileVersion": "5.13.0.0" + } + } + }, + "WolverineFx.Marten/5.13.0": { + "dependencies": { + "Marten": "8.19.0", + "WolverineFx.Postgresql": "5.13.0" + }, + "runtime": { + "lib/net10.0/Wolverine.Marten.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "WolverineFx.Nats/5.13.0": { + "dependencies": { + "NATS.Net": "2.7.0", + "WolverineFx": "5.13.0" + }, + "runtime": { + "lib/net10.0/Wolverine.Nats.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "WolverineFx.Postgresql/5.13.0": { + "dependencies": { + "Weasel.Postgresql": "8.5.0", + "WolverineFx.RDBMS": "5.13.0" + }, + "runtime": { + "lib/net10.0/Wolverine.Postgresql.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "WolverineFx.RDBMS/5.13.0": { + "dependencies": { + "Weasel.Core": "8.5.0", + "WolverineFx": "5.13.0" + }, + "runtime": { + "lib/net10.0/Wolverine.RDBMS.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "Messages/1.0.0": { + "runtime": { + "Messages.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "ServiceDefaults/1.0.0": { + "dependencies": { + "Microsoft.Extensions.Http.Resilience": "10.1.0", + "Microsoft.Extensions.ServiceDiscovery": "10.1.0", + "OpenTelemetry.Exporter.OpenTelemetryProtocol": "1.14.0", + "OpenTelemetry.Extensions.Hosting": "1.14.0", + "OpenTelemetry.Instrumentation.AspNetCore": "1.14.0", + "OpenTelemetry.Instrumentation.Http": "1.14.0", + "OpenTelemetry.Instrumentation.Runtime": "1.14.0" + }, + "runtime": { + "ServiceDefaults.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "ApiTwo/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Aspire.Npgsql/13.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaxFv4W11jqDoA8KHzJsaQ5PlAOHQfYCv0PqOt2nn6rPlcT+KZuzBSnAVlKQ1M5+nW2T9D+Zdi9vhXvPVz2R/w==", + "path": "aspire.npgsql/13.1.0", + "hashPath": "aspire.npgsql.13.1.0.nupkg.sha512" + }, + "AspNetCore.HealthChecks.NpgSql/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npc58/AD5zuVxERdhCl2Kb7WnL37mwX42SJcXIwvmEig0/dugOLg3SIwtfvvh3TnvTwR/sk5LYNkkPaBdks61A==", + "path": "aspnetcore.healthchecks.npgsql/9.0.0", + "hashPath": "aspnetcore.healthchecks.npgsql.9.0.0.nupkg.sha512" + }, + "DistributedLock.Core/1.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LAOsY8WxX8JU/n3lfXFz+f2pfnv0+4bHkCrOO3bwa28u9HrS3DlxSG6jf+u76SqesKs+KehZi0CndkfaUXBKvg==", + "path": "distributedlock.core/1.0.8", + "hashPath": "distributedlock.core.1.0.8.nupkg.sha512" + }, + "DistributedLock.Postgres/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CyjXmbhFgG30qPg4DwGnsmZO63y5DBRo+PI2xW0NwtFrsYsMVt/T1RcEUlb36JMKhDkf+euhnkanv/nU+W35qA==", + "path": "distributedlock.postgres/1.3.0", + "hashPath": "distributedlock.postgres.1.3.0.nupkg.sha512" + }, + "FastExpressionCompiler/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XRmGW48Gdm7B70WUtTJJUnmuc8jRDmOhhjG/a3rix/nXChnrkETaSvA0j2VrcsH4MNeYLe60LA5o5JABmbneag==", + "path": "fastexpressioncompiler/5.3.0", + "hashPath": "fastexpressioncompiler.5.3.0.nupkg.sha512" + }, + "FSharp.Core/9.0.100": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ye8yagHGsH08H2Twno5GRWkSbrMtxK/SWiHuPcF+3nODpW65/VJ8RO0aWxp8n9+KQbmahg90wAEL3TEXjF0r6A==", + "path": "fsharp.core/9.0.100", + "hashPath": "fsharp.core.9.0.100.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" + }, + "JasperFx/1.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d0QqJ33u1IIyG88p8xMi1X9DtfL5Zyq0ivxn5KWJRaVSS3gJ/q9Ws0FopQiG4mxDl/w7rbnSmuFpu4iSimP5IQ==", + "path": "jasperfx/1.17.0", + "hashPath": "jasperfx.1.17.0.nupkg.sha512" + }, + "JasperFx.Events/1.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sLvOvE5ABMcATyFLVIKDHeWbjVlhPL8TuK3To1cUdX452Xk6zyEAoW8u/UHfDr4meI9rXoMu4a5GaG8xDjp50A==", + "path": "jasperfx.events/1.17.0", + "hashPath": "jasperfx.events.1.17.0.nupkg.sha512" + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zA8iKRvnM1doCM7QqKXfit+FO9LF9hZ+BPoxe4L/+wf6RlARUMpV6HYjr1LWqogT2T5RzC5iO9r9HITl94MonA==", + "path": "jasperfx.runtimecompiler/4.3.2", + "hashPath": "jasperfx.runtimecompiler.4.3.2.nupkg.sha512" + }, + "Marten/8.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kZXpOCBbPKAvjcTS8Eco0n8N31cbPwNDuJuPktet2IKhXd9RWweSfWNh1XG8PEAQqc1oZksZty2ZD9mSOFA6gw==", + "path": "marten/8.19.0", + "hashPath": "marten.8.19.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "path": "microsoft.bcl.timeprovider/10.0.0", + "hashPath": "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7vItpZDkGm4NS2wp4P1S07Z1e61LaBWDW5tPXE1c6z5/x9KbF2RymhAPoYg7Qoiyk7odEZ6EjBEJ47p3dBpYQ==", + "path": "microsoft.codeanalysis/5.0.0", + "hashPath": "microsoft.codeanalysis.5.0.0.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.Scripting/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1sGloRYbG3743ut/+vuXy9/WaRQTm7mDtp71rBaVSmKpFntvo5Hcro1ubg6/3SeeLtiFYJl7V3Dk0Fo3CGlnHA==", + "path": "microsoft.codeanalysis.csharp.scripting/5.0.0", + "hashPath": "microsoft.codeanalysis.csharp.scripting.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.Scripting/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/KgZdm6kRTrR/O2jqXxU5GWREYhtVmqcNWczyPt8hsQkFGFK/C6CrLWfG44FCUn0aPHGDRBHYjXlGosQ/H8oXw==", + "path": "microsoft.codeanalysis.scripting/5.0.0", + "hashPath": "microsoft.codeanalysis.scripting.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XTulByMNxqXGCgMeODUoG2h4oK4/nLv1BcawRVcjv+UZHMpoaymtdaq3cJqlNrEvYEcbU48g5swJ3RhY1m3fBg==", + "path": "microsoft.codeanalysis.scripting.common/5.0.0", + "hashPath": "microsoft.codeanalysis.scripting.common.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sUBWvHs2HgHGA+b716dgjS7JiXGen5ntyohAurPLR1ZiZzFp3FlnVA7GrMTqVGdVJTVqiC3c4K8k1bk0gj6IPg==", + "path": "microsoft.codeanalysis.visualbasic/5.0.0", + "hashPath": "microsoft.codeanalysis.visualbasic.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nom4UuZVEZGaV6Qa+joJR/BawXZMtflvQJFKc0SaUc3LrZr/8LmRY5cn8mbvLOWIVfwWkQz+cVE6eQKu9qa65g==", + "path": "microsoft.codeanalysis.visualbasic.workspaces/5.0.0", + "hashPath": "microsoft.codeanalysis.visualbasic.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.Extensions.AmbientMetadata.Application/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+T2Ax2fgw7T7nlhio+ZtgSyYGfevHCOXNPqO0vxA+f2HmbtfwAnIwHEE/jm1/4uFRDDP8PEENpxAhbucg+wUWg==", + "path": "microsoft.extensions.ambientmetadata.application/10.1.0", + "hashPath": "microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M3JWrgZMkVzyEybZzNkTiC/e8U1ipXTi8xm8bj+PHHp4AcEmhmIEqnxRS0VHVCKZjLkOPt2hY2CIisUFQ6gqLA==", + "path": "microsoft.extensions.compliance.abstractions/10.1.0", + "hashPath": "microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-O052pqWkdVNXaj3n9E4x6nLL7sG860434gLh7XHhFp/KpyAY9/rCk9NJUinYfQnDkAA8UgCHimVZz+lTjnEwzQ==", + "path": "microsoft.extensions.dependencyinjection.autoactivation/10.1.0", + "hashPath": "microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q76peCoP6vXXf95RLFeMGzcaQs8l3lk+n/ZOTi2i+OLd3R0HzzB0Fswjua4NY1viIbA1s6l1mqRjQbxY7+Jylw==", + "path": "microsoft.extensions.diagnostics.exceptionsummarization/10.1.0", + "hashPath": "microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RA1Egggf5o7/5AI5TIxOmmV7T06X2jvA9nSlJazU++X/pgu48EDAjDflTq/+kAk0FHUm9ZpAiBVdWfOP2opAbQ==", + "path": "microsoft.extensions.http.diagnostics/10.1.0", + "hashPath": "microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rwDoQBB93yQjd1XtcZBnOLRX23LW7Z49TIAp1sn7i2r/pW3y4iB8E+EEL0ZyOPuEZxT9xEVN9y39KWlG1FDPkQ==", + "path": "microsoft.extensions.http.resilience/10.1.0", + "hashPath": "microsoft.extensions.http.resilience.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NzA+c4m2q92qZPjiZLFm+ToeQC3KFqzP+Dr/1pV5y9d7H/hDM2Yxno0kcw5DGpSvS0s6Pwsp+FWMdk/kXBPZ7g==", + "path": "microsoft.extensions.resilience/10.1.0", + "hashPath": "microsoft.extensions.resilience.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b78YWSrwXQI/pSzKIe/TO1lC2FcBfrux6+AmgTRStKcJYHNU1r8ii1GICRNv37CobIcaW8w33LW+xmThqIG/bg==", + "path": "microsoft.extensions.servicediscovery/10.1.0", + "hashPath": "microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uNPOkiRJx6J01aoHQBoX+QR6ZmQpIYdg/OO9+x/M3lkY6JTHBxp3pohcOyEe9l77MT8+3fVEP84/Uw+JODkA0Q==", + "path": "microsoft.extensions.servicediscovery.abstractions/10.1.0", + "hashPath": "microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OFnpwOBRZZXMMySvM7eJsEQ87ED5SaRbxHg/an1u89MWHw0mXUUbx5WPb5XFN0uS8kJPe6M+ZMRYwRP0nJeDPA==", + "path": "microsoft.extensions.telemetry/10.1.0", + "hashPath": "microsoft.extensions.telemetry.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0jAF2b0YJ1LOtunmo3PzSoJOx/ThhcGH5Y5kaV0jeM0BUlyr9orjg+fH5YabqnPSmwcN/DSTj0iZ7UwDISn5ag==", + "path": "microsoft.extensions.telemetry.abstractions/10.1.0", + "hashPath": "microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512" + }, + "NATS.Client.Abstractions/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DQ6x64lyH7Li2jS8/IV+XIEkhnhE9KENQ5luAoYTLPNEmFoIVcWN8RQSHjyRJviu4RGbw6AvHmlxvehnSqJk8w==", + "path": "nats.client.abstractions/2.7.0", + "hashPath": "nats.client.abstractions.2.7.0.nupkg.sha512" + }, + "NATS.Client.Core/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/l3nqhk6mfG50QjjvwKMN+kSUgJ27fmoaXAXXjrB13YpCbcl20c7Mj82KsutbjmxMVKSdb1mc7Wvj2Ahr03e8A==", + "path": "nats.client.core/2.7.0", + "hashPath": "nats.client.core.2.7.0.nupkg.sha512" + }, + "NATS.Client.Hosting/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P0OoQWqhKPavjmkO23mOdqHsm4GmO9OdjlTrWTpvQes67DLgxmYTjGu1PYK0pi/XJuuiUeZdKhINt6XvygaqYg==", + "path": "nats.client.hosting/2.7.0", + "hashPath": "nats.client.hosting.2.7.0.nupkg.sha512" + }, + "NATS.Client.JetStream/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MHT27WsvKCPSQ234WO+PnaDH0+rAs1W70BPnSvt/4iZ/Dunfx8oQHSGskfAz62R1U2ZGBTbucjkPCJqjCep0bA==", + "path": "nats.client.jetstream/2.7.0", + "hashPath": "nats.client.jetstream.2.7.0.nupkg.sha512" + }, + "NATS.Client.KeyValueStore/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vmpy1y3fU0TzrOhEtS+9NajcjY1R08tHR7GQIIXB2IE2k0vh1rHLChUtrMypvTlng90KHGhGPsr/EzJnu6hqzA==", + "path": "nats.client.keyvaluestore/2.7.0", + "hashPath": "nats.client.keyvaluestore.2.7.0.nupkg.sha512" + }, + "NATS.Client.ObjectStore/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UqD6MjojKm2LCK+wTGSN/lsDe9of9qygFWGSAw1m6p9eoey1HnEVH0MKqItqAKUgsuyaaZaB999/S+z6uugGQg==", + "path": "nats.client.objectstore/2.7.0", + "hashPath": "nats.client.objectstore.2.7.0.nupkg.sha512" + }, + "NATS.Client.Serializers.Json/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-13R0EvJae6dXhcfdBX29LadDdc+0SPWVp0HdAQH4D7H3Eyd2/0jxgrLNH9nlZM8lo3tSk/iDojP7e+VQjlzM1w==", + "path": "nats.client.serializers.json/2.7.0", + "hashPath": "nats.client.serializers.json.2.7.0.nupkg.sha512" + }, + "NATS.Client.Services/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EEs4ibYIwg/pP/bBPhn+K3eDfNBehTisGs2L+eZv7e+eHfBHcjSvAfbEhhyACMuFSuTROWpBaiFAH4xCWgdnbA==", + "path": "nats.client.services/2.7.0", + "hashPath": "nats.client.services.2.7.0.nupkg.sha512" + }, + "NATS.Client.Simplified/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8HU5stAU/xpQr7OyGaZbkjJGeq7hcukUUdcme4sOBiSUrjWpfgJTYeFmwFQHALFah9dkm1EYrHp1RND6lLSJTA==", + "path": "nats.client.simplified/2.7.0", + "hashPath": "nats.client.simplified.2.7.0.nupkg.sha512" + }, + "NATS.Net/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-89IrKEUb/kOzzcQ+J5SKAKmlRybRklllZKa1/LuBNkn3BblIUHYXku6JibN1wWr02HgJGH+OMYBZ0SVX1+HnCA==", + "path": "nats.net/2.7.0", + "hashPath": "nats.net.2.7.0.nupkg.sha512" + }, + "NetTopologySuite/2.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5/+2O2ADomEdUn09mlSigACdqvAf0m/pVPGtIPEPQWnyrVykYY0NlfXLIdkMgi41kvH9kNrPqYaFBTZtHYH7Xw==", + "path": "nettopologysuite/2.5.0", + "hashPath": "nettopologysuite.2.5.0.nupkg.sha512" + }, + "NetTopologySuite.IO.PostGis/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3W8XTFz8iP6GQ5jDXK1/LANHiU+988k1kmmuPWNKcJLpmSg6CvFpbTpz+s4+LBzkAp64wHGOldSlkSuzYfrIKA==", + "path": "nettopologysuite.io.postgis/2.1.0", + "hashPath": "nettopologysuite.io.postgis.2.1.0.nupkg.sha512" + }, + "NewId/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jegBasNndmG21G3BmT51suFDCIz/sLN81j+IxmkZ4iWoaDi8LygeHiyNnYbXz5OQh9nCRJFIx1+PJrlYi1Gc9Q==", + "path": "newid/4.0.1", + "hashPath": "newid.4.0.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.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", + "path": "npgsql/10.0.0", + "hashPath": "npgsql.10.0.0.nupkg.sha512" + }, + "Npgsql.DependencyInjection/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-htuxMDQ7nHgadPxoO6XXVvSgYcVierLrhzOoamyUchvC4oHnYdD05zZ0dYsq80DN0vco9t/Vp+ZxYvnfJxbhIg==", + "path": "npgsql.dependencyinjection/10.0.0", + "hashPath": "npgsql.dependencyinjection.10.0.0.nupkg.sha512" + }, + "Npgsql.Json.NET/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Eunq7mqatJujFOaZMdiWT9N7eUXHEFxe4IX/PeN8Nt1BpNYjzF2tPlmqR90EvuGT3tiEicmj4xDviC0UcPwM1w==", + "path": "npgsql.json.net/9.0.4", + "hashPath": "npgsql.json.net.9.0.4.nupkg.sha512" + }, + "Npgsql.NetTopologySuite/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7AwBLPz8EPmgAXveZ55K0Tz/9bNb8j4VI4pkTOQjyHrce8wWfAA9pefm3REidy+Kt2UFiAWef34YVi7sb/kB4A==", + "path": "npgsql.nettopologysuite/9.0.4", + "hashPath": "npgsql.nettopologysuite.9.0.4.nupkg.sha512" + }, + "Npgsql.OpenTelemetry/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eftmCZWng874x4iSfQyfF+PpnfA6hloHGQ3EzELVhRyPOEHcMygxSXhx4KI8HKu/Qg8uK1MF5tcwOVhwL7duJw==", + "path": "npgsql.opentelemetry/10.0.0", + "hashPath": "npgsql.opentelemetry.10.0.0.nupkg.sha512" + }, + "OpenTelemetry/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aiPBAr1+0dPDItH++MQQr5UgMf4xiybruzNlAoYYMYN3UUk+mGRcoKuZy4Z4rhhWUZIpK2Xhe7wUUXSTM32duQ==", + "path": "opentelemetry/1.14.0", + "hashPath": "opentelemetry.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Api/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-foHci6viUw1f3gUB8qzz3Rk02xZIWMo299X0rxK0MoOWok/3dUVru+KKdY7WIoSHwRGpxGKkmAz9jIk2RFNbsQ==", + "path": "opentelemetry.api/1.14.0", + "hashPath": "opentelemetry.api.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/lxOM92v+zU5I0rGl5tXAGz6EJtxk2MvzZ0VN6F6L5pMqT6s6RCXnGWXg6fW+vtZJsllBlQaf/VLPTzgefJpg==", + "path": "opentelemetry.api.providerbuilderextensions/1.14.0", + "hashPath": "opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7ELExeje+T/KOywHuHwZBGQNtYlepUaYRFXWgoEaT1iKpFJVwOlE1Y2+uqHI2QQmah0Ue+XgRmDy924vWHfJ6Q==", + "path": "opentelemetry.exporter.opentelemetryprotocol/1.14.0", + "hashPath": "opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZAxkCIa3Q3YWZ1sGrolXfkhPqn2PFSz2Cel74em/fATZgY5ixlw6MQp2icmqKCz4C7M1W2G0b92K3rX8mOtFRg==", + "path": "opentelemetry.extensions.hosting/1.14.0", + "hashPath": "opentelemetry.extensions.hosting.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NQAQpFa3a4ofPUYwxcwtNPGpuRNwwx1HM7MnLEESYjYkhfhER+PqqGywW65rWd7bJEc1/IaL+xbmHH99pYDE0A==", + "path": "opentelemetry.instrumentation.aspnetcore/1.14.0", + "hashPath": "opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uH8X1fYnywrgaUrSbemKvFiFkBwY7ZbBU7Wh4A/ORQmdpF3G/5STidY4PlK4xYuIv9KkdMXH/vkpvzQcayW70g==", + "path": "opentelemetry.instrumentation.http/1.14.0", + "hashPath": "opentelemetry.instrumentation.http.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6o4JDOQaKv6bInAYZxuyxxfMKr6hFpwLnKEgQ+q+oBNA9Fm1sysjFCOzRzk7U0WD86LsRPXX+chv1vJIg7cfg==", + "path": "opentelemetry.instrumentation.runtime/1.14.0", + "hashPath": "opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512" + }, + "Polly.Core/8.6.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t+sUVrIwvo7UmsgHGgOG9F0GDZSRIm47u2ylH17Gvcv1q5hNEwgD5GoBlFyc0kh/pebmPyrAgvGsR/65ZBaXlg==", + "path": "polly.core/8.6.5", + "hashPath": "polly.core.8.6.5.nupkg.sha512" + }, + "Polly.Extensions/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GZ9vRVmR0jV2JtZavt+pGUsQ1O1cuRKG7R7VOZI6ZDy9y6RNPvRvXK1tuS4ffUrv8L0FTea59oEuQzgS0R7zSA==", + "path": "polly.extensions/8.4.2", + "hashPath": "polly.extensions.8.4.2.nupkg.sha512" + }, + "Polly.RateLimiting/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehTImQ/eUyO07VYW2WvwSmU9rRH200SKJ/3jku9rOkyWE0A2JxNFmAVms8dSn49QLSjmjFRRSgfNyOgr/2PSmA==", + "path": "polly.ratelimiting/8.4.2", + "hashPath": "polly.ratelimiting.8.4.2.nupkg.sha512" + }, + "Spectre.Console/0.53.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m2iv8Egfywp7FaNLKCmCFHbSf36D4ctzZKvlAK9NXMyGLh6L+CnrZWK8o+LOYsoAS1jtoHn0W1BT0W8vuq/FUw==", + "path": "spectre.console/0.53.0", + "hashPath": "spectre.console.0.53.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" + }, + "Weasel.Core/8.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aNlEmFqgJ3GGgVmEAVOiUFN10m/OzL5fYP22FeVhd6jrN9rj0daJnxhkA+f00gkXcAVgx6LidsWVBnsmxLhIIw==", + "path": "weasel.core/8.5.0", + "hashPath": "weasel.core.8.5.0.nupkg.sha512" + }, + "Weasel.Postgresql/8.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4a8Had3NmSw1HR2U2wVqN7ho0Q5mo4RLwYMk4v/4xGm8nqEB2WKMRCaGNbFss+p+LxWimyiikMabM0q46bd2/w==", + "path": "weasel.postgresql/8.5.0", + "hashPath": "weasel.postgresql.8.5.0.nupkg.sha512" + }, + "WolverineFx/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FB5Yo6M0SyQWDgHz2EjwQcflhrjRd9mERV6/N6WHQHJO1kW8fSxEIcOHndhikcVkZvmhUdwu5PW4V4ypEmpKTA==", + "path": "wolverinefx/5.13.0", + "hashPath": "wolverinefx.5.13.0.nupkg.sha512" + }, + "WolverineFx.Marten/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s6nzaLC/CmLc3VsBspeCUXv3/hjJOpoCEIUtQX1316rB+hOq18axSywtidNLkWNMC6N6+86WJuCqoVPXvW/YSQ==", + "path": "wolverinefx.marten/5.13.0", + "hashPath": "wolverinefx.marten.5.13.0.nupkg.sha512" + }, + "WolverineFx.Nats/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8GN8uwRX56vp3fN8KSQqrEYlAtAKoOz1ZpCckZCsr15sP8eoE+Sa5wfzkGQ186cAYnkBa2P0yMlr1QRCmHYaYQ==", + "path": "wolverinefx.nats/5.13.0", + "hashPath": "wolverinefx.nats.5.13.0.nupkg.sha512" + }, + "WolverineFx.Postgresql/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ntzQeLiJmdDuvmSK0aJaKT1fX2iBdNXncVPg1B81r90CLHSv32aqBVwXFzPtBJkIWaAhCzzWu/vy3tNH9d4QjA==", + "path": "wolverinefx.postgresql/5.13.0", + "hashPath": "wolverinefx.postgresql.5.13.0.nupkg.sha512" + }, + "WolverineFx.RDBMS/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Het8JdsausBm0q8GJ24QWvONsxRQ1n+j1HIWZI5jXbgPmlPv1MWPfwH3rm0Q4okYpP/1WIj7470sJbkOj46GnA==", + "path": "wolverinefx.rdbms/5.13.0", + "hashPath": "wolverinefx.rdbms.5.13.0.nupkg.sha512" + }, + "Messages/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "ServiceDefaults/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.dll new file mode 100644 index 0000000..4878101 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.pdb b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.pdb new file mode 100644 index 0000000..dd7ab30 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.pdb differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.runtimeconfig.json b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.runtimeconfig.json new file mode 100644 index 0000000..ed5401a --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "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.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.staticwebassets.endpoints.json b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Aspire.Npgsql.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Aspire.Npgsql.dll new file mode 100755 index 0000000..adf6023 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Aspire.Npgsql.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/DistributedLock.Core.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/DistributedLock.Core.dll new file mode 100755 index 0000000..a4870d3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/DistributedLock.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/DistributedLock.Postgres.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/DistributedLock.Postgres.dll new file mode 100755 index 0000000..82952aa Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/DistributedLock.Postgres.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/FSharp.Core.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/FSharp.Core.dll new file mode 100755 index 0000000..ea0b963 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/FSharp.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/FastExpressionCompiler.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/FastExpressionCompiler.dll new file mode 100755 index 0000000..c10a22c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/FastExpressionCompiler.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/HealthChecks.NpgSql.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/HealthChecks.NpgSql.dll new file mode 100755 index 0000000..3c061a9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/HealthChecks.NpgSql.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Humanizer.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Humanizer.dll new file mode 100755 index 0000000..c9a7ef8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Humanizer.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/JasperFx.Events.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/JasperFx.Events.dll new file mode 100755 index 0000000..cac36d5 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/JasperFx.Events.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll new file mode 100755 index 0000000..cb1f7fd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/JasperFx.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/JasperFx.dll new file mode 100755 index 0000000..bb9accf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/JasperFx.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Marten.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Marten.dll new file mode 100755 index 0000000..c9cf208 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Marten.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Messages.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Messages.dll new file mode 100644 index 0000000..95f77d9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Messages.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Messages.pdb b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Messages.pdb new file mode 100644 index 0000000..872a410 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Messages.pdb differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100755 index 0000000..e982c02 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll new file mode 100755 index 0000000..ca7722c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll new file mode 100755 index 0000000..ec6ffbf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100755 index 0000000..ab1265c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100755 index 0000000..dc1f35d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll new file mode 100755 index 0000000..8d0876e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll new file mode 100755 index 0000000..c56e604 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll new file mode 100755 index 0000000..6b7962d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100755 index 0000000..7135704 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll new file mode 100755 index 0000000..f54bd93 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll new file mode 100755 index 0000000..e9dbcea Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll new file mode 100755 index 0000000..f7faed9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll new file mode 100755 index 0000000..595c65d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll new file mode 100755 index 0000000..4f63d2a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll new file mode 100755 index 0000000..46dd33d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll new file mode 100755 index 0000000..a5749cd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll new file mode 100755 index 0000000..adb9d3f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll new file mode 100755 index 0000000..acbd79f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll new file mode 100755 index 0000000..5804085 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll new file mode 100755 index 0000000..f472139 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll new file mode 100755 index 0000000..3cbddc0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Abstractions.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Abstractions.dll new file mode 100755 index 0000000..a3c7d6a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Core.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Core.dll new file mode 100755 index 0000000..39790f8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Hosting.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Hosting.dll new file mode 100755 index 0000000..deefdbf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.JetStream.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.JetStream.dll new file mode 100755 index 0000000..cb29478 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.JetStream.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll new file mode 100755 index 0000000..e1213bb Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.ObjectStore.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.ObjectStore.dll new file mode 100755 index 0000000..fd0c6d4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.ObjectStore.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll new file mode 100755 index 0000000..67c26e2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Services.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Services.dll new file mode 100755 index 0000000..d73c5d2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Services.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Simplified.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Simplified.dll new file mode 100755 index 0000000..6bce2aa Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Simplified.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Net.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Net.dll new file mode 100755 index 0000000..8445f86 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Net.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NetTopologySuite.IO.PostGis.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NetTopologySuite.IO.PostGis.dll new file mode 100755 index 0000000..658dcf3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NetTopologySuite.IO.PostGis.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NetTopologySuite.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NetTopologySuite.dll new file mode 100755 index 0000000..8460083 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NetTopologySuite.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NewId.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NewId.dll new file mode 100755 index 0000000..33f918f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NewId.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Newtonsoft.Json.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Newtonsoft.Json.dll new file mode 100755 index 0000000..d035c38 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Newtonsoft.Json.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.DependencyInjection.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.DependencyInjection.dll new file mode 100755 index 0000000..0a2440b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.DependencyInjection.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.Json.NET.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.Json.NET.dll new file mode 100755 index 0000000..651d13b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.Json.NET.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.NetTopologySuite.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.NetTopologySuite.dll new file mode 100755 index 0000000..5cc39e4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.NetTopologySuite.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.OpenTelemetry.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.OpenTelemetry.dll new file mode 100755 index 0000000..de42906 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.OpenTelemetry.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.dll new file mode 100755 index 0000000..1207ef0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll new file mode 100755 index 0000000..f46a6fd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Api.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Api.dll new file mode 100755 index 0000000..2eddb36 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Api.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll new file mode 100755 index 0000000..5f1882e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll new file mode 100755 index 0000000..a817a7a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll new file mode 100755 index 0000000..fd25ac6 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll new file mode 100755 index 0000000..18c61ed Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll new file mode 100755 index 0000000..2d825dd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.dll new file mode 100755 index 0000000..7cc4ece Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Polly.Core.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Polly.Core.dll new file mode 100755 index 0000000..57eae20 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Polly.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Polly.Extensions.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Polly.Extensions.dll new file mode 100755 index 0000000..312cf8e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Polly.Extensions.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Polly.RateLimiting.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Polly.RateLimiting.dll new file mode 100755 index 0000000..e29985e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Polly.RateLimiting.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ServiceDefaults.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ServiceDefaults.dll new file mode 100644 index 0000000..f8273ad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ServiceDefaults.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ServiceDefaults.pdb b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ServiceDefaults.pdb new file mode 100644 index 0000000..eafc129 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ServiceDefaults.pdb differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Spectre.Console.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Spectre.Console.dll new file mode 100755 index 0000000..d1b571d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Spectre.Console.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.AttributedModel.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.AttributedModel.dll new file mode 100755 index 0000000..2664688 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.AttributedModel.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.Convention.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.Convention.dll new file mode 100755 index 0000000..40f6537 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.Convention.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.Hosting.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.Hosting.dll new file mode 100755 index 0000000..b1cce85 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.Runtime.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.Runtime.dll new file mode 100755 index 0000000..c30bbbb Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.Runtime.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.TypedParts.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.TypedParts.dll new file mode 100755 index 0000000..1556319 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.TypedParts.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Weasel.Core.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Weasel.Core.dll new file mode 100755 index 0000000..6bd8cda Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Weasel.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Weasel.Postgresql.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Weasel.Postgresql.dll new file mode 100755 index 0000000..67128b8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Weasel.Postgresql.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.Marten.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.Marten.dll new file mode 100755 index 0000000..ce47d1e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.Marten.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.Nats.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.Nats.dll new file mode 100755 index 0000000..009f0d3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.Nats.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.Postgresql.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.Postgresql.dll new file mode 100755 index 0000000..8bb0c73 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.Postgresql.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.RDBMS.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.RDBMS.dll new file mode 100755 index 0000000..69aa0c3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.RDBMS.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.dll new file mode 100755 index 0000000..ad44ea4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/appsettings.Development.json b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/appsettings.json b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/appsettings.json new file mode 100644 index 0000000..1d96cd3 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/appsettings.json @@ -0,0 +1,11 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning", + "Npgsql": "Warning", + "Wolverine": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/FSharp.Core.resources.dll new file mode 100755 index 0000000..ca78e99 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..5026d91 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..fa3b62e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..de0032e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..f5dae0b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..c3e5620 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..8dd116e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..9c9e5c3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..fe7a8c8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/FSharp.Core.resources.dll new file mode 100755 index 0000000..2b527ff Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..87e10b0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..3a2887c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..3bef0e7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..1ac21c1 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..201b964 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..7d60e32 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..5e1cc23 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..71227fc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/FSharp.Core.resources.dll new file mode 100755 index 0000000..d84c77f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..ce491fd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..3a50733 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..7b14221 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..eabc7a9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..ccd63e9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..2aa2e42 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..de991ad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..ffe4e81 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/FSharp.Core.resources.dll new file mode 100755 index 0000000..1fa7684 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..bdf9041 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..4eb6122 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..35b8d36 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..6224d3d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..8153da0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..24a6fc9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..ae46f62 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..2870de8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/FSharp.Core.resources.dll new file mode 100755 index 0000000..8e1e203 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..b824665 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..31d7841 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..4f5ea19 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..a128ff1 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..5ef0d16 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..83f0214 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c62df50 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..738856c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/FSharp.Core.resources.dll new file mode 100755 index 0000000..ad7a56f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..db113c0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..118b9b8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..8d5c43a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..c8b03b8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..76732af Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..36a413b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c88dd66 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..7400f4a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/FSharp.Core.resources.dll new file mode 100755 index 0000000..5cdab69 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..87b7088 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..036e931 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..7305396 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..7e0e174 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..72007ca Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..8b9768e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..adead79 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9f8ffe3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/FSharp.Core.resources.dll new file mode 100755 index 0000000..a561919 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..93476d2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..e318959 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..89c6efc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..a1d9ec3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..1e49360 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..6d9c7ac Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..82b3fa2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9db06d4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/FSharp.Core.resources.dll new file mode 100755 index 0000000..f90631f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..e75f09f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..8be5aa7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..a263248 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..5280b0d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..1d0ce8a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..f4d5744 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..3a16748 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..8b9f7ce Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/FSharp.Core.resources.dll new file mode 100755 index 0000000..304fc82 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..33a7463 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..bd7b2a2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..6feb49f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..5004e0d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..3049968 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..5f5481b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..413ac6a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..b5e3f64 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/FSharp.Core.resources.dll new file mode 100755 index 0000000..4ba4a10 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..3e0a242 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..c219a07 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..6697523 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..506eb95 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..6095bb4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..65c17bf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..28739df Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..e5f35c2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/FSharp.Core.resources.dll new file mode 100755 index 0000000..5077036 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..b64fcad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..215fe77 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..53d30cc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..a71ab8b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..89ab7dc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..b317bb4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c1b4544 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..712df48 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/FSharp.Core.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/FSharp.Core.resources.dll new file mode 100755 index 0000000..6370812 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/FSharp.Core.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..64f8c0f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..d96f8c8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..23c31b7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..8c58451 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..129e754 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..75fb189 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..7d3ed5d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..14fee21 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/ApiTwo.csproj.nuget.dgspec.json b/wolverine-nats/WolverineAndNats/ApiTwo/obj/ApiTwo.csproj.nuget.dgspec.json new file mode 100644 index 0000000..be31016 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/ApiTwo.csproj.nuget.dgspec.json @@ -0,0 +1,1344 @@ +{ + "format": 1, + "restore": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/ApiTwo.csproj": {} + }, + "projects": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/ApiTwo.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/ApiTwo.csproj", + "projectName": "ApiTwo", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/ApiTwo.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj" + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Aspire.Npgsql": { + "target": "Package", + "version": "[13.1.0, )" + }, + "WolverineFx.Marten": { + "target": "Package", + "version": "[5.13.0, )" + }, + "WolverineFx.Nats": { + "target": "Package", + "version": "[5.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj", + "projectName": "Messages", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj", + "projectName": "ServiceDefaults", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.Extensions.Http.Resilience": { + "target": "Package", + "version": "[10.1.0, )" + }, + "Microsoft.Extensions.ServiceDiscovery": { + "target": "Package", + "version": "[10.1.0, )" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Extensions.Hosting": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.AspNetCore": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.Http": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.Runtime": { + "target": "Package", + "version": "[1.14.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/ApiTwo.csproj.nuget.g.props b/wolverine-nats/WolverineAndNats/ApiTwo/obj/ApiTwo.csproj.nuget.g.props new file mode 100644 index 0000000..1e40171 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/ApiTwo.csproj.nuget.g.props @@ -0,0 +1,22 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/jeffrygonzalez/.nuget/packages/ + /Users/jeffrygonzalez/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + + + /Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.analyzers/3.11.0 + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/ApiTwo.csproj.nuget.g.targets b/wolverine-nats/WolverineAndNats/ApiTwo/obj/ApiTwo.csproj.nuget.g.targets new file mode 100644 index 0000000..18a4474 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/ApiTwo.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.AssemblyInfo.cs b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.AssemblyInfo.cs new file mode 100644 index 0000000..9df5d42 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ApiTwo")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+029fc808861743407d1014ffb7cabf40b443645a")] +[assembly: System.Reflection.AssemblyProductAttribute("ApiTwo")] +[assembly: System.Reflection.AssemblyTitleAttribute("ApiTwo")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.AssemblyInfoInputs.cache b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.AssemblyInfoInputs.cache new file mode 100644 index 0000000..32b1dcb --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +684a6dc5ce4081dbe77945def0f3569c977e57850a1bfc3e106c588e8ae3a76d diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.GeneratedMSBuildEditorConfig.editorconfig b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..eda1124 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,31 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFramework = net10.0 +build_property.TargetPlatformMinVersion = +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.RootNamespace = ApiTwo +build_property.RootNamespace = ApiTwo +build_property.ProjectDir = /Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.GlobalUsings.g.cs b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.GlobalUsings.g.cs new file mode 100644 index 0000000..5e6145d --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.MvcApplicationPartsAssemblyInfo.cache b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.assets.cache b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.assets.cache new file mode 100644 index 0000000..8821074 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.assets.cache differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.AssemblyReference.cache b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.AssemblyReference.cache new file mode 100644 index 0000000..9c7a588 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.AssemblyReference.cache differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.CoreCompileInputs.cache b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..637bcce --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +962d8a38a90a7cebd54b21d64d865fc12af25379ffb3305da2fb56fef90fe9d3 diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.FileListAbsolute.txt b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..29a1631 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.FileListAbsolute.txt @@ -0,0 +1,227 @@ +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/appsettings.Development.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/appsettings.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.staticwebassets.endpoints.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.deps.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.runtimeconfig.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ApiTwo.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Aspire.Npgsql.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/HealthChecks.NpgSql.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/DistributedLock.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/DistributedLock.Postgres.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/FastExpressionCompiler.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/FSharp.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Humanizer.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/JasperFx.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/JasperFx.Events.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Marten.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.JetStream.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.ObjectStore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Services.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Client.Simplified.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NATS.Net.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NetTopologySuite.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NetTopologySuite.IO.PostGis.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/NewId.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Newtonsoft.Json.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.DependencyInjection.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.Json.NET.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.NetTopologySuite.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Npgsql.OpenTelemetry.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Api.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Polly.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Polly.Extensions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Polly.RateLimiting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Spectre.Console.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.AttributedModel.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.Convention.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.Runtime.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/System.Composition.TypedParts.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Weasel.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Weasel.Postgresql.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.Marten.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.Nats.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.Postgresql.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Wolverine.RDBMS.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/FSharp.Core.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Messages.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ServiceDefaults.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/Messages.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/bin/Debug/net10.0/ServiceDefaults.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.AssemblyReference.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/rpswa.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.GeneratedMSBuildEditorConfig.editorconfig +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.AssemblyInfoInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.AssemblyInfo.cs +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.CoreCompileInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.MvcApplicationPartsAssemblyInfo.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.sourcelink.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/rjimswa.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/scopedcss/bundle/ApiTwo.styles.css +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/staticwebassets.build.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/staticwebassets.build.json.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/staticwebassets.development.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/swae.build.ex.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.Up2Date +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/refint/ApiTwo.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.genruntimeconfig.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ref/ApiTwo.dll diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.Up2Date b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.dll b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.dll new file mode 100644 index 0000000..4878101 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.genruntimeconfig.cache b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.genruntimeconfig.cache new file mode 100644 index 0000000..a0f178c --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.genruntimeconfig.cache @@ -0,0 +1 @@ +63b9951e3b0fa81e122d5952ee80d2eff8c6177fb26598e06e89326c7d156a23 diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.pdb b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.pdb new file mode 100644 index 0000000..dd7ab30 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.pdb differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.sourcelink.json b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.sourcelink.json new file mode 100644 index 0000000..a43e21e --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ApiTwo.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/Users/jeffrygonzalez/work/reference/*":"https://raw.githubusercontent.com/HypertheoryTraining/reference/029fc808861743407d1014ffb7cabf40b443645a/*"}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/apphost b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/apphost new file mode 100755 index 0000000..d3e5d7a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/apphost differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ref/ApiTwo.dll b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ref/ApiTwo.dll new file mode 100644 index 0000000..01a354d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/ref/ApiTwo.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/refint/ApiTwo.dll b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/refint/ApiTwo.dll new file mode 100644 index 0000000..01a354d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/refint/ApiTwo.dll differ diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..b14feae --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"SELz9Pli6HMnwXzHSNFUpO2HGRhONd1fcu/4Ymwl78Q=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["3SGVLc\u002BP1kZDvSRkWBP\u002BLgprfGB3DqCVrZIGFZw1FPM=","dJP7Cg/LQoNEZd8uRzd/XycAykO7lIUL5mAhAql5hBE=","VghY0Bp6M72YOGgCJK1wnLwbQNpIsiYVxSwyD0jdMQw=","giD0yo26sF9ibLe4mEZmy8gEgjhex2n7kp22Ph0xAWs="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..d8c7ba4 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"5AEyuzDkB836BcL6jUcN2PfLMRLc/+Gr5aMMBj2pRS0=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["3SGVLc\u002BP1kZDvSRkWBP\u002BLgprfGB3DqCVrZIGFZw1FPM=","dJP7Cg/LQoNEZd8uRzd/XycAykO7lIUL5mAhAql5hBE=","VghY0Bp6M72YOGgCJK1wnLwbQNpIsiYVxSwyD0jdMQw=","giD0yo26sF9ibLe4mEZmy8gEgjhex2n7kp22Ph0xAWs="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/rpswa.dswa.cache.json b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..4639d71 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"xiPmXH0BpLPe0eF388kEo5sO7xwb8XqbCuEVgcnJGLo=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["3SGVLc\u002BP1kZDvSRkWBP\u002BLgprfGB3DqCVrZIGFZw1FPM=","dJP7Cg/LQoNEZd8uRzd/XycAykO7lIUL5mAhAql5hBE="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/staticwebassets.build.json b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..1e8642c --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"D9hXtOfj8Sy+T8Pa7WK3uyDGigxqQ6fs9IW+cyfjAUA=","Source":"ApiTwo","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/staticwebassets.build.json.cache b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..b84173d --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +D9hXtOfj8Sy+T8Pa7WK3uyDGigxqQ6fs9IW+cyfjAUA= \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/swae.build.ex.cache b/wolverine-nats/WolverineAndNats/ApiTwo/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/project.assets.json b/wolverine-nats/WolverineAndNats/ApiTwo/obj/project.assets.json new file mode 100644 index 0000000..304b3cb --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/project.assets.json @@ -0,0 +1,5009 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Aspire.Npgsql/13.1.0": { + "type": "package", + "dependencies": { + "AspNetCore.HealthChecks.NpgSql": "9.0.0", + "Npgsql.DependencyInjection": "10.0.0", + "Npgsql.OpenTelemetry": "10.0.0", + "OpenTelemetry.Extensions.Hosting": "1.14.0" + }, + "compile": { + "lib/net10.0/Aspire.Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Aspire.Npgsql.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net10.0/Aspire.Npgsql.targets": {} + } + }, + "AspNetCore.HealthChecks.NpgSql/9.0.0": { + "type": "package", + "dependencies": { + "Npgsql": "8.0.3" + }, + "compile": { + "lib/net8.0/HealthChecks.NpgSql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/HealthChecks.NpgSql.dll": { + "related": ".xml" + } + } + }, + "DistributedLock.Core/1.0.8": { + "type": "package", + "compile": { + "lib/net8.0/DistributedLock.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DistributedLock.Core.dll": { + "related": ".xml" + } + } + }, + "DistributedLock.Postgres/1.3.0": { + "type": "package", + "dependencies": { + "DistributedLock.Core": "[1.0.8, 1.1.0)", + "Npgsql": "8.0.6" + }, + "compile": { + "lib/net8.0/DistributedLock.Postgres.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DistributedLock.Postgres.dll": { + "related": ".xml" + } + } + }, + "FastExpressionCompiler/5.3.0": { + "type": "package", + "compile": { + "lib/net9.0/FastExpressionCompiler.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/FastExpressionCompiler.dll": { + "related": ".xml" + } + } + }, + "FSharp.Core/9.0.100": { + "type": "package", + "compile": { + "lib/netstandard2.1/FSharp.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/FSharp.Core.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/netstandard2.1/cs/FSharp.Core.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.1/de/FSharp.Core.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.1/es/FSharp.Core.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.1/fr/FSharp.Core.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.1/it/FSharp.Core.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.1/ja/FSharp.Core.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.1/ko/FSharp.Core.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.1/pl/FSharp.Core.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.1/ru/FSharp.Core.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.1/tr/FSharp.Core.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "ImTools/4.0.0": { + "type": "package", + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + } + }, + "JasperFx/1.17.0": { + "type": "package", + "dependencies": { + "FastExpressionCompiler": "5.3.0", + "ImTools": "4.0.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Polly.Core": "8.6.5", + "Spectre.Console": "0.53.0" + }, + "compile": { + "lib/net10.0/JasperFx.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/JasperFx.dll": { + "related": ".xml" + } + } + }, + "JasperFx.Events/1.17.0": { + "type": "package", + "dependencies": { + "JasperFx": "1.17.0" + }, + "compile": { + "lib/net10.0/JasperFx.Events.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/JasperFx.Events.dll": { + "related": ".xml" + } + } + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "type": "package", + "dependencies": { + "JasperFx": "1.17.0", + "Microsoft.CodeAnalysis": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Scripting": "5.0.0" + }, + "compile": { + "lib/net10.0/JasperFx.RuntimeCompiler.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/JasperFx.RuntimeCompiler.dll": { + "related": ".xml" + } + } + }, + "Marten/8.19.0": { + "type": "package", + "dependencies": { + "FSharp.Core": "9.0.100", + "JasperFx": "1.17.0", + "JasperFx.Events": "1.17.0", + "JasperFx.RuntimeCompiler": "4.3.2", + "Newtonsoft.Json": "13.0.3", + "Npgsql.Json.NET": "9.0.4", + "Weasel.Postgresql": "8.5.0" + }, + "compile": { + "lib/net10.0/Marten.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Marten.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.CodeAnalysis/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "[5.0.0]", + "Microsoft.CodeAnalysis.VisualBasic.Workspaces": "[5.0.0]", + "System.Composition": "9.0.0" + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "type": "package", + "build": { + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {}, + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {} + } + }, + "Microsoft.CodeAnalysis.Common/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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.Scripting/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp": "[5.0.0]", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "Microsoft.CodeAnalysis.Scripting.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp": "[5.0.0]", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[5.0.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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.Scripting/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp.Scripting": "[5.0.0]" + } + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "Microsoft.CodeAnalysis.VisualBasic": "[5.0.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[5.0.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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.Extensions.AmbientMetadata.Application/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Telemetry": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Http.Diagnostics": "10.1.0", + "Microsoft.Extensions.Resilience": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Http.Resilience.targets": {} + } + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Diagnostics.ExceptionSummarization": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0", + "Polly.Extensions": "8.4.2", + "Polly.RateLimiting": "8.4.2" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ServiceDiscovery.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.AmbientMetadata.Application": "10.1.0", + "Microsoft.Extensions.DependencyInjection.AutoActivation": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Compliance.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.props": {}, + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.targets": {} + } + }, + "NATS.Client.Abstractions/2.7.0": { + "type": "package", + "compile": { + "lib/net8.0/NATS.Client.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Abstractions.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Core/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Core.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Hosting/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.JetStream/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.KeyValueStore/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.ObjectStore/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Serializers.Json/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Services/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Services.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Services.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Simplified/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "related": ".xml" + } + } + }, + "NATS.Net/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Hosting": "2.7.0", + "NATS.Client.JetStream": "2.7.0", + "NATS.Client.KeyValueStore": "2.7.0", + "NATS.Client.ObjectStore": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0", + "NATS.Client.Services": "2.7.0", + "NATS.Client.Simplified": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Net.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Net.dll": { + "related": ".xml" + } + } + }, + "NetTopologySuite/2.5.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NetTopologySuite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/NetTopologySuite.dll": { + "related": ".xml" + } + } + }, + "NetTopologySuite.IO.PostGis/2.1.0": { + "type": "package", + "dependencies": { + "NetTopologySuite": "[2.0.0, 3.0.0-A)" + }, + "compile": { + "lib/netstandard2.1/NetTopologySuite.IO.PostGis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/NetTopologySuite.IO.PostGis.dll": { + "related": ".xml" + } + } + }, + "NewId/4.0.1": { + "type": "package", + "compile": { + "lib/net6.0/NewId.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/NewId.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Npgsql/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Npgsql": "10.0.0" + }, + "compile": { + "lib/net8.0/Npgsql.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "Npgsql.Json.NET/9.0.4": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "Npgsql": "9.0.4" + }, + "compile": { + "lib/net6.0/Npgsql.Json.NET.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Npgsql.Json.NET.dll": { + "related": ".xml" + } + } + }, + "Npgsql.NetTopologySuite/9.0.4": { + "type": "package", + "dependencies": { + "NetTopologySuite": "2.5.0", + "NetTopologySuite.IO.PostGIS": "2.1.0", + "Npgsql": "9.0.4" + }, + "compile": { + "lib/net6.0/Npgsql.NetTopologySuite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Npgsql.NetTopologySuite.dll": { + "related": ".xml" + } + } + }, + "Npgsql.OpenTelemetry/10.0.0": { + "type": "package", + "dependencies": { + "Npgsql": "10.0.0", + "OpenTelemetry.API": "1.14.0" + }, + "compile": { + "lib/net8.0/Npgsql.OpenTelemetry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.OpenTelemetry.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Api/1.14.0": { + "type": "package", + "compile": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "related": ".xml" + } + } + }, + "Polly.Core/8.6.5": { + "type": "package", + "compile": { + "lib/net8.0/Polly.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Polly.Extensions/8.4.2": { + "type": "package", + "dependencies": { + "Polly.Core": "8.4.2" + }, + "compile": { + "lib/net8.0/Polly.Extensions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.Extensions.dll": { + "related": ".pdb;.xml" + } + } + }, + "Polly.RateLimiting/8.4.2": { + "type": "package", + "dependencies": { + "Polly.Core": "8.4.2" + }, + "compile": { + "lib/net8.0/Polly.RateLimiting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.RateLimiting.dll": { + "related": ".pdb;.xml" + } + } + }, + "Spectre.Console/0.53.0": { + "type": "package", + "compile": { + "lib/net9.0/Spectre.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Spectre.Console.dll": { + "related": ".xml" + } + } + }, + "System.Composition/9.0.0": { + "type": "package", + "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" + }, + "compile": { + "lib/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.AttributedModel/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Convention/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Hosting/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.Runtime": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Runtime/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.TypedParts/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Weasel.Core/8.5.0": { + "type": "package", + "dependencies": { + "JasperFx": "1.11.3" + }, + "compile": { + "lib/net10.0/Weasel.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Weasel.Core.dll": { + "related": ".xml" + } + } + }, + "Weasel.Postgresql/8.5.0": { + "type": "package", + "dependencies": { + "DistributedLock.Postgres": "1.3.0", + "Npgsql": "9.0.4", + "Npgsql.NetTopologySuite": "9.0.4", + "Weasel.Core": "8.5.0" + }, + "compile": { + "lib/net10.0/Weasel.Postgresql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Weasel.Postgresql.dll": { + "related": ".xml" + } + } + }, + "WolverineFx/5.13.0": { + "type": "package", + "dependencies": { + "JasperFx": "1.17.0", + "JasperFx.Events": "1.17.0", + "JasperFx.RuntimeCompiler": "4.3.2", + "NewId": "4.0.1", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net10.0/Wolverine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.dll": { + "related": ".xml" + } + } + }, + "WolverineFx.Marten/5.13.0": { + "type": "package", + "dependencies": { + "Marten": "8.19.0", + "WolverineFx.Postgresql": "5.13.0" + }, + "compile": { + "lib/net10.0/Wolverine.Marten.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.Marten.dll": { + "related": ".xml" + } + } + }, + "WolverineFx.Nats/5.13.0": { + "type": "package", + "dependencies": { + "NATS.Net": "2.7.0", + "WolverineFx": "5.13.0" + }, + "compile": { + "lib/net10.0/Wolverine.Nats.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.Nats.dll": { + "related": ".xml" + } + } + }, + "WolverineFx.Postgresql/5.13.0": { + "type": "package", + "dependencies": { + "Weasel.Postgresql": "8.5.0", + "WolverineFx.RDBMS": "5.13.0" + }, + "compile": { + "lib/net10.0/Wolverine.Postgresql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.Postgresql.dll": { + "related": ".xml" + } + } + }, + "WolverineFx.RDBMS/5.13.0": { + "type": "package", + "dependencies": { + "Weasel.Core": "8.5.0", + "WolverineFx": "5.13.0" + }, + "compile": { + "lib/net10.0/Wolverine.RDBMS.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.RDBMS.dll": { + "related": ".xml" + } + } + }, + "Messages/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/Messages.dll": {} + }, + "runtime": { + "bin/placeholder/Messages.dll": {} + } + }, + "ServiceDefaults/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Microsoft.Extensions.Http.Resilience": "10.1.0", + "Microsoft.Extensions.ServiceDiscovery": "10.1.0", + "OpenTelemetry.Exporter.OpenTelemetryProtocol": "1.14.0", + "OpenTelemetry.Extensions.Hosting": "1.14.0", + "OpenTelemetry.Instrumentation.AspNetCore": "1.14.0", + "OpenTelemetry.Instrumentation.Http": "1.14.0", + "OpenTelemetry.Instrumentation.Runtime": "1.14.0" + }, + "compile": { + "bin/placeholder/ServiceDefaults.dll": {} + }, + "runtime": { + "bin/placeholder/ServiceDefaults.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "Aspire.Npgsql/13.1.0": { + "sha512": "TaxFv4W11jqDoA8KHzJsaQ5PlAOHQfYCv0PqOt2nn6rPlcT+KZuzBSnAVlKQ1M5+nW2T9D+Zdi9vhXvPVz2R/w==", + "type": "package", + "path": "aspire.npgsql/13.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ConfigurationSchema.json", + "Icon.png", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "aspire.npgsql.13.1.0.nupkg.sha512", + "aspire.npgsql.nuspec", + "buildTransitive/net10.0/Aspire.Npgsql.targets", + "buildTransitive/net8.0/Aspire.Npgsql.targets", + "buildTransitive/net9.0/Aspire.Npgsql.targets", + "lib/net10.0/Aspire.Npgsql.dll", + "lib/net10.0/Aspire.Npgsql.xml", + "lib/net8.0/Aspire.Npgsql.dll", + "lib/net8.0/Aspire.Npgsql.xml", + "lib/net9.0/Aspire.Npgsql.dll", + "lib/net9.0/Aspire.Npgsql.xml" + ] + }, + "AspNetCore.HealthChecks.NpgSql/9.0.0": { + "sha512": "npc58/AD5zuVxERdhCl2Kb7WnL37mwX42SJcXIwvmEig0/dugOLg3SIwtfvvh3TnvTwR/sk5LYNkkPaBdks61A==", + "type": "package", + "path": "aspnetcore.healthchecks.npgsql/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "aspnetcore.healthchecks.npgsql.9.0.0.nupkg.sha512", + "aspnetcore.healthchecks.npgsql.nuspec", + "icon.png", + "lib/net8.0/HealthChecks.NpgSql.dll", + "lib/net8.0/HealthChecks.NpgSql.xml", + "lib/netstandard2.0/HealthChecks.NpgSql.dll", + "lib/netstandard2.0/HealthChecks.NpgSql.xml" + ] + }, + "DistributedLock.Core/1.0.8": { + "sha512": "LAOsY8WxX8JU/n3lfXFz+f2pfnv0+4bHkCrOO3bwa28u9HrS3DlxSG6jf+u76SqesKs+KehZi0CndkfaUXBKvg==", + "type": "package", + "path": "distributedlock.core/1.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "distributedlock.core.1.0.8.nupkg.sha512", + "distributedlock.core.nuspec", + "lib/net462/DistributedLock.Core.dll", + "lib/net462/DistributedLock.Core.xml", + "lib/net8.0/DistributedLock.Core.dll", + "lib/net8.0/DistributedLock.Core.xml", + "lib/netstandard2.0/DistributedLock.Core.dll", + "lib/netstandard2.0/DistributedLock.Core.xml", + "lib/netstandard2.1/DistributedLock.Core.dll", + "lib/netstandard2.1/DistributedLock.Core.xml", + "package.readme.md" + ] + }, + "DistributedLock.Postgres/1.3.0": { + "sha512": "CyjXmbhFgG30qPg4DwGnsmZO63y5DBRo+PI2xW0NwtFrsYsMVt/T1RcEUlb36JMKhDkf+euhnkanv/nU+W35qA==", + "type": "package", + "path": "distributedlock.postgres/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "distributedlock.postgres.1.3.0.nupkg.sha512", + "distributedlock.postgres.nuspec", + "lib/net462/DistributedLock.Postgres.dll", + "lib/net462/DistributedLock.Postgres.xml", + "lib/net8.0/DistributedLock.Postgres.dll", + "lib/net8.0/DistributedLock.Postgres.xml", + "lib/netstandard2.0/DistributedLock.Postgres.dll", + "lib/netstandard2.0/DistributedLock.Postgres.xml", + "lib/netstandard2.1/DistributedLock.Postgres.dll", + "lib/netstandard2.1/DistributedLock.Postgres.xml", + "package.readme.md" + ] + }, + "FastExpressionCompiler/5.3.0": { + "sha512": "XRmGW48Gdm7B70WUtTJJUnmuc8jRDmOhhjG/a3rix/nXChnrkETaSvA0j2VrcsH4MNeYLe60LA5o5JABmbneag==", + "type": "package", + "path": "fastexpressioncompiler/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "FastExpressionCompiler.snk", + "LICENSE/LICENSE", + "fastexpressioncompiler.5.3.0.nupkg.sha512", + "fastexpressioncompiler.nuspec", + "lib/net472/FastExpressionCompiler.dll", + "lib/net472/FastExpressionCompiler.xml", + "lib/net6.0/FastExpressionCompiler.dll", + "lib/net6.0/FastExpressionCompiler.xml", + "lib/net8.0/FastExpressionCompiler.dll", + "lib/net8.0/FastExpressionCompiler.xml", + "lib/net9.0/FastExpressionCompiler.dll", + "lib/net9.0/FastExpressionCompiler.xml", + "lib/netstandard2.0/FastExpressionCompiler.dll", + "lib/netstandard2.0/FastExpressionCompiler.xml", + "lib/netstandard2.1/FastExpressionCompiler.dll", + "lib/netstandard2.1/FastExpressionCompiler.xml", + "logo.png", + "readme.md" + ] + }, + "FSharp.Core/9.0.100": { + "sha512": "ye8yagHGsH08H2Twno5GRWkSbrMtxK/SWiHuPcF+3nODpW65/VJ8RO0aWxp8n9+KQbmahg90wAEL3TEXjF0r6A==", + "type": "package", + "path": "fsharp.core/9.0.100", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "fsharp.core.9.0.100.nupkg.sha512", + "fsharp.core.nuspec", + "lib/netstandard2.0/FSharp.Core.dll", + "lib/netstandard2.0/FSharp.Core.xml", + "lib/netstandard2.0/cs/FSharp.Core.resources.dll", + "lib/netstandard2.0/de/FSharp.Core.resources.dll", + "lib/netstandard2.0/es/FSharp.Core.resources.dll", + "lib/netstandard2.0/fr/FSharp.Core.resources.dll", + "lib/netstandard2.0/it/FSharp.Core.resources.dll", + "lib/netstandard2.0/ja/FSharp.Core.resources.dll", + "lib/netstandard2.0/ko/FSharp.Core.resources.dll", + "lib/netstandard2.0/pl/FSharp.Core.resources.dll", + "lib/netstandard2.0/pt-BR/FSharp.Core.resources.dll", + "lib/netstandard2.0/ru/FSharp.Core.resources.dll", + "lib/netstandard2.0/tr/FSharp.Core.resources.dll", + "lib/netstandard2.0/zh-Hans/FSharp.Core.resources.dll", + "lib/netstandard2.0/zh-Hant/FSharp.Core.resources.dll", + "lib/netstandard2.1/FSharp.Core.dll", + "lib/netstandard2.1/FSharp.Core.xml", + "lib/netstandard2.1/cs/FSharp.Core.resources.dll", + "lib/netstandard2.1/de/FSharp.Core.resources.dll", + "lib/netstandard2.1/es/FSharp.Core.resources.dll", + "lib/netstandard2.1/fr/FSharp.Core.resources.dll", + "lib/netstandard2.1/it/FSharp.Core.resources.dll", + "lib/netstandard2.1/ja/FSharp.Core.resources.dll", + "lib/netstandard2.1/ko/FSharp.Core.resources.dll", + "lib/netstandard2.1/pl/FSharp.Core.resources.dll", + "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll", + "lib/netstandard2.1/ru/FSharp.Core.resources.dll", + "lib/netstandard2.1/tr/FSharp.Core.resources.dll", + "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll", + "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "ImTools/4.0.0": { + "sha512": "dms0JfLKC9AQbQX/EdpRjn59EjEvaCxIgv1z9YxbEQb5SiOVoo7vlIKdEySeEwUkWhN05rZnNpUpG+aw5VqPVQ==", + "type": "package", + "path": "imtools/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ImTools.snk", + "LICENSE.txt", + "content/net45/ImTools/ImTools.cs", + "contentFiles/cs/net45/ImTools/ImTools.cs", + "contentFiles/cs/netstandard2.0/ImTools/ImTools.cs", + "imtools.4.0.0.nupkg.sha512", + "imtools.nuspec" + ] + }, + "JasperFx/1.17.0": { + "sha512": "d0QqJ33u1IIyG88p8xMi1X9DtfL5Zyq0ivxn5KWJRaVSS3gJ/q9Ws0FopQiG4mxDl/w7rbnSmuFpu4iSimP5IQ==", + "type": "package", + "path": "jasperfx/1.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jasperfx.1.17.0.nupkg.sha512", + "jasperfx.nuspec", + "lib/net10.0/JasperFx.dll", + "lib/net10.0/JasperFx.xml", + "lib/net8.0/JasperFx.dll", + "lib/net8.0/JasperFx.xml", + "lib/net9.0/JasperFx.dll", + "lib/net9.0/JasperFx.xml" + ] + }, + "JasperFx.Events/1.17.0": { + "sha512": "sLvOvE5ABMcATyFLVIKDHeWbjVlhPL8TuK3To1cUdX452Xk6zyEAoW8u/UHfDr4meI9rXoMu4a5GaG8xDjp50A==", + "type": "package", + "path": "jasperfx.events/1.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jasperfx.events.1.17.0.nupkg.sha512", + "jasperfx.events.nuspec", + "lib/net10.0/JasperFx.Events.dll", + "lib/net10.0/JasperFx.Events.xml", + "lib/net8.0/JasperFx.Events.dll", + "lib/net8.0/JasperFx.Events.xml", + "lib/net9.0/JasperFx.Events.dll", + "lib/net9.0/JasperFx.Events.xml" + ] + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "sha512": "zA8iKRvnM1doCM7QqKXfit+FO9LF9hZ+BPoxe4L/+wf6RlARUMpV6HYjr1LWqogT2T5RzC5iO9r9HITl94MonA==", + "type": "package", + "path": "jasperfx.runtimecompiler/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jasperfx.runtimecompiler.4.3.2.nupkg.sha512", + "jasperfx.runtimecompiler.nuspec", + "lib/net10.0/JasperFx.RuntimeCompiler.dll", + "lib/net10.0/JasperFx.RuntimeCompiler.xml", + "lib/net8.0/JasperFx.RuntimeCompiler.dll", + "lib/net8.0/JasperFx.RuntimeCompiler.xml", + "lib/net9.0/JasperFx.RuntimeCompiler.dll", + "lib/net9.0/JasperFx.RuntimeCompiler.xml" + ] + }, + "Marten/8.19.0": { + "sha512": "kZXpOCBbPKAvjcTS8Eco0n8N31cbPwNDuJuPktet2IKhXd9RWweSfWNh1XG8PEAQqc1oZksZty2ZD9mSOFA6gw==", + "type": "package", + "path": "marten/8.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Marten.dll", + "lib/net10.0/Marten.xml", + "lib/net8.0/Marten.dll", + "lib/net8.0/Marten.xml", + "lib/net9.0/Marten.dll", + "lib/net9.0/Marten.xml", + "marten.8.19.0.nupkg.sha512", + "marten.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "sha512": "owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.AsyncInterfaces.targets", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "sha512": "bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "type": "package", + "path": "microsoft.bcl.timeprovider/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.TimeProvider.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.TimeProvider.targets", + "lib/net462/Microsoft.Bcl.TimeProvider.dll", + "lib/net462/Microsoft.Bcl.TimeProvider.xml", + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll", + "lib/net8.0/Microsoft.Bcl.TimeProvider.xml", + "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll", + "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.xml", + "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512", + "microsoft.bcl.timeprovider.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.CodeAnalysis/5.0.0": { + "sha512": "X7vItpZDkGm4NS2wp4P1S07Z1e61LaBWDW5tPXE1c6z5/x9KbF2RymhAPoYg7Qoiyk7odEZ6EjBEJ47p3dBpYQ==", + "type": "package", + "path": "microsoft.codeanalysis/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "microsoft.codeanalysis.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "sha512": "v/EW3UE8/lbEYHoC2Qq7AR/DnmvpgdtAMndfQNmpuIMx/Mto8L5JnuCfdBYtgvalQOtfNCnxFejxuRrryvUTsg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.11.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets", + "buildTransitive/config/analysislevel_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_all.globalconfig", + "buildTransitive/config/analysislevel_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_default.globalconfig", + "buildTransitive/config/analysislevel_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_none.globalconfig", + "buildTransitive/config/analysislevel_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended_warnaserror.globalconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "documentation/readme.md", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/5.0.0": { + "sha512": "ZXRAdvH6GiDeHRyd3q/km8Z44RoM6FBWHd+gen/la81mVnAdHTEsEkO5J0TCNXBymAcx5UYKt5TvgKBhaLJEow==", + "type": "package", + "path": "microsoft.codeanalysis.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.dll", + "lib/net8.0/Microsoft.CodeAnalysis.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.dll", + "lib/net9.0/Microsoft.CodeAnalysis.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/5.0.0": { + "sha512": "5DSyJ9bk+ATuDy7fp2Zt0mJStDVKbBoiz1DyfAwSa+k4H4IwykAUcV3URelw5b8/iVbfSaOwkwmPUZH6opZKCw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Scripting/5.0.0": { + "sha512": "1sGloRYbG3743ut/+vuXy9/WaRQTm7mDtp71rBaVSmKpFntvo5Hcro1ubg6/3SeeLtiFYJl7V3Dk0Fo3CGlnHA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.scripting/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "microsoft.codeanalysis.csharp.scripting.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.scripting.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { + "sha512": "Al/Q8B+yO8odSqGVpSvrShMFDvlQdIBU//F3E6Rb0YdiLSALE9wh/pvozPNnfmh5HDnvU+mkmSjpz4hQO++jaA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Scripting/5.0.0": { + "sha512": "/KgZdm6kRTrR/O2jqXxU5GWREYhtVmqcNWczyPt8hsQkFGFK/C6CrLWfG44FCUn0aPHGDRBHYjXlGosQ/H8oXw==", + "type": "package", + "path": "microsoft.codeanalysis.scripting/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "microsoft.codeanalysis.scripting.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.scripting.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "sha512": "XTulByMNxqXGCgMeODUoG2h4oK4/nLv1BcawRVcjv+UZHMpoaymtdaq3cJqlNrEvYEcbU48g5swJ3RhY1m3fBg==", + "type": "package", + "path": "microsoft.codeanalysis.scripting.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "microsoft.codeanalysis.scripting.common.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.scripting.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "sha512": "sUBWvHs2HgHGA+b716dgjS7JiXGen5ntyohAurPLR1ZiZzFp3FlnVA7GrMTqVGdVJTVqiC3c4K8k1bk0gj6IPg==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "microsoft.codeanalysis.visualbasic.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "sha512": "Nom4UuZVEZGaV6Qa+joJR/BawXZMtflvQJFKc0SaUc3LrZr/8LmRY5cn8mbvLOWIVfwWkQz+cVE6eQKu9qa65g==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic.workspaces/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "microsoft.codeanalysis.visualbasic.workspaces.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { + "sha512": "ZbUmIvT6lqTNKiv06Jl5wf0MTMi1vQ1oH7ou4CLcs2C/no/L7EhP3T8y3XXvn9VbqMcJaJnEsNA1jwYUMgc5jg==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.nuspec" + ] + }, + "Microsoft.Extensions.AmbientMetadata.Application/10.1.0": { + "sha512": "+T2Ax2fgw7T7nlhio+ZtgSyYGfevHCOXNPqO0vxA+f2HmbtfwAnIwHEE/jm1/4uFRDDP8PEENpxAhbucg+wUWg==", + "type": "package", + "path": "microsoft.extensions.ambientmetadata.application/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.AmbientMetadata.Application.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net462/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net462/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net8.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net8.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net9.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net9.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/netstandard2.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/netstandard2.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512", + "microsoft.extensions.ambientmetadata.application.nuspec" + ] + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "sha512": "M3JWrgZMkVzyEybZzNkTiC/e8U1ipXTi8xm8bj+PHHp4AcEmhmIEqnxRS0VHVCKZjLkOPt2hY2CIisUFQ6gqLA==", + "type": "package", + "path": "microsoft.extensions.compliance.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.compliance.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "sha512": "O052pqWkdVNXaj3n9E4x6nLL7sG860434gLh7XHhFp/KpyAY9/rCk9NJUinYfQnDkAA8UgCHimVZz+lTjnEwzQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.autoactivation/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.autoactivation.nuspec" + ] + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "sha512": "Q76peCoP6vXXf95RLFeMGzcaQs8l3lk+n/ZOTi2i+OLd3R0HzzB0Fswjua4NY1viIbA1s6l1mqRjQbxY7+Jylw==", + "type": "package", + "path": "microsoft.extensions.diagnostics.exceptionsummarization/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512", + "microsoft.extensions.diagnostics.exceptionsummarization.nuspec" + ] + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "sha512": "RA1Egggf5o7/5AI5TIxOmmV7T06X2jvA9nSlJazU++X/pgu48EDAjDflTq/+kAk0FHUm9ZpAiBVdWfOP2opAbQ==", + "type": "package", + "path": "microsoft.extensions.http.diagnostics/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Http.Diagnostics.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net462/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net9.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net9.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.Diagnostics.xml", + "microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512", + "microsoft.extensions.http.diagnostics.nuspec" + ] + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "sha512": "rwDoQBB93yQjd1XtcZBnOLRX23LW7Z49TIAp1sn7i2r/pW3y4iB8E+EEL0ZyOPuEZxT9xEVN9y39KWlG1FDPkQ==", + "type": "package", + "path": "microsoft.extensions.http.resilience/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Http.Resilience.net462.targets", + "buildTransitive/net462/Microsoft.Extensions.Http.Resilience.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Http.Resilience.targets", + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net10.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/net462/Microsoft.Extensions.Http.Resilience.dll", + "lib/net462/Microsoft.Extensions.Http.Resilience.xml", + "lib/net8.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net8.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/net9.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net9.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.Resilience.xml", + "microsoft.extensions.http.resilience.10.1.0.nupkg.sha512", + "microsoft.extensions.http.resilience.nuspec" + ] + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "sha512": "NzA+c4m2q92qZPjiZLFm+ToeQC3KFqzP+Dr/1pV5y9d7H/hDM2Yxno0kcw5DGpSvS0s6Pwsp+FWMdk/kXBPZ7g==", + "type": "package", + "path": "microsoft.extensions.resilience/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Resilience.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Resilience.dll", + "lib/net10.0/Microsoft.Extensions.Resilience.xml", + "lib/net462/Microsoft.Extensions.Resilience.dll", + "lib/net462/Microsoft.Extensions.Resilience.xml", + "lib/net8.0/Microsoft.Extensions.Resilience.dll", + "lib/net8.0/Microsoft.Extensions.Resilience.xml", + "lib/net9.0/Microsoft.Extensions.Resilience.dll", + "lib/net9.0/Microsoft.Extensions.Resilience.xml", + "lib/netstandard2.0/Microsoft.Extensions.Resilience.dll", + "lib/netstandard2.0/Microsoft.Extensions.Resilience.xml", + "microsoft.extensions.resilience.10.1.0.nupkg.sha512", + "microsoft.extensions.resilience.nuspec" + ] + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "sha512": "b78YWSrwXQI/pSzKIe/TO1lC2FcBfrux6+AmgTRStKcJYHNU1r8ii1GICRNv37CobIcaW8w33LW+xmThqIG/bg==", + "type": "package", + "path": "microsoft.extensions.servicediscovery/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.xml", + "microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512", + "microsoft.extensions.servicediscovery.nuspec" + ] + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "sha512": "uNPOkiRJx6J01aoHQBoX+QR6ZmQpIYdg/OO9+x/M3lkY6JTHBxp3pohcOyEe9l77MT8+3fVEP84/Uw+JODkA0Q==", + "type": "package", + "path": "microsoft.extensions.servicediscovery.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.servicediscovery.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "sha512": "OFnpwOBRZZXMMySvM7eJsEQ87ED5SaRbxHg/an1u89MWHw0mXUUbx5WPb5XFN0uS8kJPe6M+ZMRYwRP0nJeDPA==", + "type": "package", + "path": "microsoft.extensions.telemetry/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Telemetry.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Telemetry.dll", + "lib/net10.0/Microsoft.Extensions.Telemetry.xml", + "lib/net462/Microsoft.Extensions.Telemetry.dll", + "lib/net462/Microsoft.Extensions.Telemetry.xml", + "lib/net8.0/Microsoft.Extensions.Telemetry.dll", + "lib/net8.0/Microsoft.Extensions.Telemetry.xml", + "lib/net9.0/Microsoft.Extensions.Telemetry.dll", + "lib/net9.0/Microsoft.Extensions.Telemetry.xml", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.dll", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.xml", + "microsoft.extensions.telemetry.10.1.0.nupkg.sha512", + "microsoft.extensions.telemetry.nuspec" + ] + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "sha512": "0jAF2b0YJ1LOtunmo3PzSoJOx/ThhcGH5Y5kaV0jeM0BUlyr9orjg+fH5YabqnPSmwcN/DSTj0iZ7UwDISn5ag==", + "type": "package", + "path": "microsoft.extensions.telemetry.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "analyzers/dotnet/cs/Microsoft.Gen.Logging.dll", + "analyzers/dotnet/cs/Microsoft.Gen.Metrics.dll", + "buildTransitive/net462/Microsoft.Extensions.Telemetry.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Telemetry.Abstractions.props", + "buildTransitive/net6.0/Microsoft.Extensions.Telemetry.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.props", + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.telemetry.abstractions.nuspec" + ] + }, + "NATS.Client.Abstractions/2.7.0": { + "sha512": "DQ6x64lyH7Li2jS8/IV+XIEkhnhE9KENQ5luAoYTLPNEmFoIVcWN8RQSHjyRJviu4RGbw6AvHmlxvehnSqJk8w==", + "type": "package", + "path": "nats.client.abstractions/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Abstractions.dll", + "lib/net6.0/NATS.Client.Abstractions.xml", + "lib/net8.0/NATS.Client.Abstractions.dll", + "lib/net8.0/NATS.Client.Abstractions.xml", + "lib/netstandard2.0/NATS.Client.Abstractions.dll", + "lib/netstandard2.0/NATS.Client.Abstractions.xml", + "lib/netstandard2.1/NATS.Client.Abstractions.dll", + "lib/netstandard2.1/NATS.Client.Abstractions.xml", + "nats.client.abstractions.2.7.0.nupkg.sha512", + "nats.client.abstractions.nuspec" + ] + }, + "NATS.Client.Core/2.7.0": { + "sha512": "/l3nqhk6mfG50QjjvwKMN+kSUgJ27fmoaXAXXjrB13YpCbcl20c7Mj82KsutbjmxMVKSdb1mc7Wvj2Ahr03e8A==", + "type": "package", + "path": "nats.client.core/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Core.dll", + "lib/net6.0/NATS.Client.Core.xml", + "lib/net8.0/NATS.Client.Core.dll", + "lib/net8.0/NATS.Client.Core.xml", + "lib/netstandard2.0/NATS.Client.Core.dll", + "lib/netstandard2.0/NATS.Client.Core.xml", + "lib/netstandard2.1/NATS.Client.Core.dll", + "lib/netstandard2.1/NATS.Client.Core.xml", + "nats.client.core.2.7.0.nupkg.sha512", + "nats.client.core.nuspec" + ] + }, + "NATS.Client.Hosting/2.7.0": { + "sha512": "P0OoQWqhKPavjmkO23mOdqHsm4GmO9OdjlTrWTpvQes67DLgxmYTjGu1PYK0pi/XJuuiUeZdKhINt6XvygaqYg==", + "type": "package", + "path": "nats.client.hosting/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Hosting.dll", + "lib/net6.0/NATS.Client.Hosting.xml", + "lib/net8.0/NATS.Client.Hosting.dll", + "lib/net8.0/NATS.Client.Hosting.xml", + "lib/netstandard2.0/NATS.Client.Hosting.dll", + "lib/netstandard2.0/NATS.Client.Hosting.xml", + "lib/netstandard2.1/NATS.Client.Hosting.dll", + "lib/netstandard2.1/NATS.Client.Hosting.xml", + "nats.client.hosting.2.7.0.nupkg.sha512", + "nats.client.hosting.nuspec" + ] + }, + "NATS.Client.JetStream/2.7.0": { + "sha512": "MHT27WsvKCPSQ234WO+PnaDH0+rAs1W70BPnSvt/4iZ/Dunfx8oQHSGskfAz62R1U2ZGBTbucjkPCJqjCep0bA==", + "type": "package", + "path": "nats.client.jetstream/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.JetStream.dll", + "lib/net6.0/NATS.Client.JetStream.xml", + "lib/net8.0/NATS.Client.JetStream.dll", + "lib/net8.0/NATS.Client.JetStream.xml", + "lib/netstandard2.0/NATS.Client.JetStream.dll", + "lib/netstandard2.0/NATS.Client.JetStream.xml", + "lib/netstandard2.1/NATS.Client.JetStream.dll", + "lib/netstandard2.1/NATS.Client.JetStream.xml", + "nats.client.jetstream.2.7.0.nupkg.sha512", + "nats.client.jetstream.nuspec" + ] + }, + "NATS.Client.KeyValueStore/2.7.0": { + "sha512": "vmpy1y3fU0TzrOhEtS+9NajcjY1R08tHR7GQIIXB2IE2k0vh1rHLChUtrMypvTlng90KHGhGPsr/EzJnu6hqzA==", + "type": "package", + "path": "nats.client.keyvaluestore/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.KeyValueStore.dll", + "lib/net6.0/NATS.Client.KeyValueStore.xml", + "lib/net8.0/NATS.Client.KeyValueStore.dll", + "lib/net8.0/NATS.Client.KeyValueStore.xml", + "lib/netstandard2.0/NATS.Client.KeyValueStore.dll", + "lib/netstandard2.0/NATS.Client.KeyValueStore.xml", + "lib/netstandard2.1/NATS.Client.KeyValueStore.dll", + "lib/netstandard2.1/NATS.Client.KeyValueStore.xml", + "nats.client.keyvaluestore.2.7.0.nupkg.sha512", + "nats.client.keyvaluestore.nuspec" + ] + }, + "NATS.Client.ObjectStore/2.7.0": { + "sha512": "UqD6MjojKm2LCK+wTGSN/lsDe9of9qygFWGSAw1m6p9eoey1HnEVH0MKqItqAKUgsuyaaZaB999/S+z6uugGQg==", + "type": "package", + "path": "nats.client.objectstore/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.ObjectStore.dll", + "lib/net6.0/NATS.Client.ObjectStore.xml", + "lib/net8.0/NATS.Client.ObjectStore.dll", + "lib/net8.0/NATS.Client.ObjectStore.xml", + "lib/netstandard2.0/NATS.Client.ObjectStore.dll", + "lib/netstandard2.0/NATS.Client.ObjectStore.xml", + "lib/netstandard2.1/NATS.Client.ObjectStore.dll", + "lib/netstandard2.1/NATS.Client.ObjectStore.xml", + "nats.client.objectstore.2.7.0.nupkg.sha512", + "nats.client.objectstore.nuspec" + ] + }, + "NATS.Client.Serializers.Json/2.7.0": { + "sha512": "13R0EvJae6dXhcfdBX29LadDdc+0SPWVp0HdAQH4D7H3Eyd2/0jxgrLNH9nlZM8lo3tSk/iDojP7e+VQjlzM1w==", + "type": "package", + "path": "nats.client.serializers.json/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Serializers.Json.dll", + "lib/net6.0/NATS.Client.Serializers.Json.xml", + "lib/net8.0/NATS.Client.Serializers.Json.dll", + "lib/net8.0/NATS.Client.Serializers.Json.xml", + "lib/netstandard2.0/NATS.Client.Serializers.Json.dll", + "lib/netstandard2.0/NATS.Client.Serializers.Json.xml", + "lib/netstandard2.1/NATS.Client.Serializers.Json.dll", + "lib/netstandard2.1/NATS.Client.Serializers.Json.xml", + "nats.client.serializers.json.2.7.0.nupkg.sha512", + "nats.client.serializers.json.nuspec" + ] + }, + "NATS.Client.Services/2.7.0": { + "sha512": "EEs4ibYIwg/pP/bBPhn+K3eDfNBehTisGs2L+eZv7e+eHfBHcjSvAfbEhhyACMuFSuTROWpBaiFAH4xCWgdnbA==", + "type": "package", + "path": "nats.client.services/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Services.dll", + "lib/net6.0/NATS.Client.Services.xml", + "lib/net8.0/NATS.Client.Services.dll", + "lib/net8.0/NATS.Client.Services.xml", + "lib/netstandard2.0/NATS.Client.Services.dll", + "lib/netstandard2.0/NATS.Client.Services.xml", + "lib/netstandard2.1/NATS.Client.Services.dll", + "lib/netstandard2.1/NATS.Client.Services.xml", + "nats.client.services.2.7.0.nupkg.sha512", + "nats.client.services.nuspec" + ] + }, + "NATS.Client.Simplified/2.7.0": { + "sha512": "8HU5stAU/xpQr7OyGaZbkjJGeq7hcukUUdcme4sOBiSUrjWpfgJTYeFmwFQHALFah9dkm1EYrHp1RND6lLSJTA==", + "type": "package", + "path": "nats.client.simplified/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Simplified.dll", + "lib/net6.0/NATS.Client.Simplified.xml", + "lib/net8.0/NATS.Client.Simplified.dll", + "lib/net8.0/NATS.Client.Simplified.xml", + "lib/netstandard2.0/NATS.Client.Simplified.dll", + "lib/netstandard2.0/NATS.Client.Simplified.xml", + "lib/netstandard2.1/NATS.Client.Simplified.dll", + "lib/netstandard2.1/NATS.Client.Simplified.xml", + "nats.client.simplified.2.7.0.nupkg.sha512", + "nats.client.simplified.nuspec" + ] + }, + "NATS.Net/2.7.0": { + "sha512": "89IrKEUb/kOzzcQ+J5SKAKmlRybRklllZKa1/LuBNkn3BblIUHYXku6JibN1wWr02HgJGH+OMYBZ0SVX1+HnCA==", + "type": "package", + "path": "nats.net/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Net.dll", + "lib/net6.0/NATS.Net.xml", + "lib/net8.0/NATS.Net.dll", + "lib/net8.0/NATS.Net.xml", + "lib/netstandard2.0/NATS.Net.dll", + "lib/netstandard2.0/NATS.Net.xml", + "lib/netstandard2.1/NATS.Net.dll", + "lib/netstandard2.1/NATS.Net.xml", + "nats.net.2.7.0.nupkg.sha512", + "nats.net.nuspec" + ] + }, + "NetTopologySuite/2.5.0": { + "sha512": "5/+2O2ADomEdUn09mlSigACdqvAf0m/pVPGtIPEPQWnyrVykYY0NlfXLIdkMgi41kvH9kNrPqYaFBTZtHYH7Xw==", + "type": "package", + "path": "nettopologysuite/2.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.0/NetTopologySuite.dll", + "lib/netstandard2.0/NetTopologySuite.xml", + "nettopologysuite.2.5.0.nupkg.sha512", + "nettopologysuite.nuspec" + ] + }, + "NetTopologySuite.IO.PostGis/2.1.0": { + "sha512": "3W8XTFz8iP6GQ5jDXK1/LANHiU+988k1kmmuPWNKcJLpmSg6CvFpbTpz+s4+LBzkAp64wHGOldSlkSuzYfrIKA==", + "type": "package", + "path": "nettopologysuite.io.postgis/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/NetTopologySuite.IO.PostGis.dll", + "lib/netstandard2.0/NetTopologySuite.IO.PostGis.xml", + "lib/netstandard2.1/NetTopologySuite.IO.PostGis.dll", + "lib/netstandard2.1/NetTopologySuite.IO.PostGis.xml", + "nettopologysuite.io.postgis.2.1.0.nupkg.sha512", + "nettopologysuite.io.postgis.nuspec" + ] + }, + "NewId/4.0.1": { + "sha512": "jegBasNndmG21G3BmT51suFDCIz/sLN81j+IxmkZ4iWoaDi8LygeHiyNnYbXz5OQh9nCRJFIx1+PJrlYi1Gc9Q==", + "type": "package", + "path": "newid/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/NewId.dll", + "lib/net6.0/NewId.xml", + "lib/netstandard2.0/NewId.dll", + "lib/netstandard2.0/NewId.xml", + "newid.4.0.1.nupkg.sha512", + "newid.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Npgsql/10.0.0": { + "sha512": "xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", + "type": "package", + "path": "npgsql/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Npgsql.dll", + "lib/net10.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/net9.0/Npgsql.dll", + "lib/net9.0/Npgsql.xml", + "npgsql.10.0.0.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.DependencyInjection/10.0.0": { + "sha512": "htuxMDQ7nHgadPxoO6XXVvSgYcVierLrhzOoamyUchvC4oHnYdD05zZ0dYsq80DN0vco9t/Vp+ZxYvnfJxbhIg==", + "type": "package", + "path": "npgsql.dependencyinjection/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Npgsql.DependencyInjection.dll", + "lib/net8.0/Npgsql.DependencyInjection.xml", + "npgsql.dependencyinjection.10.0.0.nupkg.sha512", + "npgsql.dependencyinjection.nuspec", + "postgresql.png" + ] + }, + "Npgsql.Json.NET/9.0.4": { + "sha512": "Eunq7mqatJujFOaZMdiWT9N7eUXHEFxe4IX/PeN8Nt1BpNYjzF2tPlmqR90EvuGT3tiEicmj4xDviC0UcPwM1w==", + "type": "package", + "path": "npgsql.json.net/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Npgsql.Json.NET.dll", + "lib/net6.0/Npgsql.Json.NET.xml", + "npgsql.json.net.9.0.4.nupkg.sha512", + "npgsql.json.net.nuspec", + "postgresql.png" + ] + }, + "Npgsql.NetTopologySuite/9.0.4": { + "sha512": "7AwBLPz8EPmgAXveZ55K0Tz/9bNb8j4VI4pkTOQjyHrce8wWfAA9pefm3REidy+Kt2UFiAWef34YVi7sb/kB4A==", + "type": "package", + "path": "npgsql.nettopologysuite/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.NetTopologySuite.dll", + "lib/net6.0/Npgsql.NetTopologySuite.xml", + "npgsql.nettopologysuite.9.0.4.nupkg.sha512", + "npgsql.nettopologysuite.nuspec", + "postgresql.png" + ] + }, + "Npgsql.OpenTelemetry/10.0.0": { + "sha512": "eftmCZWng874x4iSfQyfF+PpnfA6hloHGQ3EzELVhRyPOEHcMygxSXhx4KI8HKu/Qg8uK1MF5tcwOVhwL7duJw==", + "type": "package", + "path": "npgsql.opentelemetry/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Npgsql.OpenTelemetry.dll", + "lib/net8.0/Npgsql.OpenTelemetry.xml", + "npgsql.opentelemetry.10.0.0.nupkg.sha512", + "npgsql.opentelemetry.nuspec", + "postgresql.png" + ] + }, + "OpenTelemetry/1.14.0": { + "sha512": "aiPBAr1+0dPDItH++MQQr5UgMf4xiybruzNlAoYYMYN3UUk+mGRcoKuZy4Z4rhhWUZIpK2Xhe7wUUXSTM32duQ==", + "type": "package", + "path": "opentelemetry/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.dll", + "lib/net10.0/OpenTelemetry.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.xml", + "lib/net462/OpenTelemetry.dll", + "lib/net462/OpenTelemetry.dll.sigstore.json", + "lib/net462/OpenTelemetry.xml", + "lib/net8.0/OpenTelemetry.dll", + "lib/net8.0/OpenTelemetry.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.xml", + "lib/net9.0/OpenTelemetry.dll", + "lib/net9.0/OpenTelemetry.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.xml", + "lib/netstandard2.0/OpenTelemetry.dll", + "lib/netstandard2.0/OpenTelemetry.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.xml", + "lib/netstandard2.1/OpenTelemetry.dll", + "lib/netstandard2.1/OpenTelemetry.dll.sigstore.json", + "lib/netstandard2.1/OpenTelemetry.xml", + "opentelemetry-icon-color.png", + "opentelemetry.1.14.0.nupkg.sha512", + "opentelemetry.nuspec" + ] + }, + "OpenTelemetry.Api/1.14.0": { + "sha512": "foHci6viUw1f3gUB8qzz3Rk02xZIWMo299X0rxK0MoOWok/3dUVru+KKdY7WIoSHwRGpxGKkmAz9jIk2RFNbsQ==", + "type": "package", + "path": "opentelemetry.api/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Api.dll", + "lib/net10.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Api.xml", + "lib/net462/OpenTelemetry.Api.dll", + "lib/net462/OpenTelemetry.Api.dll.sigstore.json", + "lib/net462/OpenTelemetry.Api.xml", + "lib/net8.0/OpenTelemetry.Api.dll", + "lib/net8.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Api.xml", + "lib/net9.0/OpenTelemetry.Api.dll", + "lib/net9.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Api.xml", + "lib/netstandard2.0/OpenTelemetry.Api.dll", + "lib/netstandard2.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Api.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.1.14.0.nupkg.sha512", + "opentelemetry.api.nuspec" + ] + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "sha512": "i/lxOM92v+zU5I0rGl5tXAGz6EJtxk2MvzZ0VN6F6L5pMqT6s6RCXnGWXg6fW+vtZJsllBlQaf/VLPTzgefJpg==", + "type": "package", + "path": "opentelemetry.api.providerbuilderextensions/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512", + "opentelemetry.api.providerbuilderextensions.nuspec" + ] + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "sha512": "7ELExeje+T/KOywHuHwZBGQNtYlepUaYRFXWgoEaT1iKpFJVwOlE1Y2+uqHI2QQmah0Ue+XgRmDy924vWHfJ6Q==", + "type": "package", + "path": "opentelemetry.exporter.opentelemetryprotocol/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "opentelemetry-icon-color.png", + "opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512", + "opentelemetry.exporter.opentelemetryprotocol.nuspec" + ] + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "sha512": "ZAxkCIa3Q3YWZ1sGrolXfkhPqn2PFSz2Cel74em/fATZgY5ixlw6MQp2icmqKCz4C7M1W2G0b92K3rX8mOtFRg==", + "type": "package", + "path": "opentelemetry.extensions.hosting/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net462/OpenTelemetry.Extensions.Hosting.xml", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.xml", + "opentelemetry-icon-color.png", + "opentelemetry.extensions.hosting.1.14.0.nupkg.sha512", + "opentelemetry.extensions.hosting.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "sha512": "NQAQpFa3a4ofPUYwxcwtNPGpuRNwwx1HM7MnLEESYjYkhfhER+PqqGywW65rWd7bJEc1/IaL+xbmHH99pYDE0A==", + "type": "package", + "path": "opentelemetry.instrumentation.aspnetcore/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.aspnetcore.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "sha512": "uH8X1fYnywrgaUrSbemKvFiFkBwY7ZbBU7Wh4A/ORQmdpF3G/5STidY4PlK4xYuIv9KkdMXH/vkpvzQcayW70g==", + "type": "package", + "path": "opentelemetry.instrumentation.http/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.Http.xml", + "lib/net462/OpenTelemetry.Instrumentation.Http.dll", + "lib/net462/OpenTelemetry.Instrumentation.Http.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.Http.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.http.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.http.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "sha512": "Z6o4JDOQaKv6bInAYZxuyxxfMKr6hFpwLnKEgQ+q+oBNA9Fm1sysjFCOzRzk7U0WD86LsRPXX+chv1vJIg7cfg==", + "type": "package", + "path": "opentelemetry.instrumentation.runtime/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/net462/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net462/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Runtime.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.runtime.nuspec" + ] + }, + "Polly.Core/8.6.5": { + "sha512": "t+sUVrIwvo7UmsgHGgOG9F0GDZSRIm47u2ylH17Gvcv1q5hNEwgD5GoBlFyc0kh/pebmPyrAgvGsR/65ZBaXlg==", + "type": "package", + "path": "polly.core/8.6.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "lib/net462/Polly.Core.dll", + "lib/net462/Polly.Core.pdb", + "lib/net462/Polly.Core.xml", + "lib/net472/Polly.Core.dll", + "lib/net472/Polly.Core.pdb", + "lib/net472/Polly.Core.xml", + "lib/net6.0/Polly.Core.dll", + "lib/net6.0/Polly.Core.pdb", + "lib/net6.0/Polly.Core.xml", + "lib/net8.0/Polly.Core.dll", + "lib/net8.0/Polly.Core.pdb", + "lib/net8.0/Polly.Core.xml", + "lib/netstandard2.0/Polly.Core.dll", + "lib/netstandard2.0/Polly.Core.pdb", + "lib/netstandard2.0/Polly.Core.xml", + "package-icon.png", + "package-readme.md", + "polly.core.8.6.5.nupkg.sha512", + "polly.core.nuspec" + ] + }, + "Polly.Extensions/8.4.2": { + "sha512": "GZ9vRVmR0jV2JtZavt+pGUsQ1O1cuRKG7R7VOZI6ZDy9y6RNPvRvXK1tuS4ffUrv8L0FTea59oEuQzgS0R7zSA==", + "type": "package", + "path": "polly.extensions/8.4.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Polly.Extensions.dll", + "lib/net462/Polly.Extensions.pdb", + "lib/net462/Polly.Extensions.xml", + "lib/net472/Polly.Extensions.dll", + "lib/net472/Polly.Extensions.pdb", + "lib/net472/Polly.Extensions.xml", + "lib/net6.0/Polly.Extensions.dll", + "lib/net6.0/Polly.Extensions.pdb", + "lib/net6.0/Polly.Extensions.xml", + "lib/net8.0/Polly.Extensions.dll", + "lib/net8.0/Polly.Extensions.pdb", + "lib/net8.0/Polly.Extensions.xml", + "lib/netstandard2.0/Polly.Extensions.dll", + "lib/netstandard2.0/Polly.Extensions.pdb", + "lib/netstandard2.0/Polly.Extensions.xml", + "package-icon.png", + "package-readme.md", + "polly.extensions.8.4.2.nupkg.sha512", + "polly.extensions.nuspec" + ] + }, + "Polly.RateLimiting/8.4.2": { + "sha512": "ehTImQ/eUyO07VYW2WvwSmU9rRH200SKJ/3jku9rOkyWE0A2JxNFmAVms8dSn49QLSjmjFRRSgfNyOgr/2PSmA==", + "type": "package", + "path": "polly.ratelimiting/8.4.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Polly.RateLimiting.dll", + "lib/net462/Polly.RateLimiting.pdb", + "lib/net462/Polly.RateLimiting.xml", + "lib/net472/Polly.RateLimiting.dll", + "lib/net472/Polly.RateLimiting.pdb", + "lib/net472/Polly.RateLimiting.xml", + "lib/net6.0/Polly.RateLimiting.dll", + "lib/net6.0/Polly.RateLimiting.pdb", + "lib/net6.0/Polly.RateLimiting.xml", + "lib/net8.0/Polly.RateLimiting.dll", + "lib/net8.0/Polly.RateLimiting.pdb", + "lib/net8.0/Polly.RateLimiting.xml", + "lib/netstandard2.0/Polly.RateLimiting.dll", + "lib/netstandard2.0/Polly.RateLimiting.pdb", + "lib/netstandard2.0/Polly.RateLimiting.xml", + "package-icon.png", + "package-readme.md", + "polly.ratelimiting.8.4.2.nupkg.sha512", + "polly.ratelimiting.nuspec" + ] + }, + "Spectre.Console/0.53.0": { + "sha512": "m2iv8Egfywp7FaNLKCmCFHbSf36D4ctzZKvlAK9NXMyGLh6L+CnrZWK8o+LOYsoAS1jtoHn0W1BT0W8vuq/FUw==", + "type": "package", + "path": "spectre.console/0.53.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Spectre.Console.dll", + "lib/net8.0/Spectre.Console.xml", + "lib/net9.0/Spectre.Console.dll", + "lib/net9.0/Spectre.Console.xml", + "lib/netstandard2.0/Spectre.Console.dll", + "lib/netstandard2.0/Spectre.Console.xml", + "logo.png", + "spectre.console.0.53.0.nupkg.sha512", + "spectre.console.nuspec" + ] + }, + "System.Composition/9.0.0": { + "sha512": "3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==", + "type": "package", + "path": "system.composition/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.targets", + "lib/net461/_._", + "lib/netcoreapp2.0/_._", + "lib/netstandard2.0/_._", + "system.composition.9.0.0.nupkg.sha512", + "system.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.AttributedModel/9.0.0": { + "sha512": "iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==", + "type": "package", + "path": "system.composition.attributedmodel/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.AttributedModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets", + "lib/net462/System.Composition.AttributedModel.dll", + "lib/net462/System.Composition.AttributedModel.xml", + "lib/net8.0/System.Composition.AttributedModel.dll", + "lib/net8.0/System.Composition.AttributedModel.xml", + "lib/net9.0/System.Composition.AttributedModel.dll", + "lib/net9.0/System.Composition.AttributedModel.xml", + "lib/netstandard2.0/System.Composition.AttributedModel.dll", + "lib/netstandard2.0/System.Composition.AttributedModel.xml", + "system.composition.attributedmodel.9.0.0.nupkg.sha512", + "system.composition.attributedmodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Convention/9.0.0": { + "sha512": "+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==", + "type": "package", + "path": "system.composition.convention/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Convention.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets", + "lib/net462/System.Composition.Convention.dll", + "lib/net462/System.Composition.Convention.xml", + "lib/net8.0/System.Composition.Convention.dll", + "lib/net8.0/System.Composition.Convention.xml", + "lib/net9.0/System.Composition.Convention.dll", + "lib/net9.0/System.Composition.Convention.xml", + "lib/netstandard2.0/System.Composition.Convention.dll", + "lib/netstandard2.0/System.Composition.Convention.xml", + "system.composition.convention.9.0.0.nupkg.sha512", + "system.composition.convention.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Hosting/9.0.0": { + "sha512": "OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==", + "type": "package", + "path": "system.composition.hosting/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets", + "lib/net462/System.Composition.Hosting.dll", + "lib/net462/System.Composition.Hosting.xml", + "lib/net8.0/System.Composition.Hosting.dll", + "lib/net8.0/System.Composition.Hosting.xml", + "lib/net9.0/System.Composition.Hosting.dll", + "lib/net9.0/System.Composition.Hosting.xml", + "lib/netstandard2.0/System.Composition.Hosting.dll", + "lib/netstandard2.0/System.Composition.Hosting.xml", + "system.composition.hosting.9.0.0.nupkg.sha512", + "system.composition.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Runtime/9.0.0": { + "sha512": "w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==", + "type": "package", + "path": "system.composition.runtime/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Runtime.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets", + "lib/net462/System.Composition.Runtime.dll", + "lib/net462/System.Composition.Runtime.xml", + "lib/net8.0/System.Composition.Runtime.dll", + "lib/net8.0/System.Composition.Runtime.xml", + "lib/net9.0/System.Composition.Runtime.dll", + "lib/net9.0/System.Composition.Runtime.xml", + "lib/netstandard2.0/System.Composition.Runtime.dll", + "lib/netstandard2.0/System.Composition.Runtime.xml", + "system.composition.runtime.9.0.0.nupkg.sha512", + "system.composition.runtime.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.TypedParts/9.0.0": { + "sha512": "aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==", + "type": "package", + "path": "system.composition.typedparts/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.TypedParts.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets", + "lib/net462/System.Composition.TypedParts.dll", + "lib/net462/System.Composition.TypedParts.xml", + "lib/net8.0/System.Composition.TypedParts.dll", + "lib/net8.0/System.Composition.TypedParts.xml", + "lib/net9.0/System.Composition.TypedParts.dll", + "lib/net9.0/System.Composition.TypedParts.xml", + "lib/netstandard2.0/System.Composition.TypedParts.dll", + "lib/netstandard2.0/System.Composition.TypedParts.xml", + "system.composition.typedparts.9.0.0.nupkg.sha512", + "system.composition.typedparts.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Weasel.Core/8.5.0": { + "sha512": "aNlEmFqgJ3GGgVmEAVOiUFN10m/OzL5fYP22FeVhd6jrN9rj0daJnxhkA+f00gkXcAVgx6LidsWVBnsmxLhIIw==", + "type": "package", + "path": "weasel.core/8.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Weasel.Core.dll", + "lib/net10.0/Weasel.Core.xml", + "lib/net8.0/Weasel.Core.dll", + "lib/net8.0/Weasel.Core.xml", + "lib/net9.0/Weasel.Core.dll", + "lib/net9.0/Weasel.Core.xml", + "weasel.core.8.5.0.nupkg.sha512", + "weasel.core.nuspec" + ] + }, + "Weasel.Postgresql/8.5.0": { + "sha512": "4a8Had3NmSw1HR2U2wVqN7ho0Q5mo4RLwYMk4v/4xGm8nqEB2WKMRCaGNbFss+p+LxWimyiikMabM0q46bd2/w==", + "type": "package", + "path": "weasel.postgresql/8.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Weasel.Postgresql.dll", + "lib/net10.0/Weasel.Postgresql.xml", + "lib/net8.0/Weasel.Postgresql.dll", + "lib/net8.0/Weasel.Postgresql.xml", + "lib/net9.0/Weasel.Postgresql.dll", + "lib/net9.0/Weasel.Postgresql.xml", + "weasel.postgresql.8.5.0.nupkg.sha512", + "weasel.postgresql.nuspec" + ] + }, + "WolverineFx/5.13.0": { + "sha512": "FB5Yo6M0SyQWDgHz2EjwQcflhrjRd9mERV6/N6WHQHJO1kW8fSxEIcOHndhikcVkZvmhUdwu5PW4V4ypEmpKTA==", + "type": "package", + "path": "wolverinefx/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.dll", + "lib/net10.0/Wolverine.xml", + "lib/net8.0/Wolverine.dll", + "lib/net8.0/Wolverine.xml", + "lib/net9.0/Wolverine.dll", + "lib/net9.0/Wolverine.xml", + "wolverinefx.5.13.0.nupkg.sha512", + "wolverinefx.nuspec" + ] + }, + "WolverineFx.Marten/5.13.0": { + "sha512": "s6nzaLC/CmLc3VsBspeCUXv3/hjJOpoCEIUtQX1316rB+hOq18axSywtidNLkWNMC6N6+86WJuCqoVPXvW/YSQ==", + "type": "package", + "path": "wolverinefx.marten/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.Marten.dll", + "lib/net10.0/Wolverine.Marten.xml", + "lib/net8.0/Wolverine.Marten.dll", + "lib/net8.0/Wolverine.Marten.xml", + "lib/net9.0/Wolverine.Marten.dll", + "lib/net9.0/Wolverine.Marten.xml", + "wolverinefx.marten.5.13.0.nupkg.sha512", + "wolverinefx.marten.nuspec" + ] + }, + "WolverineFx.Nats/5.13.0": { + "sha512": "8GN8uwRX56vp3fN8KSQqrEYlAtAKoOz1ZpCckZCsr15sP8eoE+Sa5wfzkGQ186cAYnkBa2P0yMlr1QRCmHYaYQ==", + "type": "package", + "path": "wolverinefx.nats/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.Nats.dll", + "lib/net10.0/Wolverine.Nats.xml", + "lib/net8.0/Wolverine.Nats.dll", + "lib/net8.0/Wolverine.Nats.xml", + "lib/net9.0/Wolverine.Nats.dll", + "lib/net9.0/Wolverine.Nats.xml", + "wolverinefx.nats.5.13.0.nupkg.sha512", + "wolverinefx.nats.nuspec" + ] + }, + "WolverineFx.Postgresql/5.13.0": { + "sha512": "ntzQeLiJmdDuvmSK0aJaKT1fX2iBdNXncVPg1B81r90CLHSv32aqBVwXFzPtBJkIWaAhCzzWu/vy3tNH9d4QjA==", + "type": "package", + "path": "wolverinefx.postgresql/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.Postgresql.dll", + "lib/net10.0/Wolverine.Postgresql.xml", + "lib/net8.0/Wolverine.Postgresql.dll", + "lib/net8.0/Wolverine.Postgresql.xml", + "lib/net9.0/Wolverine.Postgresql.dll", + "lib/net9.0/Wolverine.Postgresql.xml", + "wolverinefx.postgresql.5.13.0.nupkg.sha512", + "wolverinefx.postgresql.nuspec" + ] + }, + "WolverineFx.RDBMS/5.13.0": { + "sha512": "Het8JdsausBm0q8GJ24QWvONsxRQ1n+j1HIWZI5jXbgPmlPv1MWPfwH3rm0Q4okYpP/1WIj7470sJbkOj46GnA==", + "type": "package", + "path": "wolverinefx.rdbms/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.RDBMS.dll", + "lib/net10.0/Wolverine.RDBMS.xml", + "lib/net8.0/Wolverine.RDBMS.dll", + "lib/net8.0/Wolverine.RDBMS.xml", + "lib/net9.0/Wolverine.RDBMS.dll", + "lib/net9.0/Wolverine.RDBMS.xml", + "wolverinefx.rdbms.5.13.0.nupkg.sha512", + "wolverinefx.rdbms.nuspec" + ] + }, + "Messages/1.0.0": { + "type": "project", + "path": "../Messages/Messages.csproj", + "msbuildProject": "../Messages/Messages.csproj" + }, + "ServiceDefaults/1.0.0": { + "type": "project", + "path": "../ServiceDefaults/ServiceDefaults.csproj", + "msbuildProject": "../ServiceDefaults/ServiceDefaults.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Aspire.Npgsql >= 13.1.0", + "Messages >= 1.0.0", + "ServiceDefaults >= 1.0.0", + "WolverineFx.Marten >= 5.13.0", + "WolverineFx.Nats >= 5.13.0" + ] + }, + "packageFolders": { + "/Users/jeffrygonzalez/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/ApiTwo.csproj", + "projectName": "ApiTwo", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/ApiTwo.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj" + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Aspire.Npgsql": { + "target": "Package", + "version": "[13.1.0, )" + }, + "WolverineFx.Marten": { + "target": "Package", + "version": "[5.13.0, )" + }, + "WolverineFx.Nats": { + "target": "Package", + "version": "[5.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/project.nuget.cache b/wolverine-nats/WolverineAndNats/ApiTwo/obj/project.nuget.cache new file mode 100644 index 0000000..c401e25 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/project.nuget.cache @@ -0,0 +1,89 @@ +{ + "version": 2, + "dgSpecHash": "ft1EfgkH7Ac=", + "success": true, + "projectFilePath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/ApiTwo.csproj", + "expectedPackageFiles": [ + "/Users/jeffrygonzalez/.nuget/packages/aspire.npgsql/13.1.0/aspire.npgsql.13.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/aspnetcore.healthchecks.npgsql/9.0.0/aspnetcore.healthchecks.npgsql.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/distributedlock.core/1.0.8/distributedlock.core.1.0.8.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/distributedlock.postgres/1.3.0/distributedlock.postgres.1.3.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/fastexpressioncompiler/5.3.0/fastexpressioncompiler.5.3.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/fsharp.core/9.0.100/fsharp.core.9.0.100.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/imtools/4.0.0/imtools.4.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jasperfx/1.17.0/jasperfx.1.17.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jasperfx.events/1.17.0/jasperfx.events.1.17.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jasperfx.runtimecompiler/4.3.2/jasperfx.runtimecompiler.4.3.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/marten/8.19.0/marten.8.19.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.bcl.asyncinterfaces/9.0.0/microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.bcl.timeprovider/10.0.0/microsoft.bcl.timeprovider.10.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis/5.0.0/microsoft.codeanalysis.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.analyzers/3.11.0/microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.common/5.0.0/microsoft.codeanalysis.common.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.csharp/5.0.0/microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.csharp.scripting/5.0.0/microsoft.codeanalysis.csharp.scripting.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/5.0.0/microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.scripting/5.0.0/microsoft.codeanalysis.scripting.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.scripting.common/5.0.0/microsoft.codeanalysis.scripting.common.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.visualbasic/5.0.0/microsoft.codeanalysis.visualbasic.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.visualbasic.workspaces/5.0.0/microsoft.codeanalysis.visualbasic.workspaces.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.workspaces.common/5.0.0/microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.ambientmetadata.application/10.1.0/microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.compliance.abstractions/10.1.0/microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.dependencyinjection.autoactivation/10.1.0/microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.diagnostics.exceptionsummarization/10.1.0/microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.http.diagnostics/10.1.0/microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.http.resilience/10.1.0/microsoft.extensions.http.resilience.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.resilience/10.1.0/microsoft.extensions.resilience.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.servicediscovery/10.1.0/microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.servicediscovery.abstractions/10.1.0/microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.telemetry/10.1.0/microsoft.extensions.telemetry.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.telemetry.abstractions/10.1.0/microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.abstractions/2.7.0/nats.client.abstractions.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.core/2.7.0/nats.client.core.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.hosting/2.7.0/nats.client.hosting.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.jetstream/2.7.0/nats.client.jetstream.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.keyvaluestore/2.7.0/nats.client.keyvaluestore.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.objectstore/2.7.0/nats.client.objectstore.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.serializers.json/2.7.0/nats.client.serializers.json.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.services/2.7.0/nats.client.services.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.simplified/2.7.0/nats.client.simplified.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.net/2.7.0/nats.net.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nettopologysuite/2.5.0/nettopologysuite.2.5.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nettopologysuite.io.postgis/2.1.0/nettopologysuite.io.postgis.2.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/newid/4.0.1/newid.4.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/npgsql/10.0.0/npgsql.10.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/npgsql.dependencyinjection/10.0.0/npgsql.dependencyinjection.10.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/npgsql.json.net/9.0.4/npgsql.json.net.9.0.4.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/npgsql.nettopologysuite/9.0.4/npgsql.nettopologysuite.9.0.4.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/npgsql.opentelemetry/10.0.0/npgsql.opentelemetry.10.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry/1.14.0/opentelemetry.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.api/1.14.0/opentelemetry.api.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.api.providerbuilderextensions/1.14.0/opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.exporter.opentelemetryprotocol/1.14.0/opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.extensions.hosting/1.14.0/opentelemetry.extensions.hosting.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.aspnetcore/1.14.0/opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.http/1.14.0/opentelemetry.instrumentation.http.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.runtime/1.14.0/opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.core/8.6.5/polly.core.8.6.5.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.extensions/8.4.2/polly.extensions.8.4.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.ratelimiting/8.4.2/polly.ratelimiting.8.4.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/spectre.console/0.53.0/spectre.console.0.53.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition/9.0.0/system.composition.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.attributedmodel/9.0.0/system.composition.attributedmodel.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.convention/9.0.0/system.composition.convention.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.hosting/9.0.0/system.composition.hosting.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.runtime/9.0.0/system.composition.runtime.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.typedparts/9.0.0/system.composition.typedparts.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/weasel.core/8.5.0/weasel.core.8.5.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/weasel.postgresql/8.5.0/weasel.postgresql.8.5.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx/5.13.0/wolverinefx.5.13.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx.marten/5.13.0/wolverinefx.marten.5.13.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx.nats/5.13.0/wolverinefx.nats.5.13.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx.postgresql/5.13.0/wolverinefx.postgresql.5.13.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx.rdbms/5.13.0/wolverinefx.rdbms.5.13.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/project.packagespec.json b/wolverine-nats/WolverineAndNats/ApiTwo/obj/project.packagespec.json new file mode 100644 index 0000000..bbc7414 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/ApiTwo.csproj","projectName":"ApiTwo","projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/ApiTwo.csproj","outputPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net10.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net10.0":{"targetAlias":"net10.0","projectReferences":{"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj":{"projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj"},"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj":{"projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"all"},"SdkAnalysisLevel":"10.0.100"}"frameworks":{"net10.0":{"targetAlias":"net10.0","dependencies":{"Aspire.Npgsql":{"target":"Package","version":"[13.1.0, )"},"WolverineFx.Marten":{"target":"Package","version":"[5.13.0, )"},"WolverineFx.Nats":{"target":"Package","version":"[5.13.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json","packagesToPrune":{"Microsoft.AspNetCore":"(,10.0.32767]","Microsoft.AspNetCore.Antiforgery":"(,10.0.32767]","Microsoft.AspNetCore.App":"(,10.0.32767]","Microsoft.AspNetCore.Authentication":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.BearerToken":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Cookies":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Core":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.OAuth":"(,10.0.32767]","Microsoft.AspNetCore.Authorization":"(,10.0.32767]","Microsoft.AspNetCore.Authorization.Policy":"(,10.0.32767]","Microsoft.AspNetCore.Components":"(,10.0.32767]","Microsoft.AspNetCore.Components.Authorization":"(,10.0.32767]","Microsoft.AspNetCore.Components.Endpoints":"(,10.0.32767]","Microsoft.AspNetCore.Components.Forms":"(,10.0.32767]","Microsoft.AspNetCore.Components.Server":"(,10.0.32767]","Microsoft.AspNetCore.Components.Web":"(,10.0.32767]","Microsoft.AspNetCore.Connections.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.CookiePolicy":"(,10.0.32767]","Microsoft.AspNetCore.Cors":"(,10.0.32767]","Microsoft.AspNetCore.Cryptography.Internal":"(,10.0.32767]","Microsoft.AspNetCore.Cryptography.KeyDerivation":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection.Extensions":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics.HealthChecks":"(,10.0.32767]","Microsoft.AspNetCore.HostFiltering":"(,10.0.32767]","Microsoft.AspNetCore.Hosting":"(,10.0.32767]","Microsoft.AspNetCore.Hosting.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Hosting.Server.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Html.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Http":"(,10.0.32767]","Microsoft.AspNetCore.Http.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Http.Connections":"(,10.0.32767]","Microsoft.AspNetCore.Http.Connections.Common":"(,10.0.32767]","Microsoft.AspNetCore.Http.Extensions":"(,10.0.32767]","Microsoft.AspNetCore.Http.Features":"(,10.0.32767]","Microsoft.AspNetCore.Http.Results":"(,10.0.32767]","Microsoft.AspNetCore.HttpLogging":"(,10.0.32767]","Microsoft.AspNetCore.HttpOverrides":"(,10.0.32767]","Microsoft.AspNetCore.HttpsPolicy":"(,10.0.32767]","Microsoft.AspNetCore.Identity":"(,10.0.32767]","Microsoft.AspNetCore.Localization":"(,10.0.32767]","Microsoft.AspNetCore.Localization.Routing":"(,10.0.32767]","Microsoft.AspNetCore.Metadata":"(,10.0.32767]","Microsoft.AspNetCore.Mvc":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.ApiExplorer":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Core":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Cors":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.DataAnnotations":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Formatters.Json":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Formatters.Xml":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Localization":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Razor":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.RazorPages":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.TagHelpers":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.ViewFeatures":"(,10.0.32767]","Microsoft.AspNetCore.OutputCaching":"(,10.0.32767]","Microsoft.AspNetCore.RateLimiting":"(,10.0.32767]","Microsoft.AspNetCore.Razor":"(,10.0.32767]","Microsoft.AspNetCore.Razor.Runtime":"(,10.0.32767]","Microsoft.AspNetCore.RequestDecompression":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCaching":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCaching.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCompression":"(,10.0.32767]","Microsoft.AspNetCore.Rewrite":"(,10.0.32767]","Microsoft.AspNetCore.Routing":"(,10.0.32767]","Microsoft.AspNetCore.Routing.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Server.HttpSys":"(,10.0.32767]","Microsoft.AspNetCore.Server.IIS":"(,10.0.32767]","Microsoft.AspNetCore.Server.IISIntegration":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Core":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.Quic":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets":"(,10.0.32767]","Microsoft.AspNetCore.Session":"(,10.0.32767]","Microsoft.AspNetCore.SignalR":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Common":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Core":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Protocols.Json":"(,10.0.32767]","Microsoft.AspNetCore.StaticAssets":"(,10.0.32767]","Microsoft.AspNetCore.StaticFiles":"(,10.0.32767]","Microsoft.AspNetCore.WebSockets":"(,10.0.32767]","Microsoft.AspNetCore.WebUtilities":"(,10.0.32767]","Microsoft.CSharp":"(,4.7.32767]","Microsoft.Extensions.Caching.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Caching.Memory":"(,10.0.32767]","Microsoft.Extensions.Configuration":"(,10.0.32767]","Microsoft.Extensions.Configuration.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Configuration.Binder":"(,10.0.32767]","Microsoft.Extensions.Configuration.CommandLine":"(,10.0.32767]","Microsoft.Extensions.Configuration.EnvironmentVariables":"(,10.0.32767]","Microsoft.Extensions.Configuration.FileExtensions":"(,10.0.32767]","Microsoft.Extensions.Configuration.Ini":"(,10.0.32767]","Microsoft.Extensions.Configuration.Json":"(,10.0.32767]","Microsoft.Extensions.Configuration.KeyPerFile":"(,10.0.32767]","Microsoft.Extensions.Configuration.UserSecrets":"(,10.0.32767]","Microsoft.Extensions.Configuration.Xml":"(,10.0.32767]","Microsoft.Extensions.DependencyInjection":"(,10.0.32767]","Microsoft.Extensions.DependencyInjection.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Diagnostics":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.HealthChecks":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Features":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Abstractions":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Composite":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Physical":"(,10.0.32767]","Microsoft.Extensions.FileSystemGlobbing":"(,10.0.32767]","Microsoft.Extensions.Hosting":"(,10.0.32767]","Microsoft.Extensions.Hosting.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Http":"(,10.0.32767]","Microsoft.Extensions.Identity.Core":"(,10.0.32767]","Microsoft.Extensions.Identity.Stores":"(,10.0.32767]","Microsoft.Extensions.Localization":"(,10.0.32767]","Microsoft.Extensions.Localization.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Logging":"(,10.0.32767]","Microsoft.Extensions.Logging.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Logging.Configuration":"(,10.0.32767]","Microsoft.Extensions.Logging.Console":"(,10.0.32767]","Microsoft.Extensions.Logging.Debug":"(,10.0.32767]","Microsoft.Extensions.Logging.EventLog":"(,10.0.32767]","Microsoft.Extensions.Logging.EventSource":"(,10.0.32767]","Microsoft.Extensions.Logging.TraceSource":"(,10.0.32767]","Microsoft.Extensions.ObjectPool":"(,10.0.32767]","Microsoft.Extensions.Options":"(,10.0.32767]","Microsoft.Extensions.Options.ConfigurationExtensions":"(,10.0.32767]","Microsoft.Extensions.Options.DataAnnotations":"(,10.0.32767]","Microsoft.Extensions.Primitives":"(,10.0.32767]","Microsoft.Extensions.Validation":"(,10.0.32767]","Microsoft.Extensions.WebEncoders":"(,10.0.32767]","Microsoft.JSInterop":"(,10.0.32767]","Microsoft.Net.Http.Headers":"(,10.0.32767]","Microsoft.VisualBasic":"(,10.4.32767]","Microsoft.Win32.Primitives":"(,4.3.32767]","Microsoft.Win32.Registry":"(,5.0.32767]","runtime.any.System.Collections":"(,4.3.32767]","runtime.any.System.Diagnostics.Tools":"(,4.3.32767]","runtime.any.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.any.System.Globalization":"(,4.3.32767]","runtime.any.System.Globalization.Calendars":"(,4.3.32767]","runtime.any.System.IO":"(,4.3.32767]","runtime.any.System.Reflection":"(,4.3.32767]","runtime.any.System.Reflection.Extensions":"(,4.3.32767]","runtime.any.System.Reflection.Primitives":"(,4.3.32767]","runtime.any.System.Resources.ResourceManager":"(,4.3.32767]","runtime.any.System.Runtime":"(,4.3.32767]","runtime.any.System.Runtime.Handles":"(,4.3.32767]","runtime.any.System.Runtime.InteropServices":"(,4.3.32767]","runtime.any.System.Text.Encoding":"(,4.3.32767]","runtime.any.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.any.System.Threading.Tasks":"(,4.3.32767]","runtime.any.System.Threading.Timer":"(,4.3.32767]","runtime.aot.System.Collections":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tools":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.aot.System.Globalization":"(,4.3.32767]","runtime.aot.System.Globalization.Calendars":"(,4.3.32767]","runtime.aot.System.IO":"(,4.3.32767]","runtime.aot.System.Reflection":"(,4.3.32767]","runtime.aot.System.Reflection.Extensions":"(,4.3.32767]","runtime.aot.System.Reflection.Primitives":"(,4.3.32767]","runtime.aot.System.Resources.ResourceManager":"(,4.3.32767]","runtime.aot.System.Runtime":"(,4.3.32767]","runtime.aot.System.Runtime.Handles":"(,4.3.32767]","runtime.aot.System.Runtime.InteropServices":"(,4.3.32767]","runtime.aot.System.Text.Encoding":"(,4.3.32767]","runtime.aot.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.aot.System.Threading.Tasks":"(,4.3.32767]","runtime.aot.System.Threading.Timer":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.unix.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.unix.System.Console":"(,4.3.32767]","runtime.unix.System.Diagnostics.Debug":"(,4.3.32767]","runtime.unix.System.IO.FileSystem":"(,4.3.32767]","runtime.unix.System.Net.Primitives":"(,4.3.32767]","runtime.unix.System.Net.Sockets":"(,4.3.32767]","runtime.unix.System.Private.Uri":"(,4.3.32767]","runtime.unix.System.Runtime.Extensions":"(,4.3.32767]","runtime.win.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.win.System.Console":"(,4.3.32767]","runtime.win.System.Diagnostics.Debug":"(,4.3.32767]","runtime.win.System.IO.FileSystem":"(,4.3.32767]","runtime.win.System.Net.Primitives":"(,4.3.32767]","runtime.win.System.Net.Sockets":"(,4.3.32767]","runtime.win.System.Runtime.Extensions":"(,4.3.32767]","runtime.win10-arm-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-arm64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win10-x64-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-x86-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7-x86.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7.System.Private.Uri":"(,4.3.32767]","runtime.win8-arm.runtime.native.System.IO.Compression":"(,4.3.32767]","System.AppContext":"(,4.3.32767]","System.Buffers":"(,5.0.32767]","System.Collections":"(,4.3.32767]","System.Collections.Concurrent":"(,4.3.32767]","System.Collections.Immutable":"(,10.0.32767]","System.Collections.NonGeneric":"(,4.3.32767]","System.Collections.Specialized":"(,4.3.32767]","System.ComponentModel":"(,4.3.32767]","System.ComponentModel.Annotations":"(,4.3.32767]","System.ComponentModel.EventBasedAsync":"(,4.3.32767]","System.ComponentModel.Primitives":"(,4.3.32767]","System.ComponentModel.TypeConverter":"(,4.3.32767]","System.Console":"(,4.3.32767]","System.Data.Common":"(,4.3.32767]","System.Data.DataSetExtensions":"(,4.4.32767]","System.Diagnostics.Contracts":"(,4.3.32767]","System.Diagnostics.Debug":"(,4.3.32767]","System.Diagnostics.DiagnosticSource":"(,10.0.32767]","System.Diagnostics.EventLog":"(,10.0.32767]","System.Diagnostics.FileVersionInfo":"(,4.3.32767]","System.Diagnostics.Process":"(,4.3.32767]","System.Diagnostics.StackTrace":"(,4.3.32767]","System.Diagnostics.TextWriterTraceListener":"(,4.3.32767]","System.Diagnostics.Tools":"(,4.3.32767]","System.Diagnostics.TraceSource":"(,4.3.32767]","System.Diagnostics.Tracing":"(,4.3.32767]","System.Drawing.Primitives":"(,4.3.32767]","System.Dynamic.Runtime":"(,4.3.32767]","System.Formats.Asn1":"(,10.0.32767]","System.Formats.Cbor":"(,10.0.32767]","System.Formats.Tar":"(,10.0.32767]","System.Globalization":"(,4.3.32767]","System.Globalization.Calendars":"(,4.3.32767]","System.Globalization.Extensions":"(,4.3.32767]","System.IO":"(,4.3.32767]","System.IO.Compression":"(,4.3.32767]","System.IO.Compression.ZipFile":"(,4.3.32767]","System.IO.FileSystem":"(,4.3.32767]","System.IO.FileSystem.AccessControl":"(,4.4.32767]","System.IO.FileSystem.DriveInfo":"(,4.3.32767]","System.IO.FileSystem.Primitives":"(,4.3.32767]","System.IO.FileSystem.Watcher":"(,4.3.32767]","System.IO.IsolatedStorage":"(,4.3.32767]","System.IO.MemoryMappedFiles":"(,4.3.32767]","System.IO.Pipelines":"(,10.0.32767]","System.IO.Pipes":"(,4.3.32767]","System.IO.Pipes.AccessControl":"(,5.0.32767]","System.IO.UnmanagedMemoryStream":"(,4.3.32767]","System.Linq":"(,4.3.32767]","System.Linq.AsyncEnumerable":"(,10.0.32767]","System.Linq.Expressions":"(,4.3.32767]","System.Linq.Parallel":"(,4.3.32767]","System.Linq.Queryable":"(,4.3.32767]","System.Memory":"(,5.0.32767]","System.Net.Http":"(,4.3.32767]","System.Net.Http.Json":"(,10.0.32767]","System.Net.NameResolution":"(,4.3.32767]","System.Net.NetworkInformation":"(,4.3.32767]","System.Net.Ping":"(,4.3.32767]","System.Net.Primitives":"(,4.3.32767]","System.Net.Requests":"(,4.3.32767]","System.Net.Security":"(,4.3.32767]","System.Net.ServerSentEvents":"(,10.0.32767]","System.Net.Sockets":"(,4.3.32767]","System.Net.WebHeaderCollection":"(,4.3.32767]","System.Net.WebSockets":"(,4.3.32767]","System.Net.WebSockets.Client":"(,4.3.32767]","System.Numerics.Vectors":"(,5.0.32767]","System.ObjectModel":"(,4.3.32767]","System.Private.DataContractSerialization":"(,4.3.32767]","System.Private.Uri":"(,4.3.32767]","System.Reflection":"(,4.3.32767]","System.Reflection.DispatchProxy":"(,6.0.32767]","System.Reflection.Emit":"(,4.7.32767]","System.Reflection.Emit.ILGeneration":"(,4.7.32767]","System.Reflection.Emit.Lightweight":"(,4.7.32767]","System.Reflection.Extensions":"(,4.3.32767]","System.Reflection.Metadata":"(,10.0.32767]","System.Reflection.Primitives":"(,4.3.32767]","System.Reflection.TypeExtensions":"(,4.3.32767]","System.Resources.Reader":"(,4.3.32767]","System.Resources.ResourceManager":"(,4.3.32767]","System.Resources.Writer":"(,4.3.32767]","System.Runtime":"(,4.3.32767]","System.Runtime.CompilerServices.Unsafe":"(,7.0.32767]","System.Runtime.CompilerServices.VisualC":"(,4.3.32767]","System.Runtime.Extensions":"(,4.3.32767]","System.Runtime.Handles":"(,4.3.32767]","System.Runtime.InteropServices":"(,4.3.32767]","System.Runtime.InteropServices.RuntimeInformation":"(,4.3.32767]","System.Runtime.Loader":"(,4.3.32767]","System.Runtime.Numerics":"(,4.3.32767]","System.Runtime.Serialization.Formatters":"(,4.3.32767]","System.Runtime.Serialization.Json":"(,4.3.32767]","System.Runtime.Serialization.Primitives":"(,4.3.32767]","System.Runtime.Serialization.Xml":"(,4.3.32767]","System.Security.AccessControl":"(,6.0.32767]","System.Security.Claims":"(,4.3.32767]","System.Security.Cryptography.Algorithms":"(,4.3.32767]","System.Security.Cryptography.Cng":"(,5.0.32767]","System.Security.Cryptography.Csp":"(,4.3.32767]","System.Security.Cryptography.Encoding":"(,4.3.32767]","System.Security.Cryptography.OpenSsl":"(,5.0.32767]","System.Security.Cryptography.Primitives":"(,4.3.32767]","System.Security.Cryptography.X509Certificates":"(,4.3.32767]","System.Security.Cryptography.Xml":"(,10.0.32767]","System.Security.Principal":"(,4.3.32767]","System.Security.Principal.Windows":"(,5.0.32767]","System.Security.SecureString":"(,4.3.32767]","System.Text.Encoding":"(,4.3.32767]","System.Text.Encoding.CodePages":"(,10.0.32767]","System.Text.Encoding.Extensions":"(,4.3.32767]","System.Text.Encodings.Web":"(,10.0.32767]","System.Text.Json":"(,10.0.32767]","System.Text.RegularExpressions":"(,4.3.32767]","System.Threading":"(,4.3.32767]","System.Threading.AccessControl":"(,10.0.32767]","System.Threading.Channels":"(,10.0.32767]","System.Threading.Overlapped":"(,4.3.32767]","System.Threading.RateLimiting":"(,10.0.32767]","System.Threading.Tasks":"(,4.3.32767]","System.Threading.Tasks.Dataflow":"(,10.0.32767]","System.Threading.Tasks.Extensions":"(,5.0.32767]","System.Threading.Tasks.Parallel":"(,4.3.32767]","System.Threading.Thread":"(,4.3.32767]","System.Threading.ThreadPool":"(,4.3.32767]","System.Threading.Timer":"(,4.3.32767]","System.ValueTuple":"(,4.5.32767]","System.Xml.ReaderWriter":"(,4.3.32767]","System.Xml.XDocument":"(,4.3.32767]","System.Xml.XmlDocument":"(,4.3.32767]","System.Xml.XmlSerializer":"(,4.3.32767]","System.Xml.XPath":"(,4.3.32767]","System.Xml.XPath.XDocument":"(,5.0.32767]"}}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/rider.project.model.nuget.info b/wolverine-nats/WolverineAndNats/ApiTwo/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..a776391 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17700360421673571 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ApiTwo/obj/rider.project.restore.info b/wolverine-nats/WolverineAndNats/ApiTwo/obj/rider.project.restore.info new file mode 100644 index 0000000..611102e --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ApiTwo/obj/rider.project.restore.info @@ -0,0 +1 @@ +17700382162661714 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/AppHost/AppHost.cs b/wolverine-nats/WolverineAndNats/AppHost/AppHost.cs new file mode 100644 index 0000000..1f973c2 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/AppHost.cs @@ -0,0 +1,38 @@ +var builder = DistributedApplication.CreateBuilder(args); + +var natsTransport = builder.AddNats("nats") + .WithJetStream() + .WithLifetime(ContainerLifetime.Persistent); + +var pg = builder.AddPostgres("pg") + .WithLifetime(ContainerLifetime.Persistent); + +var dbOne = pg.AddDatabase("db-one"); +var dbTwo = pg.AddDatabase("db-two"); + +var apiOne = builder.AddProject("one") + .WithReference(dbOne) + .WithReference(natsTransport) + .WaitFor(natsTransport) + .WaitFor(dbOne); + +builder.AddProject("two") + .WithReference(dbTwo) + .WithReference(natsTransport) + .WaitFor(natsTransport) + .WaitFor(apiOne) // apiOne creates the "PEOPLE" stream + .WaitFor(dbTwo); + +builder.AddProject("listener") + .WithReplicas(2) + .WithReference(natsTransport) + .WaitFor(natsTransport) + .WaitFor(apiOne); // apiOne creates the "PEOPLE" stream + +builder.AddProject("late-comer") + .WithExplicitStart() + .WithReference(natsTransport) + .WaitFor(natsTransport) + .WaitFor(apiOne); // apiOne creates the "PEOPLE" stream + +builder.Build().Run(); \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/AppHost/AppHost.csproj b/wolverine-nats/WolverineAndNats/AppHost/AppHost.csproj new file mode 100644 index 0000000..d7f479d --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/AppHost.csproj @@ -0,0 +1,23 @@ + + + + Exe + net10.0 + enable + enable + 3fd9a60b-40a2-4d52-bdae-fcb13dceb6d3 + + + + + + + + + + + + + + + diff --git a/wolverine-nats/WolverineAndNats/AppHost/Properties/launchSettings.json b/wolverine-nats/WolverineAndNats/AppHost/Properties/launchSettings.json new file mode 100644 index 0000000..b9d000f --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/Properties/launchSettings.json @@ -0,0 +1,18 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "https://localhost:5000", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development", + "DOTNET_ENVIRONMENT": "Development", + "ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:21090", + "ASPIRE_DASHBOARD_MCP_ENDPOINT_URL": "https://localhost:23000", + "ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:22128" + } + } + } +} diff --git a/wolverine-nats/WolverineAndNats/AppHost/appsettings.Development.json b/wolverine-nats/WolverineAndNats/AppHost/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/wolverine-nats/WolverineAndNats/AppHost/appsettings.json b/wolverine-nats/WolverineAndNats/AppHost/appsettings.json new file mode 100644 index 0000000..31c092a --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning", + "Aspire.Hosting.Dcp": "Warning" + } + } +} diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost new file mode 100755 index 0000000..e38f5bc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.deps.json b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.deps.json new file mode 100644 index 0000000..c89b51d --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.deps.json @@ -0,0 +1,1006 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "AppHost/1.0.0": { + "dependencies": { + "Aspire.Hosting.AppHost": "13.1.0", + "Aspire.Hosting.Nats": "13.1.0", + "Aspire.Hosting.PostgreSQL": "13.1.0" + }, + "runtime": { + "AppHost.dll": {} + } + }, + "Aspire.Hosting/13.1.0": { + "dependencies": { + "AspNetCore.HealthChecks.Uris": "9.0.0", + "Google.Protobuf": "3.33.0", + "Grpc.AspNetCore": "2.71.0", + "Grpc.Net.ClientFactory": "2.71.0", + "Humanizer.Core": "2.14.1", + "JsonPatch.Net": "3.3.0", + "KubernetesClient": "18.0.5", + "Microsoft.Extensions.Hosting": "10.0.1", + "Newtonsoft.Json": "13.0.4", + "Polly.Core": "8.6.4", + "Semver": "3.0.0", + "StreamJsonRpc": "2.22.23", + "System.IO.Hashing": "9.0.10" + }, + "runtime": { + "lib/net8.0/Aspire.Hosting.dll": { + "assemblyVersion": "13.1.0.0", + "fileVersion": "13.100.25.61603" + } + }, + "resources": { + "lib/net8.0/cs/Aspire.Hosting.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Aspire.Hosting.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Aspire.Hosting.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Aspire.Hosting.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Aspire.Hosting.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Aspire.Hosting.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Aspire.Hosting.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Aspire.Hosting.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Aspire.Hosting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Aspire.Hosting.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Aspire.Hosting.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Aspire.Hosting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Aspire.Hosting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Aspire.Hosting.AppHost/13.1.0": { + "dependencies": { + "AspNetCore.HealthChecks.Uris": "9.0.0", + "Aspire.Hosting": "13.1.0", + "Google.Protobuf": "3.33.0", + "Grpc.AspNetCore": "2.71.0", + "Grpc.Net.ClientFactory": "2.71.0", + "Humanizer.Core": "2.14.1", + "JsonPatch.Net": "3.3.0", + "KubernetesClient": "18.0.5", + "Microsoft.Extensions.Hosting": "10.0.1", + "Newtonsoft.Json": "13.0.4", + "Polly.Core": "8.6.4", + "Semver": "3.0.0", + "StreamJsonRpc": "2.22.23", + "System.IO.Hashing": "9.0.10" + }, + "runtime": { + "lib/net10.0/Aspire.Hosting.AppHost.dll": { + "assemblyVersion": "13.1.0.0", + "fileVersion": "13.100.25.61603" + } + } + }, + "Aspire.Hosting.Nats/13.1.0": { + "dependencies": { + "AspNetCore.HealthChecks.Uris": "9.0.0", + "Aspire.Hosting": "13.1.0", + "Google.Protobuf": "3.33.0", + "Grpc.AspNetCore": "2.71.0", + "Grpc.Net.ClientFactory": "2.71.0", + "Humanizer.Core": "2.14.1", + "JsonPatch.Net": "3.3.0", + "KubernetesClient": "18.0.5", + "Microsoft.Extensions.Hosting": "10.0.1", + "NATS.Net": "2.6.11", + "Newtonsoft.Json": "13.0.4", + "Polly.Core": "8.6.4", + "Semver": "3.0.0", + "StreamJsonRpc": "2.22.23", + "System.IO.Hashing": "9.0.10" + }, + "runtime": { + "lib/net8.0/Aspire.Hosting.Nats.dll": { + "assemblyVersion": "13.1.0.0", + "fileVersion": "13.100.25.61603" + } + } + }, + "Aspire.Hosting.PostgreSQL/13.1.0": { + "dependencies": { + "AspNetCore.HealthChecks.NpgSql": "9.0.0", + "AspNetCore.HealthChecks.Uris": "9.0.0", + "Aspire.Hosting": "13.1.0", + "Google.Protobuf": "3.33.0", + "Grpc.AspNetCore": "2.71.0", + "Grpc.Net.ClientFactory": "2.71.0", + "Humanizer.Core": "2.14.1", + "JsonPatch.Net": "3.3.0", + "KubernetesClient": "18.0.5", + "Microsoft.Extensions.Hosting": "10.0.1", + "Newtonsoft.Json": "13.0.4", + "Polly.Core": "8.6.4", + "Semver": "3.0.0", + "StreamJsonRpc": "2.22.23", + "System.IO.Hashing": "9.0.10" + }, + "runtime": { + "lib/net8.0/Aspire.Hosting.PostgreSQL.dll": { + "assemblyVersion": "13.1.0.0", + "fileVersion": "13.100.25.61603" + } + } + }, + "AspNetCore.HealthChecks.NpgSql/9.0.0": { + "dependencies": { + "Npgsql": "8.0.3" + }, + "runtime": { + "lib/net8.0/HealthChecks.NpgSql.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.0.0" + } + } + }, + "AspNetCore.HealthChecks.Uris/9.0.0": { + "runtime": { + "lib/net8.0/HealthChecks.Uris.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.0.0" + } + } + }, + "Fractions/7.3.0": { + "runtime": { + "lib/netstandard2.1/Fractions.dll": { + "assemblyVersion": "7.3.0.0", + "fileVersion": "7.3.0.0" + } + } + }, + "Google.Protobuf/3.33.0": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.33.0.0", + "fileVersion": "3.33.0.0" + } + } + }, + "Grpc.AspNetCore/2.71.0": { + "dependencies": { + "Google.Protobuf": "3.33.0", + "Grpc.AspNetCore.Server.ClientFactory": "2.71.0" + } + }, + "Grpc.AspNetCore.Server/2.71.0": { + "dependencies": { + "Grpc.Net.Common": "2.71.0" + }, + "runtime": { + "lib/net9.0/Grpc.AspNetCore.Server.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.71.0.0" + } + } + }, + "Grpc.AspNetCore.Server.ClientFactory/2.71.0": { + "dependencies": { + "Grpc.AspNetCore.Server": "2.71.0", + "Grpc.Net.ClientFactory": "2.71.0" + }, + "runtime": { + "lib/net9.0/Grpc.AspNetCore.Server.ClientFactory.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.71.0.0" + } + } + }, + "Grpc.Core.Api/2.71.0": { + "runtime": { + "lib/netstandard2.1/Grpc.Core.Api.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.71.0.0" + } + } + }, + "Grpc.Net.Client/2.71.0": { + "dependencies": { + "Grpc.Net.Common": "2.71.0" + }, + "runtime": { + "lib/net8.0/Grpc.Net.Client.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.71.0.0" + } + } + }, + "Grpc.Net.ClientFactory/2.71.0": { + "dependencies": { + "Grpc.Net.Client": "2.71.0" + }, + "runtime": { + "lib/net8.0/Grpc.Net.ClientFactory.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.71.0.0" + } + } + }, + "Grpc.Net.Common/2.71.0": { + "dependencies": { + "Grpc.Core.Api": "2.71.0" + }, + "runtime": { + "lib/net8.0/Grpc.Net.Common.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.71.0.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Json.More.Net/2.1.0": { + "runtime": { + "lib/net9.0/Json.More.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.1.0.0" + } + } + }, + "JsonPatch.Net/3.3.0": { + "dependencies": { + "JsonPointer.Net": "5.2.0" + }, + "runtime": { + "lib/net9.0/JsonPatch.Net.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.3.0.0" + } + } + }, + "JsonPointer.Net/5.2.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Json.More.Net": "2.1.0" + }, + "runtime": { + "lib/net9.0/JsonPointer.Net.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.2.0.0" + } + } + }, + "KubernetesClient/18.0.5": { + "dependencies": { + "Fractions": "7.3.0", + "YamlDotNet": "16.3.0" + }, + "runtime": { + "lib/net9.0/KubernetesClient.dll": { + "assemblyVersion": "18.0.0.0", + "fileVersion": "18.0.5.10530" + } + } + }, + "MessagePack/2.5.192": { + "dependencies": { + "MessagePack.Annotations": "2.5.192", + "Microsoft.NET.StringTools": "17.6.3" + }, + "runtime": { + "lib/net6.0/MessagePack.dll": { + "assemblyVersion": "2.5.0.0", + "fileVersion": "2.5.192.54228" + } + } + }, + "MessagePack.Annotations/2.5.192": { + "runtime": { + "lib/netstandard2.0/MessagePack.Annotations.dll": { + "assemblyVersion": "2.5.0.0", + "fileVersion": "2.5.192.54228" + } + } + }, + "Microsoft.Extensions.Hosting/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Logging.EventLog": "10.0.1" + } + }, + "Microsoft.Extensions.Logging.EventLog/10.0.1": { + "dependencies": { + "System.Diagnostics.EventLog": "10.0.1" + } + }, + "Microsoft.NET.StringTools/17.6.3": { + "runtime": { + "lib/net7.0/Microsoft.NET.StringTools.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "17.6.3.22601" + } + } + }, + "Microsoft.VisualStudio.Threading.Only/17.13.61": { + "dependencies": { + "Microsoft.VisualStudio.Validation": "17.8.8" + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Threading.dll": { + "assemblyVersion": "17.13.0.0", + "fileVersion": "17.13.61.36374" + } + }, + "resources": { + "lib/net8.0/cs/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.VisualStudio.Validation/17.8.8": { + "runtime": { + "lib/net6.0/Microsoft.VisualStudio.Validation.dll": { + "assemblyVersion": "17.8.0.0", + "fileVersion": "17.8.8.15457" + } + }, + "resources": { + "lib/net6.0/cs/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "cs" + }, + "lib/net6.0/de/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "de" + }, + "lib/net6.0/es/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "es" + }, + "lib/net6.0/fr/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "fr" + }, + "lib/net6.0/it/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "it" + }, + "lib/net6.0/ja/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "ja" + }, + "lib/net6.0/ko/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "ko" + }, + "lib/net6.0/pl/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "pl" + }, + "lib/net6.0/pt-BR/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "pt-BR" + }, + "lib/net6.0/ru/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "ru" + }, + "lib/net6.0/tr/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "tr" + }, + "lib/net6.0/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net6.0/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "NATS.Client.Core/2.6.11": { + "runtime": { + "lib/net8.0/NATS.Client.Core.dll": { + "assemblyVersion": "2.6.11.0", + "fileVersion": "2.6.11.0" + } + } + }, + "NATS.Client.Hosting/2.6.11": { + "dependencies": { + "NATS.Client.Core": "2.6.11" + }, + "runtime": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "assemblyVersion": "2.6.11.0", + "fileVersion": "2.6.11.0" + } + } + }, + "NATS.Client.JetStream/2.6.11": { + "dependencies": { + "NATS.Client.Core": "2.6.11" + }, + "runtime": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "assemblyVersion": "2.6.11.0", + "fileVersion": "2.6.11.0" + } + } + }, + "NATS.Client.KeyValueStore/2.6.11": { + "dependencies": { + "NATS.Client.JetStream": "2.6.11" + }, + "runtime": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "assemblyVersion": "2.6.11.0", + "fileVersion": "2.6.11.0" + } + } + }, + "NATS.Client.ObjectStore/2.6.11": { + "dependencies": { + "NATS.Client.JetStream": "2.6.11" + }, + "runtime": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "assemblyVersion": "2.6.11.0", + "fileVersion": "2.6.11.0" + } + } + }, + "NATS.Client.Serializers.Json/2.6.11": { + "dependencies": { + "NATS.Client.Core": "2.6.11" + }, + "runtime": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "assemblyVersion": "2.6.11.0", + "fileVersion": "2.6.11.0" + } + } + }, + "NATS.Client.Services/2.6.11": { + "dependencies": { + "NATS.Client.Core": "2.6.11" + }, + "runtime": { + "lib/net8.0/NATS.Client.Services.dll": { + "assemblyVersion": "2.6.11.0", + "fileVersion": "2.6.11.0" + } + } + }, + "NATS.Client.Simplified/2.6.11": { + "dependencies": { + "NATS.Client.Core": "2.6.11", + "NATS.Client.Serializers.Json": "2.6.11" + }, + "runtime": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "assemblyVersion": "2.6.11.0", + "fileVersion": "2.6.11.0" + } + } + }, + "NATS.Net/2.6.11": { + "dependencies": { + "NATS.Client.Core": "2.6.11", + "NATS.Client.Hosting": "2.6.11", + "NATS.Client.JetStream": "2.6.11", + "NATS.Client.KeyValueStore": "2.6.11", + "NATS.Client.ObjectStore": "2.6.11", + "NATS.Client.Serializers.Json": "2.6.11", + "NATS.Client.Services": "2.6.11", + "NATS.Client.Simplified": "2.6.11" + }, + "runtime": { + "lib/net8.0/NATS.Net.dll": { + "assemblyVersion": "2.6.11.0", + "fileVersion": "2.6.11.0" + } + } + }, + "Nerdbank.Streams/2.12.87": { + "dependencies": { + "Microsoft.VisualStudio.Threading.Only": "17.13.61", + "Microsoft.VisualStudio.Validation": "17.8.8" + }, + "runtime": { + "lib/net8.0/Nerdbank.Streams.dll": { + "assemblyVersion": "2.12.0.0", + "fileVersion": "2.12.87.45167" + } + } + }, + "Newtonsoft.Json/13.0.4": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.4.30916" + } + } + }, + "Npgsql/8.0.3": { + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.3.0" + } + } + }, + "Polly.Core/8.6.4": { + "runtime": { + "lib/net8.0/Polly.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.6.4.5033" + } + } + }, + "Semver/3.0.0": { + "runtime": { + "lib/net5.0/Semver.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "StreamJsonRpc/2.22.23": { + "dependencies": { + "MessagePack": "2.5.192", + "Microsoft.VisualStudio.Threading.Only": "17.13.61", + "Microsoft.VisualStudio.Validation": "17.8.8", + "Nerdbank.Streams": "2.12.87", + "Newtonsoft.Json": "13.0.4" + }, + "runtime": { + "lib/net8.0/StreamJsonRpc.dll": { + "assemblyVersion": "2.22.0.0", + "fileVersion": "2.22.23.57195" + } + }, + "resources": { + "lib/net8.0/cs/StreamJsonRpc.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/StreamJsonRpc.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/StreamJsonRpc.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/StreamJsonRpc.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/StreamJsonRpc.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/StreamJsonRpc.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/StreamJsonRpc.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/StreamJsonRpc.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/StreamJsonRpc.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/StreamJsonRpc.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/StreamJsonRpc.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/StreamJsonRpc.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/StreamJsonRpc.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Diagnostics.EventLog/10.0.1": { + "runtimeTargets": { + "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "System.IO.Hashing/9.0.10": { + "runtime": { + "lib/net9.0/System.IO.Hashing.dll": { + "assemblyVersion": "9.0.0.10", + "fileVersion": "9.0.1025.47515" + } + } + }, + "YamlDotNet/16.3.0": { + "runtime": { + "lib/net8.0/YamlDotNet.dll": { + "assemblyVersion": "16.0.0.0", + "fileVersion": "16.3.0.0" + } + } + } + } + }, + "libraries": { + "AppHost/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Aspire.Hosting/13.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-veub9dDYRFQPbAnixhRRdikKI6zonmA7F6TViqKr1HWx97CaXBAJKe1ju5iTZ4+wYpZdLeDVuzw5MWB4qQAIMw==", + "path": "aspire.hosting/13.1.0", + "hashPath": "aspire.hosting.13.1.0.nupkg.sha512" + }, + "Aspire.Hosting.AppHost/13.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mjE/g+r/copJNVWBk/SytyfekaNbp7QB/hj5G3tcaFm138rnNK6jkBYCbk8MZDdGflL4FYoqN656yhLDiH9faQ==", + "path": "aspire.hosting.apphost/13.1.0", + "hashPath": "aspire.hosting.apphost.13.1.0.nupkg.sha512" + }, + "Aspire.Hosting.Nats/13.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YEVUZb6XkppYkGcHhssDYO1iqGuFATfygoYmp9lOoJgN7p59KPXk4oRE1MuFEgBo/txMXVwPzHjVugUOPR+gqw==", + "path": "aspire.hosting.nats/13.1.0", + "hashPath": "aspire.hosting.nats.13.1.0.nupkg.sha512" + }, + "Aspire.Hosting.PostgreSQL/13.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PxGe4UXh/Gcfr69m/IicL01nicv8n5k6T/l2NVoyosk2/xt6yGNfTwUyU4fIRmvnLpFl+ow1lZs7R4GYY37dLw==", + "path": "aspire.hosting.postgresql/13.1.0", + "hashPath": "aspire.hosting.postgresql.13.1.0.nupkg.sha512" + }, + "AspNetCore.HealthChecks.NpgSql/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npc58/AD5zuVxERdhCl2Kb7WnL37mwX42SJcXIwvmEig0/dugOLg3SIwtfvvh3TnvTwR/sk5LYNkkPaBdks61A==", + "path": "aspnetcore.healthchecks.npgsql/9.0.0", + "hashPath": "aspnetcore.healthchecks.npgsql.9.0.0.nupkg.sha512" + }, + "AspNetCore.HealthChecks.Uris/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XYdNlA437KeF8p9qOpZFyNqAN+c0FXt/JjTvzH/Qans0q0O3pPE8KPnn39ucQQjR/Roum1vLTP3kXiUs8VHyuA==", + "path": "aspnetcore.healthchecks.uris/9.0.0", + "hashPath": "aspnetcore.healthchecks.uris.9.0.0.nupkg.sha512" + }, + "Fractions/7.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2bETFWLBc8b7Ut2SVi+bxhGVwiSpknHYGBh2PADyGWONLkTxT7bKyDRhF8ao+XUv90tq8Fl7GTPxSI5bacIRJw==", + "path": "fractions/7.3.0", + "hashPath": "fractions.7.3.0.nupkg.sha512" + }, + "Google.Protobuf/3.33.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+kIa03YipuiSDeRuZwcDcXS1xBQAFeGLIjuLbgJr2i+TlwBPYAqdnQZJ2SDVzIgDyy+q+n/400WyWyrJ5ZqCgQ==", + "path": "google.protobuf/3.33.0", + "hashPath": "google.protobuf.3.33.0.nupkg.sha512" + }, + "Grpc.AspNetCore/2.71.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B4wAbNtAuHNiHAMxLFWL74wUElzNOOboFnypalqpX76piCOGz/w5FpilbVVYGboI4Qgl4ZmZsvDZ1zLwHNsjnw==", + "path": "grpc.aspnetcore/2.71.0", + "hashPath": "grpc.aspnetcore.2.71.0.nupkg.sha512" + }, + "Grpc.AspNetCore.Server/2.71.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kv+9YVB6MqDYWIcstXvWrT7Xc1si/sfINzzSxvQfjC3aei+92gXDUXCH/Q+TEvi4QSICRqu92BYcrXUBW7cuOw==", + "path": "grpc.aspnetcore.server/2.71.0", + "hashPath": "grpc.aspnetcore.server.2.71.0.nupkg.sha512" + }, + "Grpc.AspNetCore.Server.ClientFactory/2.71.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AHvMxoC+esO1e/nOYBjxvn0WDHAfglcVBjtkBy6ohgnV+PzkF8UdkPHE02xnyPFaSokWGZKnWzjgd00x6EZpyQ==", + "path": "grpc.aspnetcore.server.clientfactory/2.71.0", + "hashPath": "grpc.aspnetcore.server.clientfactory.2.71.0.nupkg.sha512" + }, + "Grpc.Core.Api/2.71.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QquqUC37yxsDzd1QaDRsH2+uuznWPTS8CVE2Yzwl3CvU4geTNkolQXoVN812M2IwT6zpv3jsZRc9ExJFNFslTg==", + "path": "grpc.core.api/2.71.0", + "hashPath": "grpc.core.api.2.71.0.nupkg.sha512" + }, + "Grpc.Net.Client/2.71.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U1vr20r5ngoT9nlb7wejF28EKN+taMhJsV9XtK9MkiepTZwnKxxiarriiMfCHuDAfPUm9XUjFMn/RIuJ4YY61w==", + "path": "grpc.net.client/2.71.0", + "hashPath": "grpc.net.client.2.71.0.nupkg.sha512" + }, + "Grpc.Net.ClientFactory/2.71.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8oPLwQLPo86fmcf9ghjCDyNsSWhtHc3CXa/AqwF8Su/pG7qAoeWWtbymsZhoNvCV9Zjzb6BDcIPKXLYt+O175g==", + "path": "grpc.net.clientfactory/2.71.0", + "hashPath": "grpc.net.clientfactory.2.71.0.nupkg.sha512" + }, + "Grpc.Net.Common/2.71.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v0c8R97TwRYwNXlC8GyRXwYTCNufpDfUtj9la+wUrZFzVWkFJuNAltU+c0yI3zu0jl54k7en6u2WKgZgd57r2Q==", + "path": "grpc.net.common/2.71.0", + "hashPath": "grpc.net.common.2.71.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" + }, + "Json.More.Net/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qtwsyAsL55y2vB2/sK4Pjg3ZyVzD5KKSpV3lOAMHlnjFfsjQ/86eHJfQT9aV1YysVXzF4+xyHOZbh7Iu3YQ7Lg==", + "path": "json.more.net/2.1.0", + "hashPath": "json.more.net.2.1.0.nupkg.sha512" + }, + "JsonPatch.Net/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GIcMMDtzfzVfIpQgey8w7dhzcw6jG5nD4DDAdQCTmHfblkCvN7mI8K03to8YyUhKMl4PTR6D6nLSvWmyOGFNTg==", + "path": "jsonpatch.net/3.3.0", + "hashPath": "jsonpatch.net.3.3.0.nupkg.sha512" + }, + "JsonPointer.Net/5.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qe1F7Tr/p4mgwLPU9P60MbYkp+xnL2uCPnWXGgzfR/AZCunAZIC0RZ32dLGJJEhSuLEfm0YF/1R3u5C7mEVq+w==", + "path": "jsonpointer.net/5.2.0", + "hashPath": "jsonpointer.net.5.2.0.nupkg.sha512" + }, + "KubernetesClient/18.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xkttIbnGNibYwAyZ0sqeQle2w90bfaJrkF8BaURWHfSMKPbHwys9t/wq1XmT64eA4WRVXLENYlXtqmWlEstG6A==", + "path": "kubernetesclient/18.0.5", + "hashPath": "kubernetesclient.18.0.5.nupkg.sha512" + }, + "MessagePack/2.5.192": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jtle5MaFeIFkdXtxQeL9Tu2Y3HsAQGoSntOzrn6Br/jrl6c8QmG22GEioT5HBtZJR0zw0s46OnKU8ei2M3QifA==", + "path": "messagepack/2.5.192", + "hashPath": "messagepack.2.5.192.nupkg.sha512" + }, + "MessagePack.Annotations/2.5.192": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jaJuwcgovWIZ8Zysdyf3b7b34/BrADw4v82GaEZymUhDd3ScMPrYd/cttekeDteJJPXseJxp04yTIcxiVUjTWg==", + "path": "messagepack.annotations/2.5.192", + "hashPath": "messagepack.annotations.2.5.192.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0jjfjQSOFZlHhwOoIQw0WyzxtkDMYdnPY3iFrOLasxYq/5J4FDt1HWT8TktBclOVjFY1FOOkoOc99X7AhbqSIw==", + "path": "microsoft.extensions.hosting/10.0.1", + "hashPath": "microsoft.extensions.hosting.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zp9MM+jFCa7oktIug62V9eNygpkf+6kFVatF+UC/ODeUwIr5givYKy8fYSSI9sWdxqDqv63y1x0mm2VjOl8GOw==", + "path": "microsoft.extensions.logging.eventlog/10.0.1", + "hashPath": "microsoft.extensions.logging.eventlog.10.0.1.nupkg.sha512" + }, + "Microsoft.NET.StringTools/17.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N0ZIanl1QCgvUumEL1laasU0a7sOE5ZwLZVTn0pAePnfhq8P7SvTjF8Axq+CnavuQkmdQpGNXQ1efZtu5kDFbA==", + "path": "microsoft.net.stringtools/17.6.3", + "hashPath": "microsoft.net.stringtools.17.6.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Threading.Only/17.13.61": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vl5a2URJYCO5m+aZZtNlAXAMz28e2pUotRuoHD7RnCWOCeoyd8hWp5ZBaLNYq4iEj2oeJx5ZxiSboAjVmB20Qg==", + "path": "microsoft.visualstudio.threading.only/17.13.61", + "hashPath": "microsoft.visualstudio.threading.only.17.13.61.nupkg.sha512" + }, + "Microsoft.VisualStudio.Validation/17.8.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rWXThIpyQd4YIXghNkiv2+VLvzS+MCMKVRDR0GAMlflsdo+YcAN2g2r5U1Ah98OFjQMRexTFtXQQ2LkajxZi3g==", + "path": "microsoft.visualstudio.validation/17.8.8", + "hashPath": "microsoft.visualstudio.validation.17.8.8.nupkg.sha512" + }, + "NATS.Client.Core/2.6.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iVXewDiZkII/Nx9M8ahm4plVxbh/UZ4BNAOJJJNn648p+8VRuY0vo0MxfnA1Cha4IHHHMYAr8yGTYGFBoxAXbg==", + "path": "nats.client.core/2.6.11", + "hashPath": "nats.client.core.2.6.11.nupkg.sha512" + }, + "NATS.Client.Hosting/2.6.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YA7P66WmQnbwv07vFXiCUvPeCcnV6zj1mxnV1l/85b/ajKq4+8cB9BWUf4mHE7eZ59K8ONIMww9HRzNab/KuOg==", + "path": "nats.client.hosting/2.6.11", + "hashPath": "nats.client.hosting.2.6.11.nupkg.sha512" + }, + "NATS.Client.JetStream/2.6.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tn/7xEVmTOh8PBau+nKOKelTAPeqUmfhwG9gddTUluGFHjut9auMthOmdhb0iYmiMYlBS2fv7frnV7NbDxPiww==", + "path": "nats.client.jetstream/2.6.11", + "hashPath": "nats.client.jetstream.2.6.11.nupkg.sha512" + }, + "NATS.Client.KeyValueStore/2.6.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jc5K1F2Q/1phHF4a6qsXnDHBEFcoEpCFdrNXs+IKnNIxMD/buH4k9fmq0Y8LjAG70okbNnDK3xgnHdQ8N62nHA==", + "path": "nats.client.keyvaluestore/2.6.11", + "hashPath": "nats.client.keyvaluestore.2.6.11.nupkg.sha512" + }, + "NATS.Client.ObjectStore/2.6.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zYW5s29xmZoDgz6Is2GV5/jGl+K9FjQt/6/sFmiNmfn6WrliChzx65hfAnOYtmwNSDdF/xY6D/mf3BWh9ePMEA==", + "path": "nats.client.objectstore/2.6.11", + "hashPath": "nats.client.objectstore.2.6.11.nupkg.sha512" + }, + "NATS.Client.Serializers.Json/2.6.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tI+FKOBDN81FapwqwKW+0TK/wxQA4IMlFxL2Br3hhqUUQAZ0VFVs9+rhePVnpMe5tKFiebvY6qChCco8/Uu6cw==", + "path": "nats.client.serializers.json/2.6.11", + "hashPath": "nats.client.serializers.json.2.6.11.nupkg.sha512" + }, + "NATS.Client.Services/2.6.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1ITVOq2efFU+e/1WM8rL440xJSSZNAtTv6QgCOUaQ3UOqEmtDVCeX2FEmWq/9MJvMilgAb1m6r/4wESFilP/nw==", + "path": "nats.client.services/2.6.11", + "hashPath": "nats.client.services.2.6.11.nupkg.sha512" + }, + "NATS.Client.Simplified/2.6.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PKLBtH6Z1P7wLbUFzZnyEeknw1j23jtLZe7Dor1ZfmTMjkT6KGHZqRnBkOlsKbUYBwbqb9w90rZSQ1++zkjFdA==", + "path": "nats.client.simplified/2.6.11", + "hashPath": "nats.client.simplified.2.6.11.nupkg.sha512" + }, + "NATS.Net/2.6.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KpTRNBigWGX9c5lWWU31yCg4c3CEVrBNiLKRWlF2hO97u8EopMh1rrAN+VMTSBPe8YtN/UPncVvPTX3Q1gyiqA==", + "path": "nats.net/2.6.11", + "hashPath": "nats.net.2.6.11.nupkg.sha512" + }, + "Nerdbank.Streams/2.12.87": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oDKOeKZ865I5X8qmU3IXMyrAnssYEiYWTobPGdrqubN3RtTzEHIv+D6fwhdcfrdhPJzHjCkK/ORztR/IsnmA6g==", + "path": "nerdbank.streams/2.12.87", + "hashPath": "nerdbank.streams.2.12.87.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", + "path": "newtonsoft.json/13.0.4", + "hashPath": "newtonsoft.json.13.0.4.nupkg.sha512" + }, + "Npgsql/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6WEmzsQJCZAlUG1pThKg/RmeF6V+I0DmBBBE/8YzpRtEzhyZzKcK7ulMANDm5CkxrALBEC8H+5plxHWtIL7xnA==", + "path": "npgsql/8.0.3", + "hashPath": "npgsql.8.0.3.nupkg.sha512" + }, + "Polly.Core/8.6.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4AWqYnQ2TME0E+Mzovt1Uu+VyvpR84ymUldMcPw7Mbj799Phaag14CKrMtlJGx5jsvYP+S3oR1QmysgmXoD5cw==", + "path": "polly.core/8.6.4", + "hashPath": "polly.core.8.6.4.nupkg.sha512" + }, + "Semver/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9jZCicsVgTebqkAujRWtC9J1A5EQVlu0TVKHcgoCuv345ve5DYf4D1MjhKEnQjdRZo6x/vdv6QQrYFs7ilGzLA==", + "path": "semver/3.0.0", + "hashPath": "semver.3.0.0.nupkg.sha512" + }, + "StreamJsonRpc/2.22.23": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ahq6uUFPnU9alny5h4agyX74th3PRq3NQCRNaDOqWcx20WT06mH/wENSk5IbHDc8BmfreQVEIBx5IXLBbsLFIA==", + "path": "streamjsonrpc/2.22.23", + "hashPath": "streamjsonrpc.2.22.23.nupkg.sha512" + }, + "System.Diagnostics.EventLog/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xfaHEHVDkMOOZR5S6ZGezD0+vekdH1Nx/9Ih8/rOqOGSOk1fxiN3u94bYkBW/wigj0Uw2Wt3vvRj9mtYdgwEjw==", + "path": "system.diagnostics.eventlog/10.0.1", + "hashPath": "system.diagnostics.eventlog.10.0.1.nupkg.sha512" + }, + "System.IO.Hashing/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9gv5z71xaWWmcGEs4bXdreIhKp2kYLK2fvPK5gQkgnWMYvZ8ieaxKofDjxL3scZiEYfi/yW2nJTiKV2awcWEdA==", + "path": "system.io.hashing/9.0.10", + "hashPath": "system.io.hashing.9.0.10.nupkg.sha512" + }, + "YamlDotNet/16.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SgMOdxbz8X65z8hraIs6hOEdnkH6hESTAIUa7viEngHOYaH+6q5XJmwr1+yb9vJpNQ19hCQY69xbFsLtXpobQA==", + "path": "yamldotnet/16.3.0", + "hashPath": "yamldotnet.16.3.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.dll new file mode 100644 index 0000000..a72f7bb Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.pdb b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.pdb new file mode 100644 index 0000000..4281440 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.pdb differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.runtimeconfig.json b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.runtimeconfig.json new file mode 100644 index 0000000..10238e8 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.runtimeconfig.json @@ -0,0 +1,18 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "10.0.0" + } + ], + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.AppHost.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.AppHost.dll new file mode 100755 index 0000000..3f389f2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.AppHost.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.Nats.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.Nats.dll new file mode 100755 index 0000000..004291c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.Nats.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.PostgreSQL.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.PostgreSQL.dll new file mode 100755 index 0000000..dec85f1 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.PostgreSQL.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.dll new file mode 100755 index 0000000..322a434 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Fractions.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Fractions.dll new file mode 100755 index 0000000..670df50 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Fractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Google.Protobuf.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Google.Protobuf.dll new file mode 100755 index 0000000..dd9e9c5 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Google.Protobuf.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.AspNetCore.Server.ClientFactory.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.AspNetCore.Server.ClientFactory.dll new file mode 100755 index 0000000..50a2bc5 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.AspNetCore.Server.ClientFactory.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.AspNetCore.Server.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.AspNetCore.Server.dll new file mode 100755 index 0000000..09649fe Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.AspNetCore.Server.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Core.Api.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Core.Api.dll new file mode 100755 index 0000000..e69548d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Core.Api.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Net.Client.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Net.Client.dll new file mode 100755 index 0000000..519ce5f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Net.Client.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Net.ClientFactory.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Net.ClientFactory.dll new file mode 100755 index 0000000..8580089 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Net.ClientFactory.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Net.Common.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Net.Common.dll new file mode 100755 index 0000000..c21964a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Net.Common.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/HealthChecks.NpgSql.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/HealthChecks.NpgSql.dll new file mode 100755 index 0000000..3c061a9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/HealthChecks.NpgSql.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/HealthChecks.Uris.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/HealthChecks.Uris.dll new file mode 100755 index 0000000..45fac16 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/HealthChecks.Uris.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Humanizer.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Humanizer.dll new file mode 100755 index 0000000..c9a7ef8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Humanizer.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Json.More.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Json.More.dll new file mode 100755 index 0000000..8170d80 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Json.More.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/JsonPatch.Net.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/JsonPatch.Net.dll new file mode 100755 index 0000000..8a8a5f7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/JsonPatch.Net.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/JsonPointer.Net.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/JsonPointer.Net.dll new file mode 100755 index 0000000..a4025e7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/JsonPointer.Net.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/KubernetesClient.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/KubernetesClient.dll new file mode 100755 index 0000000..74fbd62 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/KubernetesClient.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/MessagePack.Annotations.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/MessagePack.Annotations.dll new file mode 100755 index 0000000..b3a3f48 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/MessagePack.Annotations.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/MessagePack.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/MessagePack.dll new file mode 100755 index 0000000..ed883d0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/MessagePack.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Microsoft.NET.StringTools.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Microsoft.NET.StringTools.dll new file mode 100755 index 0000000..7d30439 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Microsoft.NET.StringTools.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Microsoft.VisualStudio.Threading.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Microsoft.VisualStudio.Threading.dll new file mode 100755 index 0000000..bae0533 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Microsoft.VisualStudio.Threading.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Microsoft.VisualStudio.Validation.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Microsoft.VisualStudio.Validation.dll new file mode 100755 index 0000000..fa8c33b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Microsoft.VisualStudio.Validation.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Core.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Core.dll new file mode 100755 index 0000000..9d1e0a7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Hosting.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Hosting.dll new file mode 100755 index 0000000..4ac117b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.JetStream.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.JetStream.dll new file mode 100755 index 0000000..fa8d680 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.JetStream.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll new file mode 100755 index 0000000..5738467 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.ObjectStore.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.ObjectStore.dll new file mode 100755 index 0000000..90b94b1 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.ObjectStore.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll new file mode 100755 index 0000000..488bee9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Services.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Services.dll new file mode 100755 index 0000000..a7386b3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Services.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Simplified.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Simplified.dll new file mode 100755 index 0000000..b3bf5bc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Simplified.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Net.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Net.dll new file mode 100755 index 0000000..fcf3edf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Net.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Nerdbank.Streams.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Nerdbank.Streams.dll new file mode 100755 index 0000000..aaff21a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Nerdbank.Streams.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Newtonsoft.Json.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Newtonsoft.Json.dll new file mode 100755 index 0000000..5813d8c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Newtonsoft.Json.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Npgsql.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Npgsql.dll new file mode 100755 index 0000000..b19e58f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Npgsql.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Polly.Core.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Polly.Core.dll new file mode 100755 index 0000000..bd0d24c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Polly.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Semver.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Semver.dll new file mode 100755 index 0000000..ca3c4c9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Semver.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/StreamJsonRpc.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/StreamJsonRpc.dll new file mode 100755 index 0000000..462dd65 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/StreamJsonRpc.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/System.IO.Hashing.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/System.IO.Hashing.dll new file mode 100755 index 0000000..4860654 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/System.IO.Hashing.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/YamlDotNet.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/YamlDotNet.dll new file mode 100755 index 0000000..07454d5 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/YamlDotNet.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/Aspire.Hosting.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/Aspire.Hosting.resources.dll new file mode 100755 index 0000000..5a70d12 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/Aspire.Hosting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/Microsoft.VisualStudio.Threading.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/Microsoft.VisualStudio.Threading.resources.dll new file mode 100755 index 0000000..44c3919 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/Microsoft.VisualStudio.Threading.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/Microsoft.VisualStudio.Validation.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/Microsoft.VisualStudio.Validation.resources.dll new file mode 100755 index 0000000..e69b3f4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/Microsoft.VisualStudio.Validation.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/StreamJsonRpc.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/StreamJsonRpc.resources.dll new file mode 100755 index 0000000..42c4b5d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/StreamJsonRpc.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/Aspire.Hosting.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/Aspire.Hosting.resources.dll new file mode 100755 index 0000000..8d40b6f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/Aspire.Hosting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/Microsoft.VisualStudio.Threading.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/Microsoft.VisualStudio.Threading.resources.dll new file mode 100755 index 0000000..8b4c60e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/Microsoft.VisualStudio.Threading.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/Microsoft.VisualStudio.Validation.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/Microsoft.VisualStudio.Validation.resources.dll new file mode 100755 index 0000000..fc4b753 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/Microsoft.VisualStudio.Validation.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/StreamJsonRpc.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/StreamJsonRpc.resources.dll new file mode 100755 index 0000000..86306dd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/StreamJsonRpc.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/Aspire.Hosting.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/Aspire.Hosting.resources.dll new file mode 100755 index 0000000..c04ebe5 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/Aspire.Hosting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/Microsoft.VisualStudio.Threading.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/Microsoft.VisualStudio.Threading.resources.dll new file mode 100755 index 0000000..56309ab Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/Microsoft.VisualStudio.Threading.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/Microsoft.VisualStudio.Validation.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/Microsoft.VisualStudio.Validation.resources.dll new file mode 100755 index 0000000..39152d0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/Microsoft.VisualStudio.Validation.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/StreamJsonRpc.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/StreamJsonRpc.resources.dll new file mode 100755 index 0000000..1481e24 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/StreamJsonRpc.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/Aspire.Hosting.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/Aspire.Hosting.resources.dll new file mode 100755 index 0000000..9143664 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/Aspire.Hosting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/Microsoft.VisualStudio.Threading.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/Microsoft.VisualStudio.Threading.resources.dll new file mode 100755 index 0000000..3c82eac Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/Microsoft.VisualStudio.Threading.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/Microsoft.VisualStudio.Validation.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/Microsoft.VisualStudio.Validation.resources.dll new file mode 100755 index 0000000..0b6cbeb Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/Microsoft.VisualStudio.Validation.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/StreamJsonRpc.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/StreamJsonRpc.resources.dll new file mode 100755 index 0000000..b39194d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/StreamJsonRpc.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/Aspire.Hosting.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/Aspire.Hosting.resources.dll new file mode 100755 index 0000000..b4dc50a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/Aspire.Hosting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/Microsoft.VisualStudio.Threading.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/Microsoft.VisualStudio.Threading.resources.dll new file mode 100755 index 0000000..0d150c0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/Microsoft.VisualStudio.Threading.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/Microsoft.VisualStudio.Validation.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/Microsoft.VisualStudio.Validation.resources.dll new file mode 100755 index 0000000..1b5d372 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/Microsoft.VisualStudio.Validation.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/StreamJsonRpc.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/StreamJsonRpc.resources.dll new file mode 100755 index 0000000..07b03ff Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/StreamJsonRpc.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/Aspire.Hosting.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/Aspire.Hosting.resources.dll new file mode 100755 index 0000000..a2f5349 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/Aspire.Hosting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/Microsoft.VisualStudio.Threading.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/Microsoft.VisualStudio.Threading.resources.dll new file mode 100755 index 0000000..7e2ed5d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/Microsoft.VisualStudio.Threading.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/Microsoft.VisualStudio.Validation.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/Microsoft.VisualStudio.Validation.resources.dll new file mode 100755 index 0000000..55d482b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/Microsoft.VisualStudio.Validation.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/StreamJsonRpc.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/StreamJsonRpc.resources.dll new file mode 100755 index 0000000..4f8e78a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/StreamJsonRpc.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/Aspire.Hosting.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/Aspire.Hosting.resources.dll new file mode 100755 index 0000000..604e3e1 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/Aspire.Hosting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/Microsoft.VisualStudio.Threading.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/Microsoft.VisualStudio.Threading.resources.dll new file mode 100755 index 0000000..c02178d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/Microsoft.VisualStudio.Threading.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/Microsoft.VisualStudio.Validation.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/Microsoft.VisualStudio.Validation.resources.dll new file mode 100755 index 0000000..a639eed Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/Microsoft.VisualStudio.Validation.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/StreamJsonRpc.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/StreamJsonRpc.resources.dll new file mode 100755 index 0000000..1cf6fc4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/StreamJsonRpc.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/Aspire.Hosting.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/Aspire.Hosting.resources.dll new file mode 100755 index 0000000..c018b69 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/Aspire.Hosting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/Microsoft.VisualStudio.Threading.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/Microsoft.VisualStudio.Threading.resources.dll new file mode 100755 index 0000000..5908d06 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/Microsoft.VisualStudio.Threading.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/Microsoft.VisualStudio.Validation.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/Microsoft.VisualStudio.Validation.resources.dll new file mode 100755 index 0000000..114f772 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/Microsoft.VisualStudio.Validation.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/StreamJsonRpc.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/StreamJsonRpc.resources.dll new file mode 100755 index 0000000..d9ad1f9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/StreamJsonRpc.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/Aspire.Hosting.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/Aspire.Hosting.resources.dll new file mode 100755 index 0000000..e50568d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/Aspire.Hosting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.Threading.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.Threading.resources.dll new file mode 100755 index 0000000..6d067a3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.Threading.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.Validation.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.Validation.resources.dll new file mode 100755 index 0000000..dc2ee59 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.Validation.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/StreamJsonRpc.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/StreamJsonRpc.resources.dll new file mode 100755 index 0000000..0e62c6d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/StreamJsonRpc.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/Aspire.Hosting.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/Aspire.Hosting.resources.dll new file mode 100755 index 0000000..7603b93 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/Aspire.Hosting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/Microsoft.VisualStudio.Threading.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/Microsoft.VisualStudio.Threading.resources.dll new file mode 100755 index 0000000..964c10a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/Microsoft.VisualStudio.Threading.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/Microsoft.VisualStudio.Validation.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/Microsoft.VisualStudio.Validation.resources.dll new file mode 100755 index 0000000..dc34e4a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/Microsoft.VisualStudio.Validation.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/StreamJsonRpc.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/StreamJsonRpc.resources.dll new file mode 100755 index 0000000..89981e8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/StreamJsonRpc.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll new file mode 100755 index 0000000..54dd01d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/Aspire.Hosting.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/Aspire.Hosting.resources.dll new file mode 100755 index 0000000..7e6bedd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/Aspire.Hosting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/Microsoft.VisualStudio.Threading.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/Microsoft.VisualStudio.Threading.resources.dll new file mode 100755 index 0000000..627071b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/Microsoft.VisualStudio.Threading.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/Microsoft.VisualStudio.Validation.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/Microsoft.VisualStudio.Validation.resources.dll new file mode 100755 index 0000000..9cdc284 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/Microsoft.VisualStudio.Validation.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/StreamJsonRpc.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/StreamJsonRpc.resources.dll new file mode 100755 index 0000000..64e0705 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/StreamJsonRpc.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/Aspire.Hosting.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/Aspire.Hosting.resources.dll new file mode 100755 index 0000000..fc10028 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/Aspire.Hosting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll new file mode 100755 index 0000000..bda1f4c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll new file mode 100755 index 0000000..ed2fe8a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/StreamJsonRpc.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/StreamJsonRpc.resources.dll new file mode 100755 index 0000000..3f616cf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/StreamJsonRpc.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/Aspire.Hosting.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/Aspire.Hosting.resources.dll new file mode 100755 index 0000000..34983e3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/Aspire.Hosting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll new file mode 100755 index 0000000..069bb5b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll new file mode 100755 index 0000000..f61c764 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/StreamJsonRpc.resources.dll b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/StreamJsonRpc.resources.dll new file mode 100755 index 0000000..e32ebff Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/StreamJsonRpc.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/AppHost.csproj.nuget.dgspec.json b/wolverine-nats/WolverineAndNats/AppHost/obj/AppHost.csproj.nuget.dgspec.json new file mode 100644 index 0000000..2de66b6 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/AppHost.csproj.nuget.dgspec.json @@ -0,0 +1,366 @@ +{ + "format": 1, + "restore": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/AppHost.csproj": {} + }, + "projects": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/AppHost.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/AppHost.csproj", + "projectName": "AppHost", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/AppHost.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Aspire.Dashboard.Sdk.osx-arm64": { + "target": "Package", + "version": "[13.1.0, )", + "autoReferenced": true + }, + "Aspire.Hosting.AppHost": { + "target": "Package", + "version": "[13.1.0, )", + "autoReferenced": true + }, + "Aspire.Hosting.Nats": { + "target": "Package", + "version": "[13.1.0, )" + }, + "Aspire.Hosting.Orchestration.osx-arm64": { + "target": "Package", + "version": "[13.1.0, )", + "autoReferenced": true + }, + "Aspire.Hosting.PostgreSQL": { + "target": "Package", + "version": "[13.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/AppHost.csproj.nuget.g.props b/wolverine-nats/WolverineAndNats/AppHost/obj/AppHost.csproj.nuget.g.props new file mode 100644 index 0000000..2644d07 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/AppHost.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/jeffrygonzalez/.nuget/packages/ + /Users/jeffrygonzalez/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + + + + /Users/jeffrygonzalez/.nuget/packages/grpc.tools/2.72.0 + /Users/jeffrygonzalez/.nuget/packages/aspire.hosting.orchestration.osx-arm64/13.1.0 + /Users/jeffrygonzalez/.nuget/packages/aspire.hosting.apphost/13.1.0 + /Users/jeffrygonzalez/.nuget/packages/aspire.dashboard.sdk.osx-arm64/13.1.0 + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/AppHost.csproj.nuget.g.targets b/wolverine-nats/WolverineAndNats/AppHost/obj/AppHost.csproj.nuget.g.targets new file mode 100644 index 0000000..d259deb --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/AppHost.csproj.nuget.g.targets @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.AssemblyInfo.cs b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.AssemblyInfo.cs new file mode 100644 index 0000000..7a8feeb --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.AssemblyInfo.cs @@ -0,0 +1,36 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("3fd9a60b-40a2-4d52-bdae-fcb13dceb6d3")] +[assembly: System.Reflection.AssemblyMetadata("dcpclipath", ("/Users/jeffrygonzalez/.nuget/packages/aspire.hosting.orchestration.osx-arm64/13.1" + + ".0/tools/dcp"))] +[assembly: System.Reflection.AssemblyMetadata("dcpextensionpaths", ("/Users/jeffrygonzalez/.nuget/packages/aspire.hosting.orchestration.osx-arm64/13.1" + + ".0/tools/ext/"))] +[assembly: System.Reflection.AssemblyMetadata("dcpbinpath", ("/Users/jeffrygonzalez/.nuget/packages/aspire.hosting.orchestration.osx-arm64/13.1" + + ".0/tools/ext/bin/"))] +[assembly: System.Reflection.AssemblyMetadata("apphostprojectpath", ("/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/App" + + "Host"))] +[assembly: System.Reflection.AssemblyMetadata("apphostprojectname", "AppHost.csproj")] +[assembly: System.Reflection.AssemblyMetadata("aspiredashboardpath", ("/Users/jeffrygonzalez/.nuget/packages/aspire.dashboard.sdk.osx-arm64/13.1.0/tools" + + "/Aspire.Dashboard.dll"))] +[assembly: System.Reflection.AssemblyMetadataAttribute("apphostprojectbaseintermediateoutputpath", ("/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/App" + + "Host/obj/"))] +[assembly: System.Reflection.AssemblyCompanyAttribute("AppHost")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+029fc808861743407d1014ffb7cabf40b443645a")] +[assembly: System.Reflection.AssemblyProductAttribute("AppHost")] +[assembly: System.Reflection.AssemblyTitleAttribute("AppHost")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.AssemblyInfoInputs.cache b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c7f515d --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6354ede354cc5f4133b7393d77cb9bceb9b16a7950a8abc69f77f1fe3eea87ad diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.GeneratedMSBuildEditorConfig.editorconfig b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ec213ee --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = AppHost +build_property.ProjectDir = /Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.GlobalUsings.g.cs b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.GlobalUsings.g.cs new file mode 100644 index 0000000..b92eeef --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.GlobalUsings.g.cs @@ -0,0 +1,10 @@ +// +global using Aspire.Hosting; +global using Aspire.Hosting.ApplicationModel; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.assets.cache b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.assets.cache new file mode 100644 index 0000000..864c5e9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.assets.cache differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.AssemblyReference.cache b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.AssemblyReference.cache new file mode 100644 index 0000000..6c17df2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.AssemblyReference.cache differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.CoreCompileInputs.cache b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..322040c --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +4d96be4550bfc00fec0c0385d6abf2ddf2d2b8b550552f55b280ffeef46e85f9 diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.FileListAbsolute.txt b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..1839ee1 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.FileListAbsolute.txt @@ -0,0 +1,116 @@ +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.deps.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.runtimeconfig.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/AppHost.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.AppHost.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.Nats.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Aspire.Hosting.PostgreSQL.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/HealthChecks.NpgSql.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/HealthChecks.Uris.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Fractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Google.Protobuf.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.AspNetCore.Server.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.AspNetCore.Server.ClientFactory.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Core.Api.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Net.Client.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Net.ClientFactory.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Grpc.Net.Common.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Humanizer.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Json.More.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/JsonPatch.Net.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/JsonPointer.Net.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/KubernetesClient.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/MessagePack.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/MessagePack.Annotations.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Microsoft.NET.StringTools.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Microsoft.VisualStudio.Threading.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Microsoft.VisualStudio.Validation.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.JetStream.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.ObjectStore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Services.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Client.Simplified.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/NATS.Net.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Nerdbank.Streams.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Newtonsoft.Json.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Npgsql.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Polly.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/Semver.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/StreamJsonRpc.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/System.IO.Hashing.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/YamlDotNet.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/Aspire.Hosting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/Aspire.Hosting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/Aspire.Hosting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/Aspire.Hosting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/Aspire.Hosting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/Aspire.Hosting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/Aspire.Hosting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/Aspire.Hosting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/Aspire.Hosting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/Aspire.Hosting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/Aspire.Hosting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/Aspire.Hosting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/Aspire.Hosting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/Microsoft.VisualStudio.Threading.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/Microsoft.VisualStudio.Threading.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/Microsoft.VisualStudio.Threading.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/Microsoft.VisualStudio.Threading.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/Microsoft.VisualStudio.Threading.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/Microsoft.VisualStudio.Threading.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/Microsoft.VisualStudio.Threading.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/Microsoft.VisualStudio.Threading.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.Threading.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/Microsoft.VisualStudio.Threading.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/Microsoft.VisualStudio.Threading.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/Microsoft.VisualStudio.Validation.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/Microsoft.VisualStudio.Validation.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/Microsoft.VisualStudio.Validation.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/Microsoft.VisualStudio.Validation.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/Microsoft.VisualStudio.Validation.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/Microsoft.VisualStudio.Validation.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/Microsoft.VisualStudio.Validation.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/Microsoft.VisualStudio.Validation.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.Validation.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/Microsoft.VisualStudio.Validation.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/Microsoft.VisualStudio.Validation.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/cs/StreamJsonRpc.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/de/StreamJsonRpc.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/es/StreamJsonRpc.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/fr/StreamJsonRpc.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/it/StreamJsonRpc.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ja/StreamJsonRpc.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ko/StreamJsonRpc.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pl/StreamJsonRpc.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/pt-BR/StreamJsonRpc.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/ru/StreamJsonRpc.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/tr/StreamJsonRpc.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hans/StreamJsonRpc.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/zh-Hant/StreamJsonRpc.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.AssemblyReference.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.GeneratedMSBuildEditorConfig.editorconfig +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.AssemblyInfoInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.AssemblyInfo.cs +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.CoreCompileInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/ApiOne.ProjectMetadata.g.cs +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/ApiTwo.ProjectMetadata.g.cs +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/_AppHost.ProjectMetadata.g.cs +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.sourcelink.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.Up2Date +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/refint/AppHost.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.genruntimeconfig.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/ref/AppHost.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/PlainListener.ProjectMetadata.g.cs +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/LateComer.ProjectMetadata.g.cs diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.Up2Date b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.dll b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.dll new file mode 100644 index 0000000..a72f7bb Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.genruntimeconfig.cache b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.genruntimeconfig.cache new file mode 100644 index 0000000..ec6d07a --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.genruntimeconfig.cache @@ -0,0 +1 @@ +ef71a3adf24be572fa1475b2abbd731a4165023fd32f9470e5202ec2c912d4af diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.pdb b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.pdb new file mode 100644 index 0000000..4281440 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.pdb differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.sourcelink.json b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.sourcelink.json new file mode 100644 index 0000000..a43e21e --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/AppHost.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/Users/jeffrygonzalez/work/reference/*":"https://raw.githubusercontent.com/HypertheoryTraining/reference/029fc808861743407d1014ffb7cabf40b443645a/*"}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/ApiOne.ProjectMetadata.g.cs b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/ApiOne.ProjectMetadata.g.cs new file mode 100644 index 0000000..4a8db7f --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/ApiOne.ProjectMetadata.g.cs @@ -0,0 +1,28 @@ +// + +namespace Projects; + +#pragma warning disable CS8981 // The type name only contains lower-cased ascii characters. Such names may become reserved for the language. +/// +/// Metadata for the ApiOne project. +/// +[global::System.CodeDom.Compiler.GeneratedCode("Aspire.Hosting", null)] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage(Justification = "Generated code.")] +[global::System.Diagnostics.DebuggerDisplay("Type = {GetType().Name,nq}, ProjectPath = {ProjectPath}")] +public class ApiOne : global::Aspire.Hosting.IProjectMetadata +#pragma warning restore CS8981 +{ + /// + /// The path to the ApiOne project. + /// + public string ProjectPath => """/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiOne/ApiOne.csproj"""; + + /// + /// Gets a value indicating whether building the project before running it should be suppressed. + /// + /// + /// Projects added via ProjectReference items in the AppHost project file are built as part of building the AppHost project process + /// so building them again before running is unnecessary. This property always returns true. + /// + public bool SuppressBuild => true; +} diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/ApiTwo.ProjectMetadata.g.cs b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/ApiTwo.ProjectMetadata.g.cs new file mode 100644 index 0000000..2b948c3 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/ApiTwo.ProjectMetadata.g.cs @@ -0,0 +1,28 @@ +// + +namespace Projects; + +#pragma warning disable CS8981 // The type name only contains lower-cased ascii characters. Such names may become reserved for the language. +/// +/// Metadata for the ApiTwo project. +/// +[global::System.CodeDom.Compiler.GeneratedCode("Aspire.Hosting", null)] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage(Justification = "Generated code.")] +[global::System.Diagnostics.DebuggerDisplay("Type = {GetType().Name,nq}, ProjectPath = {ProjectPath}")] +public class ApiTwo : global::Aspire.Hosting.IProjectMetadata +#pragma warning restore CS8981 +{ + /// + /// The path to the ApiTwo project. + /// + public string ProjectPath => """/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ApiTwo/ApiTwo.csproj"""; + + /// + /// Gets a value indicating whether building the project before running it should be suppressed. + /// + /// + /// Projects added via ProjectReference items in the AppHost project file are built as part of building the AppHost project process + /// so building them again before running is unnecessary. This property always returns true. + /// + public bool SuppressBuild => true; +} diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/LateComer.ProjectMetadata.g.cs b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/LateComer.ProjectMetadata.g.cs new file mode 100644 index 0000000..03cdfc2 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/LateComer.ProjectMetadata.g.cs @@ -0,0 +1,28 @@ +// + +namespace Projects; + +#pragma warning disable CS8981 // The type name only contains lower-cased ascii characters. Such names may become reserved for the language. +/// +/// Metadata for the LateComer project. +/// +[global::System.CodeDom.Compiler.GeneratedCode("Aspire.Hosting", null)] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage(Justification = "Generated code.")] +[global::System.Diagnostics.DebuggerDisplay("Type = {GetType().Name,nq}, ProjectPath = {ProjectPath}")] +public class LateComer : global::Aspire.Hosting.IProjectMetadata +#pragma warning restore CS8981 +{ + /// + /// The path to the LateComer project. + /// + public string ProjectPath => """/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/LateComer.csproj"""; + + /// + /// Gets a value indicating whether building the project before running it should be suppressed. + /// + /// + /// Projects added via ProjectReference items in the AppHost project file are built as part of building the AppHost project process + /// so building them again before running is unnecessary. This property always returns true. + /// + public bool SuppressBuild => true; +} diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/PlainListener.ProjectMetadata.g.cs b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/PlainListener.ProjectMetadata.g.cs new file mode 100644 index 0000000..53e6397 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/PlainListener.ProjectMetadata.g.cs @@ -0,0 +1,28 @@ +// + +namespace Projects; + +#pragma warning disable CS8981 // The type name only contains lower-cased ascii characters. Such names may become reserved for the language. +/// +/// Metadata for the PlainListener project. +/// +[global::System.CodeDom.Compiler.GeneratedCode("Aspire.Hosting", null)] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage(Justification = "Generated code.")] +[global::System.Diagnostics.DebuggerDisplay("Type = {GetType().Name,nq}, ProjectPath = {ProjectPath}")] +public class PlainListener : global::Aspire.Hosting.IProjectMetadata +#pragma warning restore CS8981 +{ + /// + /// The path to the PlainListener project. + /// + public string ProjectPath => """/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/PlainListener.csproj"""; + + /// + /// Gets a value indicating whether building the project before running it should be suppressed. + /// + /// + /// Projects added via ProjectReference items in the AppHost project file are built as part of building the AppHost project process + /// so building them again before running is unnecessary. This property always returns true. + /// + public bool SuppressBuild => true; +} diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/_AppHost.ProjectMetadata.g.cs b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/_AppHost.ProjectMetadata.g.cs new file mode 100644 index 0000000..d6b9c51 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/Aspire/references/_AppHost.ProjectMetadata.g.cs @@ -0,0 +1,21 @@ +// + +namespace Projects; + +#pragma warning disable CS8981 // The type name only contains lower-cased ascii characters. Such names may become reserved for the language. +/// +/// Metadata for the Aspire AppHost project. +/// +[global::System.CodeDom.Compiler.GeneratedCode("Aspire.Hosting", null)] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage(Justification = "Generated code.")] +[global::System.Diagnostics.DebuggerDisplay("Type = {GetType().Name,nq}, ProjectPath = {ProjectPath}")] +public class AppHost +#pragma warning restore CS8981 +{ + private AppHost() { } + + /// + /// The path to the Aspire Host project. + /// + public static string ProjectPath => """/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost"""; +} diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/apphost b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/apphost new file mode 100755 index 0000000..e38f5bc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/apphost differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/ref/AppHost.dll b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/ref/AppHost.dll new file mode 100644 index 0000000..515cc71 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/ref/AppHost.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/refint/AppHost.dll b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/refint/AppHost.dll new file mode 100644 index 0000000..515cc71 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/AppHost/obj/Debug/net10.0/refint/AppHost.dll differ diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/project.assets.json b/wolverine-nats/WolverineAndNats/AppHost/obj/project.assets.json new file mode 100644 index 0000000..aac179c --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/project.assets.json @@ -0,0 +1,4242 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Aspire.Dashboard.Sdk.osx-arm64/13.1.0": { + "type": "package", + "build": { + "buildTransitive/Aspire.Dashboard.Sdk.osx-arm64.props": {}, + "buildTransitive/Aspire.Dashboard.Sdk.osx-arm64.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Aspire.Dashboard.Sdk.osx-arm64.props": {}, + "buildMultiTargeting/Aspire.Dashboard.Sdk.osx-arm64.targets": {} + } + }, + "Aspire.Hosting/13.1.0": { + "type": "package", + "dependencies": { + "AspNetCore.HealthChecks.Uris": "9.0.0", + "Google.Protobuf": "3.33.0", + "Grpc.AspNetCore": "2.71.0", + "Grpc.Net.ClientFactory": "2.71.0", + "Grpc.Tools": "2.72.0", + "Humanizer.Core": "2.14.1", + "JsonPatch.Net": "3.3.0", + "KubernetesClient": "18.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.22", + "Microsoft.Extensions.FileSystemGlobbing": "10.0.1", + "Microsoft.Extensions.Hosting": "8.0.1", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Http": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0", + "Newtonsoft.Json": "13.0.4", + "Polly.Core": "8.6.4", + "Semver": "3.0.0", + "StreamJsonRpc": "2.22.23", + "System.IO.Hashing": "9.0.10" + }, + "compile": { + "lib/net8.0/Aspire.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Aspire.Hosting.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net8.0/cs/Aspire.Hosting.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Aspire.Hosting.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Aspire.Hosting.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Aspire.Hosting.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Aspire.Hosting.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Aspire.Hosting.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Aspire.Hosting.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Aspire.Hosting.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Aspire.Hosting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Aspire.Hosting.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Aspire.Hosting.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Aspire.Hosting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Aspire.Hosting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Aspire.Hosting.AppHost/13.1.0": { + "type": "package", + "dependencies": { + "AspNetCore.HealthChecks.Uris": "9.0.0", + "Aspire.Hosting": "13.1.0", + "Google.Protobuf": "3.33.0", + "Grpc.AspNetCore": "2.71.0", + "Grpc.Net.ClientFactory": "2.71.0", + "Grpc.Tools": "2.72.0", + "Humanizer.Core": "2.14.1", + "JsonPatch.Net": "3.3.0", + "KubernetesClient": "18.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Configuration.Binder": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks": "10.0.1", + "Microsoft.Extensions.FileSystemGlobbing": "10.0.1", + "Microsoft.Extensions.Hosting": "10.0.1", + "Microsoft.Extensions.Hosting.Abstractions": "10.0.1", + "Microsoft.Extensions.Http": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1", + "Newtonsoft.Json": "13.0.4", + "Polly.Core": "8.6.4", + "Semver": "3.0.0", + "StreamJsonRpc": "2.22.23", + "System.IO.Hashing": "9.0.10" + }, + "compile": { + "lib/net10.0/Aspire.Hosting.AppHost.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Aspire.Hosting.AppHost.dll": { + "related": ".xml" + } + }, + "build": { + "build/Aspire.Hosting.AppHost.props": {}, + "build/Aspire.Hosting.AppHost.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Aspire.Hosting.AppHost.props": {}, + "buildMultiTargeting/Aspire.Hosting.AppHost.targets": {} + } + }, + "Aspire.Hosting.Nats/13.1.0": { + "type": "package", + "dependencies": { + "AspNetCore.HealthChecks.Uris": "9.0.0", + "Aspire.Hosting": "13.1.0", + "Google.Protobuf": "3.33.0", + "Grpc.AspNetCore": "2.71.0", + "Grpc.Net.ClientFactory": "2.71.0", + "Grpc.Tools": "2.72.0", + "Humanizer.Core": "2.14.1", + "JsonPatch.Net": "3.3.0", + "KubernetesClient": "18.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.22", + "Microsoft.Extensions.FileSystemGlobbing": "10.0.1", + "Microsoft.Extensions.Hosting": "8.0.1", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Http": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0", + "NATS.Net": "2.6.11", + "Newtonsoft.Json": "13.0.4", + "Polly.Core": "8.6.4", + "Semver": "3.0.0", + "StreamJsonRpc": "2.22.23", + "System.IO.Hashing": "9.0.10" + }, + "compile": { + "lib/net8.0/Aspire.Hosting.Nats.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Aspire.Hosting.Nats.dll": { + "related": ".xml" + } + } + }, + "Aspire.Hosting.Orchestration.osx-arm64/13.1.0": { + "type": "package", + "build": { + "buildTransitive/Aspire.Hosting.Orchestration.osx-arm64.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Aspire.Hosting.Orchestration.osx-arm64.targets": {} + } + }, + "Aspire.Hosting.PostgreSQL/13.1.0": { + "type": "package", + "dependencies": { + "AspNetCore.HealthChecks.NpgSql": "9.0.0", + "AspNetCore.HealthChecks.Uris": "9.0.0", + "Aspire.Hosting": "13.1.0", + "Google.Protobuf": "3.33.0", + "Grpc.AspNetCore": "2.71.0", + "Grpc.Net.ClientFactory": "2.71.0", + "Grpc.Tools": "2.72.0", + "Humanizer.Core": "2.14.1", + "JsonPatch.Net": "3.3.0", + "KubernetesClient": "18.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.22", + "Microsoft.Extensions.FileSystemGlobbing": "10.0.1", + "Microsoft.Extensions.Hosting": "8.0.1", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Http": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0", + "Newtonsoft.Json": "13.0.4", + "Polly.Core": "8.6.4", + "Semver": "3.0.0", + "StreamJsonRpc": "2.22.23", + "System.IO.Hashing": "9.0.10" + }, + "compile": { + "lib/net8.0/Aspire.Hosting.PostgreSQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Aspire.Hosting.PostgreSQL.dll": { + "related": ".xml" + } + } + }, + "AspNetCore.HealthChecks.NpgSql/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.11", + "Npgsql": "8.0.3" + }, + "compile": { + "lib/net8.0/HealthChecks.NpgSql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/HealthChecks.NpgSql.dll": { + "related": ".xml" + } + } + }, + "AspNetCore.HealthChecks.Uris/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.11", + "Microsoft.Extensions.Http": "8.0.0" + }, + "compile": { + "lib/net8.0/HealthChecks.Uris.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/HealthChecks.Uris.dll": { + "related": ".xml" + } + } + }, + "Fractions/7.3.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Fractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Fractions.dll": { + "related": ".xml" + } + } + }, + "Google.Protobuf/3.33.0": { + "type": "package", + "compile": { + "lib/net5.0/Google.Protobuf.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "related": ".pdb;.xml" + } + } + }, + "Grpc.AspNetCore/2.71.0": { + "type": "package", + "dependencies": { + "Google.Protobuf": "3.30.2", + "Grpc.AspNetCore.Server.ClientFactory": "2.71.0", + "Grpc.Tools": "2.71.0" + }, + "compile": { + "lib/net9.0/_._": {} + }, + "runtime": { + "lib/net9.0/_._": {} + } + }, + "Grpc.AspNetCore.Server/2.71.0": { + "type": "package", + "dependencies": { + "Grpc.Net.Common": "2.71.0" + }, + "compile": { + "lib/net9.0/Grpc.AspNetCore.Server.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Grpc.AspNetCore.Server.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Grpc.AspNetCore.Server.ClientFactory/2.71.0": { + "type": "package", + "dependencies": { + "Grpc.AspNetCore.Server": "2.71.0", + "Grpc.Net.ClientFactory": "2.71.0" + }, + "compile": { + "lib/net9.0/Grpc.AspNetCore.Server.ClientFactory.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Grpc.AspNetCore.Server.ClientFactory.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Grpc.Core.Api/2.71.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Grpc.Core.Api.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/Grpc.Core.Api.dll": { + "related": ".pdb;.xml" + } + } + }, + "Grpc.Net.Client/2.71.0": { + "type": "package", + "dependencies": { + "Grpc.Net.Common": "2.71.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "compile": { + "lib/net8.0/Grpc.Net.Client.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Grpc.Net.Client.dll": { + "related": ".pdb;.xml" + } + } + }, + "Grpc.Net.ClientFactory/2.71.0": { + "type": "package", + "dependencies": { + "Grpc.Net.Client": "2.71.0", + "Microsoft.Extensions.Http": "6.0.0" + }, + "compile": { + "lib/net8.0/Grpc.Net.ClientFactory.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Grpc.Net.ClientFactory.dll": { + "related": ".pdb;.xml" + } + } + }, + "Grpc.Net.Common/2.71.0": { + "type": "package", + "dependencies": { + "Grpc.Core.Api": "2.71.0" + }, + "compile": { + "lib/net8.0/Grpc.Net.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Grpc.Net.Common.dll": { + "related": ".pdb;.xml" + } + } + }, + "Grpc.Tools/2.72.0": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "Json.More.Net/2.1.0": { + "type": "package", + "compile": { + "lib/net9.0/Json.More.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Json.More.dll": { + "related": ".xml" + } + } + }, + "JsonPatch.Net/3.3.0": { + "type": "package", + "dependencies": { + "JsonPointer.Net": "5.2.0" + }, + "compile": { + "lib/net9.0/JsonPatch.Net.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/JsonPatch.Net.dll": { + "related": ".xml" + } + } + }, + "JsonPointer.Net/5.2.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Json.More.Net": "2.1.0" + }, + "compile": { + "lib/net9.0/JsonPointer.Net.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/JsonPointer.Net.dll": { + "related": ".xml" + } + } + }, + "KubernetesClient/18.0.5": { + "type": "package", + "dependencies": { + "Fractions": "7.3.0", + "YamlDotNet": "16.3.0" + }, + "compile": { + "lib/net9.0/KubernetesClient.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/KubernetesClient.dll": { + "related": ".pdb;.xml" + } + } + }, + "MessagePack/2.5.192": { + "type": "package", + "dependencies": { + "MessagePack.Annotations": "2.5.192", + "Microsoft.NET.StringTools": "17.6.3" + }, + "compile": { + "lib/net6.0/MessagePack.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/MessagePack.dll": { + "related": ".xml" + } + } + }, + "MessagePack.Annotations/2.5.192": { + "type": "package", + "compile": { + "lib/netstandard2.0/MessagePack.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/MessagePack.Annotations.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.1", + "Microsoft.Extensions.FileProviders.Physical": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Json/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Configuration.FileExtensions": "10.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Configuration.Json": "10.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.1", + "Microsoft.Extensions.FileProviders.Physical": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props": {}, + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.1", + "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "10.0.1", + "Microsoft.Extensions.Hosting.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.1", + "Microsoft.Extensions.FileSystemGlobbing": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Configuration.Binder": "10.0.1", + "Microsoft.Extensions.Configuration.CommandLine": "10.0.1", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "10.0.1", + "Microsoft.Extensions.Configuration.FileExtensions": "10.0.1", + "Microsoft.Extensions.Configuration.Json": "10.0.1", + "Microsoft.Extensions.Configuration.UserSecrets": "10.0.1", + "Microsoft.Extensions.DependencyInjection": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Diagnostics": "10.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.1", + "Microsoft.Extensions.FileProviders.Physical": "10.0.1", + "Microsoft.Extensions.Hosting.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging.Configuration": "10.0.1", + "Microsoft.Extensions.Logging.Console": "10.0.1", + "Microsoft.Extensions.Logging.Debug": "10.0.1", + "Microsoft.Extensions.Logging.EventLog": "10.0.1", + "Microsoft.Extensions.Logging.EventSource": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Diagnostics": "10.0.1", + "Microsoft.Extensions.Logging": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Configuration.Binder": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1", + "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Console/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging.Configuration": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Debug/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventLog/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1", + "System.Diagnostics.EventLog": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventSource/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Options/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Configuration.Binder": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.NET.StringTools/17.6.3": { + "type": "package", + "compile": { + "ref/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.NET.StringTools.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.VisualStudio.Threading.Only/17.13.61": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Validation": "17.8.8" + }, + "compile": { + "lib/net8.0/Microsoft.VisualStudio.Threading.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Threading.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net8.0/cs/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.VisualStudio.Validation/17.8.8": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.VisualStudio.Validation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.VisualStudio.Validation.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net6.0/cs/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "cs" + }, + "lib/net6.0/de/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "de" + }, + "lib/net6.0/es/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "es" + }, + "lib/net6.0/fr/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "fr" + }, + "lib/net6.0/it/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "it" + }, + "lib/net6.0/ja/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "ja" + }, + "lib/net6.0/ko/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "ko" + }, + "lib/net6.0/pl/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "pl" + }, + "lib/net6.0/pt-BR/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "pt-BR" + }, + "lib/net6.0/ru/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "ru" + }, + "lib/net6.0/tr/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "tr" + }, + "lib/net6.0/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net6.0/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "NATS.Client.Core/2.6.11": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.1", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Core.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Hosting/2.6.11": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", + "NATS.Client.Core": "2.6.11" + }, + "compile": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.JetStream/2.6.11": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.6.11" + }, + "compile": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.KeyValueStore/2.6.11": { + "type": "package", + "dependencies": { + "NATS.Client.JetStream": "2.6.11" + }, + "compile": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.ObjectStore/2.6.11": { + "type": "package", + "dependencies": { + "NATS.Client.JetStream": "2.6.11" + }, + "compile": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Serializers.Json/2.6.11": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.6.11" + }, + "compile": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Services/2.6.11": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.6.11" + }, + "compile": { + "lib/net8.0/NATS.Client.Services.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Services.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Simplified/2.6.11": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.6.11", + "NATS.Client.Serializers.Json": "2.6.11" + }, + "compile": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "related": ".xml" + } + } + }, + "NATS.Net/2.6.11": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.6.11", + "NATS.Client.Hosting": "2.6.11", + "NATS.Client.JetStream": "2.6.11", + "NATS.Client.KeyValueStore": "2.6.11", + "NATS.Client.ObjectStore": "2.6.11", + "NATS.Client.Serializers.Json": "2.6.11", + "NATS.Client.Services": "2.6.11", + "NATS.Client.Simplified": "2.6.11" + }, + "compile": { + "lib/net8.0/NATS.Net.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Net.dll": { + "related": ".xml" + } + } + }, + "Nerdbank.Streams/2.12.87": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Threading.Only": "17.13.61", + "Microsoft.VisualStudio.Validation": "17.8.8" + }, + "compile": { + "lib/net8.0/Nerdbank.Streams.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Nerdbank.Streams.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.4": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Npgsql/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Polly.Core/8.6.4": { + "type": "package", + "compile": { + "lib/net8.0/Polly.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Semver/3.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.1" + }, + "compile": { + "lib/net5.0/Semver.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Semver.dll": { + "related": ".xml" + } + } + }, + "StreamJsonRpc/2.22.23": { + "type": "package", + "dependencies": { + "MessagePack": "2.5.192", + "Microsoft.VisualStudio.Threading.Only": "17.13.61", + "Microsoft.VisualStudio.Validation": "17.8.8", + "Nerdbank.Streams": "2.12.87", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net8.0/StreamJsonRpc.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/StreamJsonRpc.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net8.0/cs/StreamJsonRpc.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/StreamJsonRpc.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/StreamJsonRpc.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/StreamJsonRpc.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/StreamJsonRpc.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/StreamJsonRpc.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/StreamJsonRpc.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/StreamJsonRpc.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/StreamJsonRpc.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/StreamJsonRpc.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/StreamJsonRpc.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/StreamJsonRpc.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/StreamJsonRpc.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Diagnostics.EventLog/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Hashing/9.0.10": { + "type": "package", + "compile": { + "lib/net9.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "YamlDotNet/16.3.0": { + "type": "package", + "compile": { + "lib/net8.0/YamlDotNet.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/YamlDotNet.dll": { + "related": ".xml" + } + } + } + } + }, + "libraries": { + "Aspire.Dashboard.Sdk.osx-arm64/13.1.0": { + "sha512": "gPPoB34mZokO4NY4oBv4Mk3yPS9L4kFOkK9o1yLL0Tgu3T7eVQFtzsCercPk9yHcxJr66IGeEOrpiYDJedE1uQ==", + "type": "package", + "path": "aspire.dashboard.sdk.osx-arm64/13.1.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "aspire.dashboard.sdk.osx-arm64.13.1.0.nupkg.sha512", + "aspire.dashboard.sdk.osx-arm64.nuspec", + "build/Aspire.Dashboard.Sdk.osx-arm64.props", + "build/Aspire.Dashboard.Sdk.osx-arm64.targets", + "buildMultiTargeting/Aspire.Dashboard.Sdk.osx-arm64.props", + "buildMultiTargeting/Aspire.Dashboard.Sdk.osx-arm64.targets", + "buildTransitive/Aspire.Dashboard.Sdk.osx-arm64.props", + "buildTransitive/Aspire.Dashboard.Sdk.osx-arm64.targets", + "data/UnixFilePermissions.xml", + "tools/Aspire.Dashboard", + "tools/Aspire.Dashboard.deps.json", + "tools/Aspire.Dashboard.dll", + "tools/Aspire.Dashboard.runtimeconfig.json", + "tools/Aspire.Dashboard.staticwebassets.endpoints.json", + "tools/Aspire.Dashboard.xml", + "tools/Google.Protobuf.dll", + "tools/Grpc.AspNetCore.Server.ClientFactory.dll", + "tools/Grpc.AspNetCore.Server.dll", + "tools/Grpc.Core.Api.dll", + "tools/Grpc.Net.Client.dll", + "tools/Grpc.Net.ClientFactory.dll", + "tools/Grpc.Net.Common.dll", + "tools/Humanizer.dll", + "tools/Markdig.dll", + "tools/Microsoft.AspNetCore.Authentication.Certificate.dll", + "tools/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll", + "tools/Microsoft.Extensions.AI.Abstractions.dll", + "tools/Microsoft.Extensions.AI.OpenAI.dll", + "tools/Microsoft.Extensions.AI.dll", + "tools/Microsoft.Extensions.Caching.Abstractions.dll", + "tools/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "tools/Microsoft.Extensions.Logging.Abstractions.dll", + "tools/Microsoft.Extensions.Primitives.dll", + "tools/Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll", + "tools/Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll", + "tools/Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll", + "tools/Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll", + "tools/Microsoft.FluentUI.AspNetCore.Components.Icons.dll", + "tools/Microsoft.FluentUI.AspNetCore.Components.dll", + "tools/Microsoft.IdentityModel.Abstractions.dll", + "tools/Microsoft.IdentityModel.JsonWebTokens.dll", + "tools/Microsoft.IdentityModel.Logging.dll", + "tools/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "tools/Microsoft.IdentityModel.Protocols.dll", + "tools/Microsoft.IdentityModel.Tokens.dll", + "tools/Microsoft.OpenApi.dll", + "tools/ModelContextProtocol.AspNetCore.dll", + "tools/ModelContextProtocol.Core.dll", + "tools/ModelContextProtocol.dll", + "tools/OpenAI.dll", + "tools/System.ClientModel.dll", + "tools/System.Diagnostics.DiagnosticSource.dll", + "tools/System.IO.Pipelines.dll", + "tools/System.IdentityModel.Tokens.Jwt.dll", + "tools/System.Memory.Data.dll", + "tools/System.Net.ServerSentEvents.dll", + "tools/System.Numerics.Tensors.dll", + "tools/System.Text.Encodings.Web.dll", + "tools/System.Text.Json.dll", + "tools/System.Threading.Channels.dll", + "tools/appsettings.Development.json", + "tools/appsettings.json", + "tools/cs/Aspire.Dashboard.resources.dll", + "tools/de/Aspire.Dashboard.resources.dll", + "tools/es/Aspire.Dashboard.resources.dll", + "tools/fr/Aspire.Dashboard.resources.dll", + "tools/it/Aspire.Dashboard.resources.dll", + "tools/ja/Aspire.Dashboard.resources.dll", + "tools/ko/Aspire.Dashboard.resources.dll", + "tools/pl/Aspire.Dashboard.resources.dll", + "tools/pt-BR/Aspire.Dashboard.resources.dll", + "tools/ru/Aspire.Dashboard.resources.dll", + "tools/tr/Aspire.Dashboard.resources.dll", + "tools/wwwroot/Aspire.Dashboard.modules.json", + "tools/wwwroot/Aspire.Dashboard.styles.css", + "tools/wwwroot/Components/Controls/AssistantChat.razor.js", + "tools/wwwroot/Components/Controls/Chart/MetricTable.razor.js", + "tools/wwwroot/Components/Controls/MarkdownRenderer.razor.js", + "tools/wwwroot/Components/Controls/TextVisualizer.razor.js", + "tools/wwwroot/Components/Pages/Login.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js", + "tools/wwwroot/_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js", + "tools/wwwroot/css/app.css", + "tools/wwwroot/css/highlight.css", + "tools/wwwroot/css/markdown.css", + "tools/wwwroot/favicon.ico", + "tools/wwwroot/framework/blazor.web.js", + "tools/wwwroot/img/TokenExample.png", + "tools/wwwroot/img/VSCodeMcpApiKeyExample.png", + "tools/wwwroot/img/VSMcpApiKeyExample.png", + "tools/wwwroot/js/app-metrics.js", + "tools/wwwroot/js/app-reconnect.js", + "tools/wwwroot/js/app-resourcegraph.js", + "tools/wwwroot/js/app-theme.js", + "tools/wwwroot/js/app.js", + "tools/wwwroot/js/d3.v7.min.js", + "tools/wwwroot/js/highlight-11.10.0.min.js", + "tools/wwwroot/js/plotly-basic-2.35.2.min.js", + "tools/zh-Hans/Aspire.Dashboard.resources.dll", + "tools/zh-Hant/Aspire.Dashboard.resources.dll" + ] + }, + "Aspire.Hosting/13.1.0": { + "sha512": "veub9dDYRFQPbAnixhRRdikKI6zonmA7F6TViqKr1HWx97CaXBAJKe1ju5iTZ4+wYpZdLeDVuzw5MWB4qQAIMw==", + "type": "package", + "path": "aspire.hosting/13.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "aspire.hosting.13.1.0.nupkg.sha512", + "aspire.hosting.nuspec", + "lib/net8.0/Aspire.Hosting.dll", + "lib/net8.0/Aspire.Hosting.xml", + "lib/net8.0/cs/Aspire.Hosting.resources.dll", + "lib/net8.0/de/Aspire.Hosting.resources.dll", + "lib/net8.0/es/Aspire.Hosting.resources.dll", + "lib/net8.0/fr/Aspire.Hosting.resources.dll", + "lib/net8.0/it/Aspire.Hosting.resources.dll", + "lib/net8.0/ja/Aspire.Hosting.resources.dll", + "lib/net8.0/ko/Aspire.Hosting.resources.dll", + "lib/net8.0/pl/Aspire.Hosting.resources.dll", + "lib/net8.0/pt-BR/Aspire.Hosting.resources.dll", + "lib/net8.0/ru/Aspire.Hosting.resources.dll", + "lib/net8.0/tr/Aspire.Hosting.resources.dll", + "lib/net8.0/zh-Hans/Aspire.Hosting.resources.dll", + "lib/net8.0/zh-Hant/Aspire.Hosting.resources.dll" + ] + }, + "Aspire.Hosting.AppHost/13.1.0": { + "sha512": "mjE/g+r/copJNVWBk/SytyfekaNbp7QB/hj5G3tcaFm138rnNK6jkBYCbk8MZDdGflL4FYoqN656yhLDiH9faQ==", + "type": "package", + "path": "aspire.hosting.apphost/13.1.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "AspireAppHostConfiguration.json", + "Icon.png", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Aspire.Hosting.Analyzers.dll", + "aspire.hosting.apphost.13.1.0.nupkg.sha512", + "aspire.hosting.apphost.nuspec", + "build/Aspire.Hosting.AppHost.props", + "build/Aspire.Hosting.AppHost.targets", + "buildMultiTargeting/Aspire.Hosting.AppHost.props", + "buildMultiTargeting/Aspire.Hosting.AppHost.targets", + "lib/net10.0/Aspire.Hosting.AppHost.dll", + "lib/net10.0/Aspire.Hosting.AppHost.xml", + "lib/net8.0/Aspire.Hosting.AppHost.dll", + "lib/net8.0/Aspire.Hosting.AppHost.xml", + "lib/net9.0/Aspire.Hosting.AppHost.dll", + "lib/net9.0/Aspire.Hosting.AppHost.xml", + "tools/net472/Aspire.Hosting.Tasks.dll", + "tools/net8.0/Aspire.Hosting.Tasks.dll" + ] + }, + "Aspire.Hosting.Nats/13.1.0": { + "sha512": "YEVUZb6XkppYkGcHhssDYO1iqGuFATfygoYmp9lOoJgN7p59KPXk4oRE1MuFEgBo/txMXVwPzHjVugUOPR+gqw==", + "type": "package", + "path": "aspire.hosting.nats/13.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "aspire.hosting.nats.13.1.0.nupkg.sha512", + "aspire.hosting.nats.nuspec", + "lib/net8.0/Aspire.Hosting.Nats.dll", + "lib/net8.0/Aspire.Hosting.Nats.xml" + ] + }, + "Aspire.Hosting.Orchestration.osx-arm64/13.1.0": { + "sha512": "Odw4PC2fvcC0QyG8C9OO9npGZznNZ9o86OhL7nSsc3MCv34n4zVFhp1OLKy/r6JNdiLoU1hdqF5ge8vzjdR++w==", + "type": "package", + "path": "aspire.hosting.orchestration.osx-arm64/13.1.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "aspire.hosting.orchestration.osx-arm64.13.1.0.nupkg.sha512", + "aspire.hosting.orchestration.osx-arm64.nuspec", + "build/Aspire.Hosting.Orchestration.osx-arm64.targets", + "buildMultiTargeting/Aspire.Hosting.Orchestration.osx-arm64.targets", + "buildTransitive/Aspire.Hosting.Orchestration.osx-arm64.targets", + "data/UnixFilePermissions.xml", + "tools/EULA.rtf", + "tools/NOTICE", + "tools/_manifest/spdx_2.2/ESRPClientLogs1212224139564.json", + "tools/_manifest/spdx_2.2/bsi.cose", + "tools/_manifest/spdx_2.2/bsi.json", + "tools/_manifest/spdx_2.2/manifest.cat", + "tools/_manifest/spdx_2.2/manifest.spdx.cose", + "tools/_manifest/spdx_2.2/manifest.spdx.json", + "tools/_manifest/spdx_2.2/manifest.spdx.json.sha256", + "tools/dcp", + "tools/ext/bin/dcpproc", + "tools/ext/bin/dcptun", + "tools/ext/bin/dcptun_c", + "tools/ext/dcpctrl" + ] + }, + "Aspire.Hosting.PostgreSQL/13.1.0": { + "sha512": "PxGe4UXh/Gcfr69m/IicL01nicv8n5k6T/l2NVoyosk2/xt6yGNfTwUyU4fIRmvnLpFl+ow1lZs7R4GYY37dLw==", + "type": "package", + "path": "aspire.hosting.postgresql/13.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "aspire.hosting.postgresql.13.1.0.nupkg.sha512", + "aspire.hosting.postgresql.nuspec", + "lib/net8.0/Aspire.Hosting.PostgreSQL.dll", + "lib/net8.0/Aspire.Hosting.PostgreSQL.xml" + ] + }, + "AspNetCore.HealthChecks.NpgSql/9.0.0": { + "sha512": "npc58/AD5zuVxERdhCl2Kb7WnL37mwX42SJcXIwvmEig0/dugOLg3SIwtfvvh3TnvTwR/sk5LYNkkPaBdks61A==", + "type": "package", + "path": "aspnetcore.healthchecks.npgsql/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "aspnetcore.healthchecks.npgsql.9.0.0.nupkg.sha512", + "aspnetcore.healthchecks.npgsql.nuspec", + "icon.png", + "lib/net8.0/HealthChecks.NpgSql.dll", + "lib/net8.0/HealthChecks.NpgSql.xml", + "lib/netstandard2.0/HealthChecks.NpgSql.dll", + "lib/netstandard2.0/HealthChecks.NpgSql.xml" + ] + }, + "AspNetCore.HealthChecks.Uris/9.0.0": { + "sha512": "XYdNlA437KeF8p9qOpZFyNqAN+c0FXt/JjTvzH/Qans0q0O3pPE8KPnn39ucQQjR/Roum1vLTP3kXiUs8VHyuA==", + "type": "package", + "path": "aspnetcore.healthchecks.uris/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "aspnetcore.healthchecks.uris.9.0.0.nupkg.sha512", + "aspnetcore.healthchecks.uris.nuspec", + "icon.png", + "lib/net8.0/HealthChecks.Uris.dll", + "lib/net8.0/HealthChecks.Uris.xml", + "lib/netstandard2.0/HealthChecks.Uris.dll", + "lib/netstandard2.0/HealthChecks.Uris.xml" + ] + }, + "Fractions/7.3.0": { + "sha512": "2bETFWLBc8b7Ut2SVi+bxhGVwiSpknHYGBh2PADyGWONLkTxT7bKyDRhF8ao+XUv90tq8Fl7GTPxSI5bacIRJw==", + "type": "package", + "path": "fractions/7.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Fraction.png", + "Readme.md", + "fractions.7.3.0.nupkg.sha512", + "fractions.nuspec", + "lib/netstandard2.0/Fractions.dll", + "lib/netstandard2.0/Fractions.xml", + "lib/netstandard2.1/Fractions.dll", + "lib/netstandard2.1/Fractions.xml", + "license.txt" + ] + }, + "Google.Protobuf/3.33.0": { + "sha512": "+kIa03YipuiSDeRuZwcDcXS1xBQAFeGLIjuLbgJr2i+TlwBPYAqdnQZJ2SDVzIgDyy+q+n/400WyWyrJ5ZqCgQ==", + "type": "package", + "path": "google.protobuf/3.33.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "google.protobuf.3.33.0.nupkg.sha512", + "google.protobuf.nuspec", + "lib/net45/Google.Protobuf.dll", + "lib/net45/Google.Protobuf.pdb", + "lib/net45/Google.Protobuf.xml", + "lib/net5.0/Google.Protobuf.dll", + "lib/net5.0/Google.Protobuf.pdb", + "lib/net5.0/Google.Protobuf.xml", + "lib/netstandard1.1/Google.Protobuf.dll", + "lib/netstandard1.1/Google.Protobuf.pdb", + "lib/netstandard1.1/Google.Protobuf.xml", + "lib/netstandard2.0/Google.Protobuf.dll", + "lib/netstandard2.0/Google.Protobuf.pdb", + "lib/netstandard2.0/Google.Protobuf.xml" + ] + }, + "Grpc.AspNetCore/2.71.0": { + "sha512": "B4wAbNtAuHNiHAMxLFWL74wUElzNOOboFnypalqpX76piCOGz/w5FpilbVVYGboI4Qgl4ZmZsvDZ1zLwHNsjnw==", + "type": "package", + "path": "grpc.aspnetcore/2.71.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "grpc.aspnetcore.2.71.0.nupkg.sha512", + "grpc.aspnetcore.nuspec", + "lib/net6.0/_._", + "lib/net7.0/_._", + "lib/net8.0/_._", + "lib/net9.0/_._", + "packageIcon.png" + ] + }, + "Grpc.AspNetCore.Server/2.71.0": { + "sha512": "kv+9YVB6MqDYWIcstXvWrT7Xc1si/sfINzzSxvQfjC3aei+92gXDUXCH/Q+TEvi4QSICRqu92BYcrXUBW7cuOw==", + "type": "package", + "path": "grpc.aspnetcore.server/2.71.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "grpc.aspnetcore.server.2.71.0.nupkg.sha512", + "grpc.aspnetcore.server.nuspec", + "lib/net6.0/Grpc.AspNetCore.Server.dll", + "lib/net6.0/Grpc.AspNetCore.Server.pdb", + "lib/net6.0/Grpc.AspNetCore.Server.xml", + "lib/net7.0/Grpc.AspNetCore.Server.dll", + "lib/net7.0/Grpc.AspNetCore.Server.pdb", + "lib/net7.0/Grpc.AspNetCore.Server.xml", + "lib/net8.0/Grpc.AspNetCore.Server.dll", + "lib/net8.0/Grpc.AspNetCore.Server.pdb", + "lib/net8.0/Grpc.AspNetCore.Server.xml", + "lib/net9.0/Grpc.AspNetCore.Server.dll", + "lib/net9.0/Grpc.AspNetCore.Server.pdb", + "lib/net9.0/Grpc.AspNetCore.Server.xml", + "packageIcon.png" + ] + }, + "Grpc.AspNetCore.Server.ClientFactory/2.71.0": { + "sha512": "AHvMxoC+esO1e/nOYBjxvn0WDHAfglcVBjtkBy6ohgnV+PzkF8UdkPHE02xnyPFaSokWGZKnWzjgd00x6EZpyQ==", + "type": "package", + "path": "grpc.aspnetcore.server.clientfactory/2.71.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "grpc.aspnetcore.server.clientfactory.2.71.0.nupkg.sha512", + "grpc.aspnetcore.server.clientfactory.nuspec", + "lib/net6.0/Grpc.AspNetCore.Server.ClientFactory.dll", + "lib/net6.0/Grpc.AspNetCore.Server.ClientFactory.pdb", + "lib/net6.0/Grpc.AspNetCore.Server.ClientFactory.xml", + "lib/net7.0/Grpc.AspNetCore.Server.ClientFactory.dll", + "lib/net7.0/Grpc.AspNetCore.Server.ClientFactory.pdb", + "lib/net7.0/Grpc.AspNetCore.Server.ClientFactory.xml", + "lib/net8.0/Grpc.AspNetCore.Server.ClientFactory.dll", + "lib/net8.0/Grpc.AspNetCore.Server.ClientFactory.pdb", + "lib/net8.0/Grpc.AspNetCore.Server.ClientFactory.xml", + "lib/net9.0/Grpc.AspNetCore.Server.ClientFactory.dll", + "lib/net9.0/Grpc.AspNetCore.Server.ClientFactory.pdb", + "lib/net9.0/Grpc.AspNetCore.Server.ClientFactory.xml", + "packageIcon.png" + ] + }, + "Grpc.Core.Api/2.71.0": { + "sha512": "QquqUC37yxsDzd1QaDRsH2+uuznWPTS8CVE2Yzwl3CvU4geTNkolQXoVN812M2IwT6zpv3jsZRc9ExJFNFslTg==", + "type": "package", + "path": "grpc.core.api/2.71.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "grpc.core.api.2.71.0.nupkg.sha512", + "grpc.core.api.nuspec", + "lib/net462/Grpc.Core.Api.dll", + "lib/net462/Grpc.Core.Api.pdb", + "lib/net462/Grpc.Core.Api.xml", + "lib/netstandard2.0/Grpc.Core.Api.dll", + "lib/netstandard2.0/Grpc.Core.Api.pdb", + "lib/netstandard2.0/Grpc.Core.Api.xml", + "lib/netstandard2.1/Grpc.Core.Api.dll", + "lib/netstandard2.1/Grpc.Core.Api.pdb", + "lib/netstandard2.1/Grpc.Core.Api.xml", + "packageIcon.png" + ] + }, + "Grpc.Net.Client/2.71.0": { + "sha512": "U1vr20r5ngoT9nlb7wejF28EKN+taMhJsV9XtK9MkiepTZwnKxxiarriiMfCHuDAfPUm9XUjFMn/RIuJ4YY61w==", + "type": "package", + "path": "grpc.net.client/2.71.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "grpc.net.client.2.71.0.nupkg.sha512", + "grpc.net.client.nuspec", + "lib/net462/Grpc.Net.Client.dll", + "lib/net462/Grpc.Net.Client.pdb", + "lib/net462/Grpc.Net.Client.xml", + "lib/net6.0/Grpc.Net.Client.dll", + "lib/net6.0/Grpc.Net.Client.pdb", + "lib/net6.0/Grpc.Net.Client.xml", + "lib/net7.0/Grpc.Net.Client.dll", + "lib/net7.0/Grpc.Net.Client.pdb", + "lib/net7.0/Grpc.Net.Client.xml", + "lib/net8.0/Grpc.Net.Client.dll", + "lib/net8.0/Grpc.Net.Client.pdb", + "lib/net8.0/Grpc.Net.Client.xml", + "lib/netstandard2.0/Grpc.Net.Client.dll", + "lib/netstandard2.0/Grpc.Net.Client.pdb", + "lib/netstandard2.0/Grpc.Net.Client.xml", + "lib/netstandard2.1/Grpc.Net.Client.dll", + "lib/netstandard2.1/Grpc.Net.Client.pdb", + "lib/netstandard2.1/Grpc.Net.Client.xml", + "packageIcon.png" + ] + }, + "Grpc.Net.ClientFactory/2.71.0": { + "sha512": "8oPLwQLPo86fmcf9ghjCDyNsSWhtHc3CXa/AqwF8Su/pG7qAoeWWtbymsZhoNvCV9Zjzb6BDcIPKXLYt+O175g==", + "type": "package", + "path": "grpc.net.clientfactory/2.71.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "grpc.net.clientfactory.2.71.0.nupkg.sha512", + "grpc.net.clientfactory.nuspec", + "lib/net6.0/Grpc.Net.ClientFactory.dll", + "lib/net6.0/Grpc.Net.ClientFactory.pdb", + "lib/net6.0/Grpc.Net.ClientFactory.xml", + "lib/net7.0/Grpc.Net.ClientFactory.dll", + "lib/net7.0/Grpc.Net.ClientFactory.pdb", + "lib/net7.0/Grpc.Net.ClientFactory.xml", + "lib/net8.0/Grpc.Net.ClientFactory.dll", + "lib/net8.0/Grpc.Net.ClientFactory.pdb", + "lib/net8.0/Grpc.Net.ClientFactory.xml", + "lib/netstandard2.0/Grpc.Net.ClientFactory.dll", + "lib/netstandard2.0/Grpc.Net.ClientFactory.pdb", + "lib/netstandard2.0/Grpc.Net.ClientFactory.xml", + "lib/netstandard2.1/Grpc.Net.ClientFactory.dll", + "lib/netstandard2.1/Grpc.Net.ClientFactory.pdb", + "lib/netstandard2.1/Grpc.Net.ClientFactory.xml", + "packageIcon.png" + ] + }, + "Grpc.Net.Common/2.71.0": { + "sha512": "v0c8R97TwRYwNXlC8GyRXwYTCNufpDfUtj9la+wUrZFzVWkFJuNAltU+c0yI3zu0jl54k7en6u2WKgZgd57r2Q==", + "type": "package", + "path": "grpc.net.common/2.71.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "grpc.net.common.2.71.0.nupkg.sha512", + "grpc.net.common.nuspec", + "lib/net6.0/Grpc.Net.Common.dll", + "lib/net6.0/Grpc.Net.Common.pdb", + "lib/net6.0/Grpc.Net.Common.xml", + "lib/net7.0/Grpc.Net.Common.dll", + "lib/net7.0/Grpc.Net.Common.pdb", + "lib/net7.0/Grpc.Net.Common.xml", + "lib/net8.0/Grpc.Net.Common.dll", + "lib/net8.0/Grpc.Net.Common.pdb", + "lib/net8.0/Grpc.Net.Common.xml", + "lib/netstandard2.0/Grpc.Net.Common.dll", + "lib/netstandard2.0/Grpc.Net.Common.pdb", + "lib/netstandard2.0/Grpc.Net.Common.xml", + "lib/netstandard2.1/Grpc.Net.Common.dll", + "lib/netstandard2.1/Grpc.Net.Common.pdb", + "lib/netstandard2.1/Grpc.Net.Common.xml", + "packageIcon.png" + ] + }, + "Grpc.Tools/2.72.0": { + "sha512": "BCiuQ03EYjLHCo9hqZmY5barsz5vvcz/+/ICt5wCbukaePHZmMPDGelKlkxWx3q+f5xOMNHa9zXQ2N6rQZ4B+w==", + "type": "package", + "path": "grpc.tools/2.72.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "build/Grpc.Tools.props", + "build/Grpc.Tools.targets", + "build/_grpc/Grpc.CSharp.xml", + "build/_grpc/_Grpc.Tools.props", + "build/_grpc/_Grpc.Tools.targets", + "build/_protobuf/Google.Protobuf.Tools.props", + "build/_protobuf/Google.Protobuf.Tools.targets", + "build/_protobuf/Protobuf.CSharp.xml", + "build/_protobuf/net45/Protobuf.MSBuild.dll", + "build/_protobuf/net45/Protobuf.MSBuild.pdb", + "build/_protobuf/netstandard1.3/Protobuf.MSBuild.dll", + "build/_protobuf/netstandard1.3/Protobuf.MSBuild.pdb", + "build/native/include/google/protobuf/any.proto", + "build/native/include/google/protobuf/api.proto", + "build/native/include/google/protobuf/descriptor.proto", + "build/native/include/google/protobuf/duration.proto", + "build/native/include/google/protobuf/empty.proto", + "build/native/include/google/protobuf/field_mask.proto", + "build/native/include/google/protobuf/source_context.proto", + "build/native/include/google/protobuf/struct.proto", + "build/native/include/google/protobuf/timestamp.proto", + "build/native/include/google/protobuf/type.proto", + "build/native/include/google/protobuf/wrappers.proto", + "grpc.tools.2.72.0.nupkg.sha512", + "grpc.tools.nuspec", + "packageIcon.png", + "tools/linux_arm64/grpc_csharp_plugin", + "tools/linux_arm64/protoc", + "tools/linux_x64/grpc_csharp_plugin", + "tools/linux_x64/protoc", + "tools/linux_x86/grpc_csharp_plugin", + "tools/linux_x86/protoc", + "tools/macosx_x64/grpc_csharp_plugin", + "tools/macosx_x64/protoc", + "tools/windows_x64/grpc_csharp_plugin.exe", + "tools/windows_x64/protoc.exe", + "tools/windows_x86/grpc_csharp_plugin.exe", + "tools/windows_x86/protoc.exe" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "Json.More.Net/2.1.0": { + "sha512": "qtwsyAsL55y2vB2/sK4Pjg3ZyVzD5KKSpV3lOAMHlnjFfsjQ/86eHJfQT9aV1YysVXzF4+xyHOZbh7Iu3YQ7Lg==", + "type": "package", + "path": "json.more.net/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "README.md", + "json-logo-256.png", + "json.more.net.2.1.0.nupkg.sha512", + "json.more.net.nuspec", + "lib/net8.0/Json.More.dll", + "lib/net8.0/Json.More.xml", + "lib/net9.0/Json.More.dll", + "lib/net9.0/Json.More.xml", + "lib/netstandard2.0/Json.More.dll", + "lib/netstandard2.0/Json.More.xml" + ] + }, + "JsonPatch.Net/3.3.0": { + "sha512": "GIcMMDtzfzVfIpQgey8w7dhzcw6jG5nD4DDAdQCTmHfblkCvN7mI8K03to8YyUhKMl4PTR6D6nLSvWmyOGFNTg==", + "type": "package", + "path": "jsonpatch.net/3.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "README.md", + "json-logo-256.png", + "jsonpatch.net.3.3.0.nupkg.sha512", + "jsonpatch.net.nuspec", + "lib/net8.0/JsonPatch.Net.dll", + "lib/net8.0/JsonPatch.Net.xml", + "lib/net9.0/JsonPatch.Net.dll", + "lib/net9.0/JsonPatch.Net.xml", + "lib/netstandard2.0/JsonPatch.Net.dll", + "lib/netstandard2.0/JsonPatch.Net.xml" + ] + }, + "JsonPointer.Net/5.2.0": { + "sha512": "qe1F7Tr/p4mgwLPU9P60MbYkp+xnL2uCPnWXGgzfR/AZCunAZIC0RZ32dLGJJEhSuLEfm0YF/1R3u5C7mEVq+w==", + "type": "package", + "path": "jsonpointer.net/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "README.md", + "json-logo-256.png", + "jsonpointer.net.5.2.0.nupkg.sha512", + "jsonpointer.net.nuspec", + "lib/net8.0/JsonPointer.Net.dll", + "lib/net8.0/JsonPointer.Net.xml", + "lib/net9.0/JsonPointer.Net.dll", + "lib/net9.0/JsonPointer.Net.xml", + "lib/netstandard2.0/JsonPointer.Net.dll", + "lib/netstandard2.0/JsonPointer.Net.xml" + ] + }, + "KubernetesClient/18.0.5": { + "sha512": "xkttIbnGNibYwAyZ0sqeQle2w90bfaJrkF8BaURWHfSMKPbHwys9t/wq1XmT64eA4WRVXLENYlXtqmWlEstG6A==", + "type": "package", + "path": "kubernetesclient/18.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "kubernetesclient.18.0.5.nupkg.sha512", + "kubernetesclient.nuspec", + "lib/net8.0/KubernetesClient.dll", + "lib/net8.0/KubernetesClient.pdb", + "lib/net8.0/KubernetesClient.xml", + "lib/net9.0/KubernetesClient.dll", + "lib/net9.0/KubernetesClient.pdb", + "lib/net9.0/KubernetesClient.xml", + "logo.png" + ] + }, + "MessagePack/2.5.192": { + "sha512": "Jtle5MaFeIFkdXtxQeL9Tu2Y3HsAQGoSntOzrn6Br/jrl6c8QmG22GEioT5HBtZJR0zw0s46OnKU8ei2M3QifA==", + "type": "package", + "path": "messagepack/2.5.192", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net472/MessagePack.dll", + "lib/net472/MessagePack.xml", + "lib/net6.0/MessagePack.dll", + "lib/net6.0/MessagePack.xml", + "lib/netstandard2.0/MessagePack.dll", + "lib/netstandard2.0/MessagePack.xml", + "messagepack.2.5.192.nupkg.sha512", + "messagepack.nuspec" + ] + }, + "MessagePack.Annotations/2.5.192": { + "sha512": "jaJuwcgovWIZ8Zysdyf3b7b34/BrADw4v82GaEZymUhDd3ScMPrYd/cttekeDteJJPXseJxp04yTIcxiVUjTWg==", + "type": "package", + "path": "messagepack.annotations/2.5.192", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/MessagePack.Annotations.dll", + "lib/netstandard2.0/MessagePack.Annotations.xml", + "messagepack.annotations.2.5.192.nupkg.sha512", + "messagepack.annotations.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "sha512": "njoRekyMIK+smav8B6KL2YgIfUtlsRNuT7wvurpLW+m/hoRKVnoELk2YxnUnWRGScCd1rukLMxShwLqEOKowDg==", + "type": "package", + "path": "microsoft.extensions.configuration/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.xml", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "sha512": "kPlU11hql+L9RjrN2N9/0GcRcRcZrNFlLLjadasFWeBORT6pL6OE+RYRk90GGCyVGSxTK+e1/f3dsMj5zpFFiQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "sha512": "Lp4CZIuTVXtlvkAnTq6QvMSW7+H62gX2cU2vdFxHQUxvrWTpi7LwYI3X+YAyIS0r12/p7gaosco7efIxL4yFNw==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", + "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.CommandLine/10.0.1": { + "sha512": "s5cxcdtIig66YT3J+7iHflMuorznK8kXuwBBPHMp4KImx5ZGE3FRa1Nj9fI/xMwFV+KzUMjqZ2MhOedPH8LiBQ==", + "type": "package", + "path": "microsoft.extensions.configuration.commandline/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.CommandLine.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net462/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net462/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "microsoft.extensions.configuration.commandline.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.commandline.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.1": { + "sha512": "csD8Eps3HQ3yc0x6NhgTV+aIFKSs3qVlVCtFnMHz/JOjnv7eEj/qSXKXiK9LzBzB1qSfAVqFnB5iaX2nUmagIQ==", + "type": "package", + "path": "microsoft.extensions.configuration.environmentvariables/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "microsoft.extensions.configuration.environmentvariables.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.environmentvariables.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/10.0.1": { + "sha512": "N/6GiwiZFCBFZDk3vg1PhHW3zMqqu5WWpmeZAA9VTXv7Q8pr8NZR/EQsH0DjzqydDksJtY6EQBsu81d5okQOlA==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/10.0.1": { + "sha512": "0zW3eYBJlRctmgqk5s0kFIi5o5y2g80mvGCD8bkYxREPQlKUnr0ndU/Sop+UDIhyWN0fIi4RW63vo7BKTi7ncA==", + "type": "package", + "path": "microsoft.extensions.configuration.json/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net462/Microsoft.Extensions.Configuration.Json.dll", + "lib/net462/Microsoft.Extensions.Configuration.Json.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.UserSecrets/10.0.1": { + "sha512": "ULEJ0nkaW90JYJGkFujPcJtADXcJpXiSOLbokPcWJZ8iDbtDINifEYAUVqZVr81IDNTrRFul6O8RolOKOsgFPg==", + "type": "package", + "path": "microsoft.extensions.configuration.usersecrets/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "microsoft.extensions.configuration.usersecrets.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.usersecrets.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "sha512": "zerXV0GAR9LCSXoSIApbWn+Dq1/T+6vbXMHGduq1LoVQRHT0BXsGQEau0jeLUBUcsoF/NaUT8ADPu8b+eNcIyg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.10.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "sha512": "oIy8fQxxbUsSrrOvgBqlVgOeCtDmrcynnTG+FQufcUWBrwyPfwlUkCDB2vaiBeYPyT+20u9/HeuHeBf+H4F/8g==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "sha512": "YaocqxscJLxLit0F5yq2XyB+9C7rSRfeTL7MJIl7XwaOoUO3i0EqfO2kmtjiRduYWw7yjcSINEApYZbzjau2gQ==", + "type": "package", + "path": "microsoft.extensions.diagnostics/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets", + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml", + "microsoft.extensions.diagnostics.10.0.1.nupkg.sha512", + "microsoft.extensions.diagnostics.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "sha512": "QMoMrkNpnQym5mpfdxfxpRDuqLpsOuztguFvzH9p+Ex+do+uLFoi7UkAsBO4e9/tNR3eMFraFf2fOAi2cp3jjA==", + "type": "package", + "path": "microsoft.extensions.diagnostics.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "microsoft.extensions.diagnostics.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.diagnostics.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/10.0.1": { + "sha512": "LMQ1mW8YvfupNwoWXk+IOtjYTUllUIrETrWslKOsV66RvD96WaePcCcuF7SmB6fcTOuJFsSu/zILIUJGM+fM/Q==", + "type": "package", + "path": "microsoft.extensions.diagnostics.healthchecks/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.HealthChecks.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.HealthChecks.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.xml", + "microsoft.extensions.diagnostics.healthchecks.10.0.1.nupkg.sha512", + "microsoft.extensions.diagnostics.healthchecks.nuspec" + ] + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/10.0.1": { + "sha512": "cebN2lQD6S7XCQ7DFKnXcBHxSfqWr38H9YliEluJIDRTJ99Q9V6gBMXBYx03kh6YJAzfN3JoEcsikpEWnC6VwA==", + "type": "package", + "path": "microsoft.extensions.diagnostics.healthchecks.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.xml", + "microsoft.extensions.diagnostics.healthchecks.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.diagnostics.healthchecks.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/10.0.1": { + "sha512": "+b3DligYSZuoWltU5YdbMpIEUHNZPgPrzWfNiIuDkMdqOl93UxYB5KzS3lgpRfTXJhTNpo/CZ8w/sTkDTPDdxQ==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/10.0.1": { + "sha512": "4bxzGXIzZnz0Bf7czQ72jGvpOqJsRW/44PS7YLFXTTnu6cNcPvmSREDvBoH0ZVP2hAbMfL4sUoCUn54k70jPWw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.10.0.1.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/10.0.1": { + "sha512": "49dFvGJjLSwGn76eHnP1gBvCJkL8HRYpCrG0DCvsP6wRpEQRLN2Fq8rTxbP+6jS7jmYKCnSVO5C65v4mT3rzeA==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.10.0.1.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting/10.0.1": { + "sha512": "0jjfjQSOFZlHhwOoIQw0WyzxtkDMYdnPY3iFrOLasxYq/5J4FDt1HWT8TktBclOVjFY1FOOkoOc99X7AhbqSIw==", + "type": "package", + "path": "microsoft.extensions.hosting/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets", + "lib/net10.0/Microsoft.Extensions.Hosting.dll", + "lib/net10.0/Microsoft.Extensions.Hosting.xml", + "lib/net462/Microsoft.Extensions.Hosting.dll", + "lib/net462/Microsoft.Extensions.Hosting.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.xml", + "lib/net9.0/Microsoft.Extensions.Hosting.dll", + "lib/net9.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml", + "microsoft.extensions.hosting.10.0.1.nupkg.sha512", + "microsoft.extensions.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/10.0.1": { + "sha512": "qmoQkVZcbm4/gFpted3W3Y+1kTATZTcUhV3mRkbtpfBXlxWCHwh/2oMffVcCruaGOfJuEnyAsGyaSUouSdECOw==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Http/10.0.1": { + "sha512": "ZXJup9ReE1Ot3M8jqcw1b/lnc8USxyYS3cyLsssU39u04TES9JNGviWUGIvP3K7mMU3TF7kQl2aS0SmVwegflw==", + "type": "package", + "path": "microsoft.extensions.http/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Http.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Http.targets", + "lib/net10.0/Microsoft.Extensions.Http.dll", + "lib/net10.0/Microsoft.Extensions.Http.xml", + "lib/net462/Microsoft.Extensions.Http.dll", + "lib/net462/Microsoft.Extensions.Http.xml", + "lib/net8.0/Microsoft.Extensions.Http.dll", + "lib/net8.0/Microsoft.Extensions.Http.xml", + "lib/net9.0/Microsoft.Extensions.Http.dll", + "lib/net9.0/Microsoft.Extensions.Http.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.xml", + "microsoft.extensions.http.10.0.1.nupkg.sha512", + "microsoft.extensions.http.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/10.0.1": { + "sha512": "9ItMpMLFZFJFqCuHLLbR3LiA4ahA8dMtYuXpXl2YamSDWZhYS9BruPprkftY0tYi2bQ0slNrixdFm+4kpz1g5w==", + "type": "package", + "path": "microsoft.extensions.logging/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net10.0/Microsoft.Extensions.Logging.dll", + "lib/net10.0/Microsoft.Extensions.Logging.xml", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.10.0.1.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "sha512": "YkmyiPIWAXVb+lPIrM0LE5bbtLOJkCiRTFiHpkVOvhI7uTvCfoOHLEN0LcsY56GpSD7NqX3gJNpsaDe87/B3zg==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Configuration/10.0.1": { + "sha512": "Zg8LLnfZs5o2RCHD/+9NfDtJ40swauemwCa7sI8gQoAye/UJHRZNpCtC7a5XE7l9Z7mdI8iMWnLZ6m7Q6S3jLg==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets", + "lib/net10.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net462/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net462/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", + "microsoft.extensions.logging.configuration.10.0.1.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Console/10.0.1": { + "sha512": "38Q8sEHwQ/+wVO/mwQBa0fcdHbezFpusHE+vBw/dSr6Fq/kzZm3H/NQX511Jki/R3FHd64IY559gdlHZQtYeEA==", + "type": "package", + "path": "microsoft.extensions.logging.console/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets", + "lib/net10.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Console.xml", + "lib/net462/Microsoft.Extensions.Logging.Console.dll", + "lib/net462/Microsoft.Extensions.Logging.Console.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Console.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Console.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", + "microsoft.extensions.logging.console.10.0.1.nupkg.sha512", + "microsoft.extensions.logging.console.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Debug/10.0.1": { + "sha512": "VqfTvbX9C6BA0VeIlpzPlljnNsXxiI5CdUHb9ksWERH94WQ6ft3oLGUAa4xKcDGu4xF+rIZ8wj7IOAd6/q7vGw==", + "type": "package", + "path": "microsoft.extensions.logging.debug/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets", + "lib/net10.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/net462/Microsoft.Extensions.Logging.Debug.dll", + "lib/net462/Microsoft.Extensions.Logging.Debug.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", + "microsoft.extensions.logging.debug.10.0.1.nupkg.sha512", + "microsoft.extensions.logging.debug.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventLog/10.0.1": { + "sha512": "Zp9MM+jFCa7oktIug62V9eNygpkf+6kFVatF+UC/ODeUwIr5givYKy8fYSSI9sWdxqDqv63y1x0mm2VjOl8GOw==", + "type": "package", + "path": "microsoft.extensions.logging.eventlog/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets", + "lib/net10.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net10.0/Microsoft.Extensions.Logging.EventLog.xml", + "lib/net462/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net462/Microsoft.Extensions.Logging.EventLog.xml", + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.xml", + "lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net9.0/Microsoft.Extensions.Logging.EventLog.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml", + "microsoft.extensions.logging.eventlog.10.0.1.nupkg.sha512", + "microsoft.extensions.logging.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventSource/10.0.1": { + "sha512": "WnFvZP+Y+lfeNFKPK/+mBpaCC7EeBDlobrQOqnP7rrw/+vE7yu8Rjczum1xbC0F/8cAHafog84DMp9200akMNQ==", + "type": "package", + "path": "microsoft.extensions.logging.eventsource/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.EventSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets", + "lib/net10.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net10.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net462/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net462/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net9.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml", + "microsoft.extensions.logging.eventsource.10.0.1.nupkg.sha512", + "microsoft.extensions.logging.eventsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/10.0.1": { + "sha512": "G6VVwywpJI4XIobetGHwg7wDOYC2L2XBYdtskxLaKF/Ynb5QBwLl7Q//wxAR2aVCLkMpoQrjSP9VoORkyddsNQ==", + "type": "package", + "path": "microsoft.extensions.options/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net10.0/Microsoft.Extensions.Options.dll", + "lib/net10.0/Microsoft.Extensions.Options.xml", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.10.0.1.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "sha512": "pL78/Im7O3WmxHzlKUsWTYchKL881udU7E26gCD3T0+/tPhWVfjPwMzfN/MRKU7aoFYcOiqcG2k1QTlH5woWow==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "sha512": "DO8XrJkp5x4PddDuc/CH37yDBCs9BYN6ijlKyR3vMb55BP1Vwh90vOX8bNfnKxr5B2qEI3D8bvbY1fFbDveDHQ==", + "type": "package", + "path": "microsoft.extensions.primitives/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net10.0/Microsoft.Extensions.Primitives.dll", + "lib/net10.0/Microsoft.Extensions.Primitives.xml", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.10.0.1.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.NET.StringTools/17.6.3": { + "sha512": "N0ZIanl1QCgvUumEL1laasU0a7sOE5ZwLZVTn0pAePnfhq8P7SvTjF8Axq+CnavuQkmdQpGNXQ1efZtu5kDFbA==", + "type": "package", + "path": "microsoft.net.stringtools/17.6.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MSBuild-NuGet-Icon.png", + "README.md", + "lib/net472/Microsoft.NET.StringTools.dll", + "lib/net472/Microsoft.NET.StringTools.pdb", + "lib/net472/Microsoft.NET.StringTools.xml", + "lib/net7.0/Microsoft.NET.StringTools.dll", + "lib/net7.0/Microsoft.NET.StringTools.pdb", + "lib/net7.0/Microsoft.NET.StringTools.xml", + "lib/netstandard2.0/Microsoft.NET.StringTools.dll", + "lib/netstandard2.0/Microsoft.NET.StringTools.pdb", + "lib/netstandard2.0/Microsoft.NET.StringTools.xml", + "microsoft.net.stringtools.17.6.3.nupkg.sha512", + "microsoft.net.stringtools.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.NET.StringTools.dll", + "ref/net472/Microsoft.NET.StringTools.xml", + "ref/net7.0/Microsoft.NET.StringTools.dll", + "ref/net7.0/Microsoft.NET.StringTools.xml", + "ref/netstandard2.0/Microsoft.NET.StringTools.dll", + "ref/netstandard2.0/Microsoft.NET.StringTools.xml" + ] + }, + "Microsoft.VisualStudio.Threading.Only/17.13.61": { + "sha512": "vl5a2URJYCO5m+aZZtNlAXAMz28e2pUotRuoHD7RnCWOCeoyd8hWp5ZBaLNYq4iEj2oeJx5ZxiSboAjVmB20Qg==", + "type": "package", + "path": "microsoft.visualstudio.threading.only/17.13.61", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "NOTICE", + "PackageIcon.png", + "README.md", + "lib/net472/Microsoft.VisualStudio.Threading.dll", + "lib/net472/Microsoft.VisualStudio.Threading.xml", + "lib/net472/cs/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net472/de/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net472/es/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net472/fr/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net472/it/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net472/ja/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net472/ko/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net472/manifest.spdx.json", + "lib/net472/pl/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net472/pt-BR/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net472/ru/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net472/tr/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net472/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net472/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0-windows7.0/Microsoft.VisualStudio.Threading.dll", + "lib/net8.0-windows7.0/Microsoft.VisualStudio.Threading.xml", + "lib/net8.0-windows7.0/cs/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0-windows7.0/de/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0-windows7.0/es/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0-windows7.0/fr/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0-windows7.0/it/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0-windows7.0/ja/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0-windows7.0/ko/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0-windows7.0/manifest.spdx.json", + "lib/net8.0-windows7.0/pl/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0-windows7.0/pt-BR/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0-windows7.0/ru/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0-windows7.0/tr/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0-windows7.0/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0-windows7.0/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0/Microsoft.VisualStudio.Threading.dll", + "lib/net8.0/Microsoft.VisualStudio.Threading.xml", + "lib/net8.0/cs/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0/de/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0/es/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0/fr/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0/it/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0/ja/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0/ko/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0/manifest.spdx.json", + "lib/net8.0/pl/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0/pt-BR/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0/ru/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0/tr/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Threading.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Threading.xml", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.Threading.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.Threading.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.Threading.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.Threading.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.Threading.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.Threading.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.Threading.resources.dll", + "lib/netstandard2.0/manifest.spdx.json", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.Threading.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.Threading.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.Threading.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.Threading.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll", + "microsoft.visualstudio.threading.only.17.13.61.nupkg.sha512", + "microsoft.visualstudio.threading.only.nuspec" + ] + }, + "Microsoft.VisualStudio.Validation/17.8.8": { + "sha512": "rWXThIpyQd4YIXghNkiv2+VLvzS+MCMKVRDR0GAMlflsdo+YcAN2g2r5U1Ah98OFjQMRexTFtXQQ2LkajxZi3g==", + "type": "package", + "path": "microsoft.visualstudio.validation/17.8.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "NOTICE", + "PackageIcon.png", + "lib/net6.0/Microsoft.VisualStudio.Validation.dll", + "lib/net6.0/Microsoft.VisualStudio.Validation.xml", + "lib/net6.0/cs/Microsoft.VisualStudio.Validation.resources.dll", + "lib/net6.0/de/Microsoft.VisualStudio.Validation.resources.dll", + "lib/net6.0/es/Microsoft.VisualStudio.Validation.resources.dll", + "lib/net6.0/fr/Microsoft.VisualStudio.Validation.resources.dll", + "lib/net6.0/it/Microsoft.VisualStudio.Validation.resources.dll", + "lib/net6.0/ja/Microsoft.VisualStudio.Validation.resources.dll", + "lib/net6.0/ko/Microsoft.VisualStudio.Validation.resources.dll", + "lib/net6.0/pl/Microsoft.VisualStudio.Validation.resources.dll", + "lib/net6.0/pt-BR/Microsoft.VisualStudio.Validation.resources.dll", + "lib/net6.0/ru/Microsoft.VisualStudio.Validation.resources.dll", + "lib/net6.0/tr/Microsoft.VisualStudio.Validation.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Validation.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.Validation.xml", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.Validation.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.Validation.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.Validation.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.Validation.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.Validation.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.Validation.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.Validation.resources.dll", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.Validation.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.Validation.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.Validation.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.Validation.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll", + "microsoft.visualstudio.validation.17.8.8.nupkg.sha512", + "microsoft.visualstudio.validation.nuspec" + ] + }, + "NATS.Client.Core/2.6.11": { + "sha512": "iVXewDiZkII/Nx9M8ahm4plVxbh/UZ4BNAOJJJNn648p+8VRuY0vo0MxfnA1Cha4IHHHMYAr8yGTYGFBoxAXbg==", + "type": "package", + "path": "nats.client.core/2.6.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Core.dll", + "lib/net6.0/NATS.Client.Core.xml", + "lib/net8.0/NATS.Client.Core.dll", + "lib/net8.0/NATS.Client.Core.xml", + "lib/netstandard2.0/NATS.Client.Core.dll", + "lib/netstandard2.0/NATS.Client.Core.xml", + "lib/netstandard2.1/NATS.Client.Core.dll", + "lib/netstandard2.1/NATS.Client.Core.xml", + "nats.client.core.2.6.11.nupkg.sha512", + "nats.client.core.nuspec" + ] + }, + "NATS.Client.Hosting/2.6.11": { + "sha512": "YA7P66WmQnbwv07vFXiCUvPeCcnV6zj1mxnV1l/85b/ajKq4+8cB9BWUf4mHE7eZ59K8ONIMww9HRzNab/KuOg==", + "type": "package", + "path": "nats.client.hosting/2.6.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Hosting.dll", + "lib/net6.0/NATS.Client.Hosting.xml", + "lib/net8.0/NATS.Client.Hosting.dll", + "lib/net8.0/NATS.Client.Hosting.xml", + "lib/netstandard2.0/NATS.Client.Hosting.dll", + "lib/netstandard2.0/NATS.Client.Hosting.xml", + "lib/netstandard2.1/NATS.Client.Hosting.dll", + "lib/netstandard2.1/NATS.Client.Hosting.xml", + "nats.client.hosting.2.6.11.nupkg.sha512", + "nats.client.hosting.nuspec" + ] + }, + "NATS.Client.JetStream/2.6.11": { + "sha512": "tn/7xEVmTOh8PBau+nKOKelTAPeqUmfhwG9gddTUluGFHjut9auMthOmdhb0iYmiMYlBS2fv7frnV7NbDxPiww==", + "type": "package", + "path": "nats.client.jetstream/2.6.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.JetStream.dll", + "lib/net6.0/NATS.Client.JetStream.xml", + "lib/net8.0/NATS.Client.JetStream.dll", + "lib/net8.0/NATS.Client.JetStream.xml", + "lib/netstandard2.0/NATS.Client.JetStream.dll", + "lib/netstandard2.0/NATS.Client.JetStream.xml", + "lib/netstandard2.1/NATS.Client.JetStream.dll", + "lib/netstandard2.1/NATS.Client.JetStream.xml", + "nats.client.jetstream.2.6.11.nupkg.sha512", + "nats.client.jetstream.nuspec" + ] + }, + "NATS.Client.KeyValueStore/2.6.11": { + "sha512": "Jc5K1F2Q/1phHF4a6qsXnDHBEFcoEpCFdrNXs+IKnNIxMD/buH4k9fmq0Y8LjAG70okbNnDK3xgnHdQ8N62nHA==", + "type": "package", + "path": "nats.client.keyvaluestore/2.6.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.KeyValueStore.dll", + "lib/net6.0/NATS.Client.KeyValueStore.xml", + "lib/net8.0/NATS.Client.KeyValueStore.dll", + "lib/net8.0/NATS.Client.KeyValueStore.xml", + "lib/netstandard2.0/NATS.Client.KeyValueStore.dll", + "lib/netstandard2.0/NATS.Client.KeyValueStore.xml", + "lib/netstandard2.1/NATS.Client.KeyValueStore.dll", + "lib/netstandard2.1/NATS.Client.KeyValueStore.xml", + "nats.client.keyvaluestore.2.6.11.nupkg.sha512", + "nats.client.keyvaluestore.nuspec" + ] + }, + "NATS.Client.ObjectStore/2.6.11": { + "sha512": "zYW5s29xmZoDgz6Is2GV5/jGl+K9FjQt/6/sFmiNmfn6WrliChzx65hfAnOYtmwNSDdF/xY6D/mf3BWh9ePMEA==", + "type": "package", + "path": "nats.client.objectstore/2.6.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.ObjectStore.dll", + "lib/net6.0/NATS.Client.ObjectStore.xml", + "lib/net8.0/NATS.Client.ObjectStore.dll", + "lib/net8.0/NATS.Client.ObjectStore.xml", + "lib/netstandard2.0/NATS.Client.ObjectStore.dll", + "lib/netstandard2.0/NATS.Client.ObjectStore.xml", + "lib/netstandard2.1/NATS.Client.ObjectStore.dll", + "lib/netstandard2.1/NATS.Client.ObjectStore.xml", + "nats.client.objectstore.2.6.11.nupkg.sha512", + "nats.client.objectstore.nuspec" + ] + }, + "NATS.Client.Serializers.Json/2.6.11": { + "sha512": "tI+FKOBDN81FapwqwKW+0TK/wxQA4IMlFxL2Br3hhqUUQAZ0VFVs9+rhePVnpMe5tKFiebvY6qChCco8/Uu6cw==", + "type": "package", + "path": "nats.client.serializers.json/2.6.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Serializers.Json.dll", + "lib/net6.0/NATS.Client.Serializers.Json.xml", + "lib/net8.0/NATS.Client.Serializers.Json.dll", + "lib/net8.0/NATS.Client.Serializers.Json.xml", + "lib/netstandard2.0/NATS.Client.Serializers.Json.dll", + "lib/netstandard2.0/NATS.Client.Serializers.Json.xml", + "lib/netstandard2.1/NATS.Client.Serializers.Json.dll", + "lib/netstandard2.1/NATS.Client.Serializers.Json.xml", + "nats.client.serializers.json.2.6.11.nupkg.sha512", + "nats.client.serializers.json.nuspec" + ] + }, + "NATS.Client.Services/2.6.11": { + "sha512": "1ITVOq2efFU+e/1WM8rL440xJSSZNAtTv6QgCOUaQ3UOqEmtDVCeX2FEmWq/9MJvMilgAb1m6r/4wESFilP/nw==", + "type": "package", + "path": "nats.client.services/2.6.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Services.dll", + "lib/net6.0/NATS.Client.Services.xml", + "lib/net8.0/NATS.Client.Services.dll", + "lib/net8.0/NATS.Client.Services.xml", + "lib/netstandard2.0/NATS.Client.Services.dll", + "lib/netstandard2.0/NATS.Client.Services.xml", + "lib/netstandard2.1/NATS.Client.Services.dll", + "lib/netstandard2.1/NATS.Client.Services.xml", + "nats.client.services.2.6.11.nupkg.sha512", + "nats.client.services.nuspec" + ] + }, + "NATS.Client.Simplified/2.6.11": { + "sha512": "PKLBtH6Z1P7wLbUFzZnyEeknw1j23jtLZe7Dor1ZfmTMjkT6KGHZqRnBkOlsKbUYBwbqb9w90rZSQ1++zkjFdA==", + "type": "package", + "path": "nats.client.simplified/2.6.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Simplified.dll", + "lib/net6.0/NATS.Client.Simplified.xml", + "lib/net8.0/NATS.Client.Simplified.dll", + "lib/net8.0/NATS.Client.Simplified.xml", + "lib/netstandard2.0/NATS.Client.Simplified.dll", + "lib/netstandard2.0/NATS.Client.Simplified.xml", + "lib/netstandard2.1/NATS.Client.Simplified.dll", + "lib/netstandard2.1/NATS.Client.Simplified.xml", + "nats.client.simplified.2.6.11.nupkg.sha512", + "nats.client.simplified.nuspec" + ] + }, + "NATS.Net/2.6.11": { + "sha512": "KpTRNBigWGX9c5lWWU31yCg4c3CEVrBNiLKRWlF2hO97u8EopMh1rrAN+VMTSBPe8YtN/UPncVvPTX3Q1gyiqA==", + "type": "package", + "path": "nats.net/2.6.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Net.dll", + "lib/net6.0/NATS.Net.xml", + "lib/net8.0/NATS.Net.dll", + "lib/net8.0/NATS.Net.xml", + "lib/netstandard2.0/NATS.Net.dll", + "lib/netstandard2.0/NATS.Net.xml", + "lib/netstandard2.1/NATS.Net.dll", + "lib/netstandard2.1/NATS.Net.xml", + "nats.net.2.6.11.nupkg.sha512", + "nats.net.nuspec" + ] + }, + "Nerdbank.Streams/2.12.87": { + "sha512": "oDKOeKZ865I5X8qmU3IXMyrAnssYEiYWTobPGdrqubN3RtTzEHIv+D6fwhdcfrdhPJzHjCkK/ORztR/IsnmA6g==", + "type": "package", + "path": "nerdbank.streams/2.12.87", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "NOTICE", + "README.md", + "lib/net8.0/Nerdbank.Streams.dll", + "lib/net8.0/Nerdbank.Streams.xml", + "lib/netstandard2.0/Nerdbank.Streams.dll", + "lib/netstandard2.0/Nerdbank.Streams.xml", + "lib/netstandard2.1/Nerdbank.Streams.dll", + "lib/netstandard2.1/Nerdbank.Streams.xml", + "nerdbank.streams.2.12.87.nupkg.sha512", + "nerdbank.streams.nuspec" + ] + }, + "Newtonsoft.Json/13.0.4": { + "sha512": "pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", + "type": "package", + "path": "newtonsoft.json/13.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.4.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Npgsql/8.0.3": { + "sha512": "6WEmzsQJCZAlUG1pThKg/RmeF6V+I0DmBBBE/8YzpRtEzhyZzKcK7ulMANDm5CkxrALBEC8H+5plxHWtIL7xnA==", + "type": "package", + "path": "npgsql/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net7.0/Npgsql.dll", + "lib/net7.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.8.0.3.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Polly.Core/8.6.4": { + "sha512": "4AWqYnQ2TME0E+Mzovt1Uu+VyvpR84ymUldMcPw7Mbj799Phaag14CKrMtlJGx5jsvYP+S3oR1QmysgmXoD5cw==", + "type": "package", + "path": "polly.core/8.6.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "lib/net462/Polly.Core.dll", + "lib/net462/Polly.Core.pdb", + "lib/net462/Polly.Core.xml", + "lib/net472/Polly.Core.dll", + "lib/net472/Polly.Core.pdb", + "lib/net472/Polly.Core.xml", + "lib/net6.0/Polly.Core.dll", + "lib/net6.0/Polly.Core.pdb", + "lib/net6.0/Polly.Core.xml", + "lib/net8.0/Polly.Core.dll", + "lib/net8.0/Polly.Core.pdb", + "lib/net8.0/Polly.Core.xml", + "lib/netstandard2.0/Polly.Core.dll", + "lib/netstandard2.0/Polly.Core.pdb", + "lib/netstandard2.0/Polly.Core.xml", + "package-icon.png", + "package-readme.md", + "polly.core.8.6.4.nupkg.sha512", + "polly.core.nuspec" + ] + }, + "Semver/3.0.0": { + "sha512": "9jZCicsVgTebqkAujRWtC9J1A5EQVlu0TVKHcgoCuv345ve5DYf4D1MjhKEnQjdRZo6x/vdv6QQrYFs7ilGzLA==", + "type": "package", + "path": "semver/3.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net5.0/Semver.dll", + "lib/net5.0/Semver.xml", + "lib/netstandard2.0/Semver.dll", + "lib/netstandard2.0/Semver.xml", + "lib/netstandard2.1/Semver.dll", + "lib/netstandard2.1/Semver.xml", + "semver.3.0.0.nupkg.sha512", + "semver.nuspec" + ] + }, + "StreamJsonRpc/2.22.23": { + "sha512": "Ahq6uUFPnU9alny5h4agyX74th3PRq3NQCRNaDOqWcx20WT06mH/wENSk5IbHDc8BmfreQVEIBx5IXLBbsLFIA==", + "type": "package", + "path": "streamjsonrpc/2.22.23", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "NOTICE", + "PackageIcon.png", + "README.md", + "_manifest/spdx_2.2/manifest.spdx.json", + "_manifest/spdx_2.2/manifest.spdx.json.sha256", + "lib/net8.0/StreamJsonRpc.dll", + "lib/net8.0/StreamJsonRpc.xml", + "lib/net8.0/cs/StreamJsonRpc.resources.dll", + "lib/net8.0/de/StreamJsonRpc.resources.dll", + "lib/net8.0/es/StreamJsonRpc.resources.dll", + "lib/net8.0/fr/StreamJsonRpc.resources.dll", + "lib/net8.0/it/StreamJsonRpc.resources.dll", + "lib/net8.0/ja/StreamJsonRpc.resources.dll", + "lib/net8.0/ko/StreamJsonRpc.resources.dll", + "lib/net8.0/pl/StreamJsonRpc.resources.dll", + "lib/net8.0/pt-BR/StreamJsonRpc.resources.dll", + "lib/net8.0/ru/StreamJsonRpc.resources.dll", + "lib/net8.0/tr/StreamJsonRpc.resources.dll", + "lib/net8.0/zh-Hans/StreamJsonRpc.resources.dll", + "lib/net8.0/zh-Hant/StreamJsonRpc.resources.dll", + "lib/netstandard2.0/StreamJsonRpc.dll", + "lib/netstandard2.0/StreamJsonRpc.xml", + "lib/netstandard2.0/cs/StreamJsonRpc.resources.dll", + "lib/netstandard2.0/de/StreamJsonRpc.resources.dll", + "lib/netstandard2.0/es/StreamJsonRpc.resources.dll", + "lib/netstandard2.0/fr/StreamJsonRpc.resources.dll", + "lib/netstandard2.0/it/StreamJsonRpc.resources.dll", + "lib/netstandard2.0/ja/StreamJsonRpc.resources.dll", + "lib/netstandard2.0/ko/StreamJsonRpc.resources.dll", + "lib/netstandard2.0/pl/StreamJsonRpc.resources.dll", + "lib/netstandard2.0/pt-BR/StreamJsonRpc.resources.dll", + "lib/netstandard2.0/ru/StreamJsonRpc.resources.dll", + "lib/netstandard2.0/tr/StreamJsonRpc.resources.dll", + "lib/netstandard2.0/zh-Hans/StreamJsonRpc.resources.dll", + "lib/netstandard2.0/zh-Hant/StreamJsonRpc.resources.dll", + "lib/netstandard2.1/StreamJsonRpc.dll", + "lib/netstandard2.1/StreamJsonRpc.xml", + "lib/netstandard2.1/cs/StreamJsonRpc.resources.dll", + "lib/netstandard2.1/de/StreamJsonRpc.resources.dll", + "lib/netstandard2.1/es/StreamJsonRpc.resources.dll", + "lib/netstandard2.1/fr/StreamJsonRpc.resources.dll", + "lib/netstandard2.1/it/StreamJsonRpc.resources.dll", + "lib/netstandard2.1/ja/StreamJsonRpc.resources.dll", + "lib/netstandard2.1/ko/StreamJsonRpc.resources.dll", + "lib/netstandard2.1/pl/StreamJsonRpc.resources.dll", + "lib/netstandard2.1/pt-BR/StreamJsonRpc.resources.dll", + "lib/netstandard2.1/ru/StreamJsonRpc.resources.dll", + "lib/netstandard2.1/tr/StreamJsonRpc.resources.dll", + "lib/netstandard2.1/zh-Hans/StreamJsonRpc.resources.dll", + "lib/netstandard2.1/zh-Hant/StreamJsonRpc.resources.dll", + "streamjsonrpc.2.22.23.nupkg.sha512", + "streamjsonrpc.nuspec" + ] + }, + "System.Diagnostics.EventLog/10.0.1": { + "sha512": "xfaHEHVDkMOOZR5S6ZGezD0+vekdH1Nx/9Ih8/rOqOGSOk1fxiN3u94bYkBW/wigj0Uw2Wt3vvRj9mtYdgwEjw==", + "type": "package", + "path": "system.diagnostics.eventlog/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net10.0/System.Diagnostics.EventLog.dll", + "lib/net10.0/System.Diagnostics.EventLog.xml", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/net9.0/System.Diagnostics.EventLog.dll", + "lib/net9.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.10.0.1.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Hashing/9.0.10": { + "sha512": "9gv5z71xaWWmcGEs4bXdreIhKp2kYLK2fvPK5gQkgnWMYvZ8ieaxKofDjxL3scZiEYfi/yW2nJTiKV2awcWEdA==", + "type": "package", + "path": "system.io.hashing/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Hashing.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets", + "lib/net462/System.IO.Hashing.dll", + "lib/net462/System.IO.Hashing.xml", + "lib/net8.0/System.IO.Hashing.dll", + "lib/net8.0/System.IO.Hashing.xml", + "lib/net9.0/System.IO.Hashing.dll", + "lib/net9.0/System.IO.Hashing.xml", + "lib/netstandard2.0/System.IO.Hashing.dll", + "lib/netstandard2.0/System.IO.Hashing.xml", + "system.io.hashing.9.0.10.nupkg.sha512", + "system.io.hashing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "YamlDotNet/16.3.0": { + "sha512": "SgMOdxbz8X65z8hraIs6hOEdnkH6hESTAIUa7viEngHOYaH+6q5XJmwr1+yb9vJpNQ19hCQY69xbFsLtXpobQA==", + "type": "package", + "path": "yamldotnet/16.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "images/yamldotnet.png", + "lib/net47/YamlDotNet.dll", + "lib/net47/YamlDotNet.xml", + "lib/net6.0/YamlDotNet.dll", + "lib/net6.0/YamlDotNet.xml", + "lib/net8.0/YamlDotNet.dll", + "lib/net8.0/YamlDotNet.xml", + "lib/netstandard2.0/YamlDotNet.dll", + "lib/netstandard2.0/YamlDotNet.xml", + "lib/netstandard2.1/YamlDotNet.dll", + "lib/netstandard2.1/YamlDotNet.xml", + "yamldotnet.16.3.0.nupkg.sha512", + "yamldotnet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Aspire.Dashboard.Sdk.osx-arm64 >= 13.1.0", + "Aspire.Hosting.AppHost >= 13.1.0", + "Aspire.Hosting.Nats >= 13.1.0", + "Aspire.Hosting.Orchestration.osx-arm64 >= 13.1.0", + "Aspire.Hosting.PostgreSQL >= 13.1.0" + ] + }, + "packageFolders": { + "/Users/jeffrygonzalez/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/AppHost.csproj", + "projectName": "AppHost", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/AppHost.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Aspire.Dashboard.Sdk.osx-arm64": { + "target": "Package", + "version": "[13.1.0, )", + "autoReferenced": true + }, + "Aspire.Hosting.AppHost": { + "target": "Package", + "version": "[13.1.0, )", + "autoReferenced": true + }, + "Aspire.Hosting.Nats": { + "target": "Package", + "version": "[13.1.0, )" + }, + "Aspire.Hosting.Orchestration.osx-arm64": { + "target": "Package", + "version": "[13.1.0, )", + "autoReferenced": true + }, + "Aspire.Hosting.PostgreSQL": { + "target": "Package", + "version": "[13.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/project.nuget.cache b/wolverine-nats/WolverineAndNats/AppHost/obj/project.nuget.cache new file mode 100644 index 0000000..7daa041 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/project.nuget.cache @@ -0,0 +1,85 @@ +{ + "version": 2, + "dgSpecHash": "gSePRZu2gic=", + "success": true, + "projectFilePath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/AppHost.csproj", + "expectedPackageFiles": [ + "/Users/jeffrygonzalez/.nuget/packages/aspire.dashboard.sdk.osx-arm64/13.1.0/aspire.dashboard.sdk.osx-arm64.13.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/aspire.hosting/13.1.0/aspire.hosting.13.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/aspire.hosting.apphost/13.1.0/aspire.hosting.apphost.13.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/aspire.hosting.nats/13.1.0/aspire.hosting.nats.13.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/aspire.hosting.orchestration.osx-arm64/13.1.0/aspire.hosting.orchestration.osx-arm64.13.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/aspire.hosting.postgresql/13.1.0/aspire.hosting.postgresql.13.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/aspnetcore.healthchecks.npgsql/9.0.0/aspnetcore.healthchecks.npgsql.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/aspnetcore.healthchecks.uris/9.0.0/aspnetcore.healthchecks.uris.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/fractions/7.3.0/fractions.7.3.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/google.protobuf/3.33.0/google.protobuf.3.33.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/grpc.aspnetcore/2.71.0/grpc.aspnetcore.2.71.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/grpc.aspnetcore.server/2.71.0/grpc.aspnetcore.server.2.71.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/grpc.aspnetcore.server.clientfactory/2.71.0/grpc.aspnetcore.server.clientfactory.2.71.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/grpc.core.api/2.71.0/grpc.core.api.2.71.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/grpc.net.client/2.71.0/grpc.net.client.2.71.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/grpc.net.clientfactory/2.71.0/grpc.net.clientfactory.2.71.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/grpc.net.common/2.71.0/grpc.net.common.2.71.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/grpc.tools/2.72.0/grpc.tools.2.72.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/json.more.net/2.1.0/json.more.net.2.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jsonpatch.net/3.3.0/jsonpatch.net.3.3.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jsonpointer.net/5.2.0/jsonpointer.net.5.2.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/kubernetesclient/18.0.5/kubernetesclient.18.0.5.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/messagepack/2.5.192/messagepack.2.5.192.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/messagepack.annotations/2.5.192/messagepack.annotations.2.5.192.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.configuration/10.0.1/microsoft.extensions.configuration.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.configuration.abstractions/10.0.1/microsoft.extensions.configuration.abstractions.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.configuration.binder/10.0.1/microsoft.extensions.configuration.binder.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.configuration.commandline/10.0.1/microsoft.extensions.configuration.commandline.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.configuration.environmentvariables/10.0.1/microsoft.extensions.configuration.environmentvariables.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.configuration.fileextensions/10.0.1/microsoft.extensions.configuration.fileextensions.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.configuration.json/10.0.1/microsoft.extensions.configuration.json.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.configuration.usersecrets/10.0.1/microsoft.extensions.configuration.usersecrets.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.dependencyinjection/10.0.1/microsoft.extensions.dependencyinjection.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.1/microsoft.extensions.dependencyinjection.abstractions.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.diagnostics/10.0.1/microsoft.extensions.diagnostics.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.diagnostics.abstractions/10.0.1/microsoft.extensions.diagnostics.abstractions.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.diagnostics.healthchecks/10.0.1/microsoft.extensions.diagnostics.healthchecks.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.diagnostics.healthchecks.abstractions/10.0.1/microsoft.extensions.diagnostics.healthchecks.abstractions.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.fileproviders.abstractions/10.0.1/microsoft.extensions.fileproviders.abstractions.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.fileproviders.physical/10.0.1/microsoft.extensions.fileproviders.physical.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.filesystemglobbing/10.0.1/microsoft.extensions.filesystemglobbing.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.hosting/10.0.1/microsoft.extensions.hosting.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.hosting.abstractions/10.0.1/microsoft.extensions.hosting.abstractions.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.http/10.0.1/microsoft.extensions.http.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.logging/10.0.1/microsoft.extensions.logging.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.1/microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.logging.configuration/10.0.1/microsoft.extensions.logging.configuration.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.logging.console/10.0.1/microsoft.extensions.logging.console.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.logging.debug/10.0.1/microsoft.extensions.logging.debug.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.logging.eventlog/10.0.1/microsoft.extensions.logging.eventlog.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.logging.eventsource/10.0.1/microsoft.extensions.logging.eventsource.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.options/10.0.1/microsoft.extensions.options.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.options.configurationextensions/10.0.1/microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.primitives/10.0.1/microsoft.extensions.primitives.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.net.stringtools/17.6.3/microsoft.net.stringtools.17.6.3.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.visualstudio.threading.only/17.13.61/microsoft.visualstudio.threading.only.17.13.61.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.visualstudio.validation/17.8.8/microsoft.visualstudio.validation.17.8.8.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.core/2.6.11/nats.client.core.2.6.11.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.hosting/2.6.11/nats.client.hosting.2.6.11.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.jetstream/2.6.11/nats.client.jetstream.2.6.11.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.keyvaluestore/2.6.11/nats.client.keyvaluestore.2.6.11.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.objectstore/2.6.11/nats.client.objectstore.2.6.11.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.serializers.json/2.6.11/nats.client.serializers.json.2.6.11.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.services/2.6.11/nats.client.services.2.6.11.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.simplified/2.6.11/nats.client.simplified.2.6.11.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.net/2.6.11/nats.net.2.6.11.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nerdbank.streams/2.12.87/nerdbank.streams.2.12.87.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/newtonsoft.json/13.0.4/newtonsoft.json.13.0.4.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/npgsql/8.0.3/npgsql.8.0.3.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.core/8.6.4/polly.core.8.6.4.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/semver/3.0.0/semver.3.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/streamjsonrpc/2.22.23/streamjsonrpc.2.22.23.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.diagnostics.eventlog/10.0.1/system.diagnostics.eventlog.10.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.io.hashing/9.0.10/system.io.hashing.9.0.10.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/yamldotnet/16.3.0/yamldotnet.16.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/project.packagespec.json b/wolverine-nats/WolverineAndNats/AppHost/obj/project.packagespec.json new file mode 100644 index 0000000..fb9e614 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/AppHost.csproj","projectName":"AppHost","projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/AppHost.csproj","outputPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/AppHost/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net10.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net10.0":{"targetAlias":"net10.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"all"},"SdkAnalysisLevel":"10.0.100"}"frameworks":{"net10.0":{"targetAlias":"net10.0","dependencies":{"Aspire.Dashboard.Sdk.osx-arm64":{"target":"Package","version":"[13.1.0, )","autoReferenced":true},"Aspire.Hosting.AppHost":{"target":"Package","version":"[13.1.0, )","autoReferenced":true},"Aspire.Hosting.Nats":{"target":"Package","version":"[13.1.0, )"},"Aspire.Hosting.Orchestration.osx-arm64":{"target":"Package","version":"[13.1.0, )","autoReferenced":true},"Aspire.Hosting.PostgreSQL":{"target":"Package","version":"[13.1.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json","packagesToPrune":{"Microsoft.CSharp":"(,4.7.32767]","Microsoft.VisualBasic":"(,10.4.32767]","Microsoft.Win32.Primitives":"(,4.3.32767]","Microsoft.Win32.Registry":"(,5.0.32767]","runtime.any.System.Collections":"(,4.3.32767]","runtime.any.System.Diagnostics.Tools":"(,4.3.32767]","runtime.any.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.any.System.Globalization":"(,4.3.32767]","runtime.any.System.Globalization.Calendars":"(,4.3.32767]","runtime.any.System.IO":"(,4.3.32767]","runtime.any.System.Reflection":"(,4.3.32767]","runtime.any.System.Reflection.Extensions":"(,4.3.32767]","runtime.any.System.Reflection.Primitives":"(,4.3.32767]","runtime.any.System.Resources.ResourceManager":"(,4.3.32767]","runtime.any.System.Runtime":"(,4.3.32767]","runtime.any.System.Runtime.Handles":"(,4.3.32767]","runtime.any.System.Runtime.InteropServices":"(,4.3.32767]","runtime.any.System.Text.Encoding":"(,4.3.32767]","runtime.any.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.any.System.Threading.Tasks":"(,4.3.32767]","runtime.any.System.Threading.Timer":"(,4.3.32767]","runtime.aot.System.Collections":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tools":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.aot.System.Globalization":"(,4.3.32767]","runtime.aot.System.Globalization.Calendars":"(,4.3.32767]","runtime.aot.System.IO":"(,4.3.32767]","runtime.aot.System.Reflection":"(,4.3.32767]","runtime.aot.System.Reflection.Extensions":"(,4.3.32767]","runtime.aot.System.Reflection.Primitives":"(,4.3.32767]","runtime.aot.System.Resources.ResourceManager":"(,4.3.32767]","runtime.aot.System.Runtime":"(,4.3.32767]","runtime.aot.System.Runtime.Handles":"(,4.3.32767]","runtime.aot.System.Runtime.InteropServices":"(,4.3.32767]","runtime.aot.System.Text.Encoding":"(,4.3.32767]","runtime.aot.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.aot.System.Threading.Tasks":"(,4.3.32767]","runtime.aot.System.Threading.Timer":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.unix.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.unix.System.Console":"(,4.3.32767]","runtime.unix.System.Diagnostics.Debug":"(,4.3.32767]","runtime.unix.System.IO.FileSystem":"(,4.3.32767]","runtime.unix.System.Net.Primitives":"(,4.3.32767]","runtime.unix.System.Net.Sockets":"(,4.3.32767]","runtime.unix.System.Private.Uri":"(,4.3.32767]","runtime.unix.System.Runtime.Extensions":"(,4.3.32767]","runtime.win.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.win.System.Console":"(,4.3.32767]","runtime.win.System.Diagnostics.Debug":"(,4.3.32767]","runtime.win.System.IO.FileSystem":"(,4.3.32767]","runtime.win.System.Net.Primitives":"(,4.3.32767]","runtime.win.System.Net.Sockets":"(,4.3.32767]","runtime.win.System.Runtime.Extensions":"(,4.3.32767]","runtime.win10-arm-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-arm64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win10-x64-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-x86-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7-x86.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7.System.Private.Uri":"(,4.3.32767]","runtime.win8-arm.runtime.native.System.IO.Compression":"(,4.3.32767]","System.AppContext":"(,4.3.32767]","System.Buffers":"(,5.0.32767]","System.Collections":"(,4.3.32767]","System.Collections.Concurrent":"(,4.3.32767]","System.Collections.Immutable":"(,10.0.32767]","System.Collections.NonGeneric":"(,4.3.32767]","System.Collections.Specialized":"(,4.3.32767]","System.ComponentModel":"(,4.3.32767]","System.ComponentModel.Annotations":"(,4.3.32767]","System.ComponentModel.EventBasedAsync":"(,4.3.32767]","System.ComponentModel.Primitives":"(,4.3.32767]","System.ComponentModel.TypeConverter":"(,4.3.32767]","System.Console":"(,4.3.32767]","System.Data.Common":"(,4.3.32767]","System.Data.DataSetExtensions":"(,4.4.32767]","System.Diagnostics.Contracts":"(,4.3.32767]","System.Diagnostics.Debug":"(,4.3.32767]","System.Diagnostics.DiagnosticSource":"(,10.0.32767]","System.Diagnostics.FileVersionInfo":"(,4.3.32767]","System.Diagnostics.Process":"(,4.3.32767]","System.Diagnostics.StackTrace":"(,4.3.32767]","System.Diagnostics.TextWriterTraceListener":"(,4.3.32767]","System.Diagnostics.Tools":"(,4.3.32767]","System.Diagnostics.TraceSource":"(,4.3.32767]","System.Diagnostics.Tracing":"(,4.3.32767]","System.Drawing.Primitives":"(,4.3.32767]","System.Dynamic.Runtime":"(,4.3.32767]","System.Formats.Asn1":"(,10.0.32767]","System.Formats.Tar":"(,10.0.32767]","System.Globalization":"(,4.3.32767]","System.Globalization.Calendars":"(,4.3.32767]","System.Globalization.Extensions":"(,4.3.32767]","System.IO":"(,4.3.32767]","System.IO.Compression":"(,4.3.32767]","System.IO.Compression.ZipFile":"(,4.3.32767]","System.IO.FileSystem":"(,4.3.32767]","System.IO.FileSystem.AccessControl":"(,4.4.32767]","System.IO.FileSystem.DriveInfo":"(,4.3.32767]","System.IO.FileSystem.Primitives":"(,4.3.32767]","System.IO.FileSystem.Watcher":"(,4.3.32767]","System.IO.IsolatedStorage":"(,4.3.32767]","System.IO.MemoryMappedFiles":"(,4.3.32767]","System.IO.Pipelines":"(,10.0.32767]","System.IO.Pipes":"(,4.3.32767]","System.IO.Pipes.AccessControl":"(,5.0.32767]","System.IO.UnmanagedMemoryStream":"(,4.3.32767]","System.Linq":"(,4.3.32767]","System.Linq.AsyncEnumerable":"(,10.0.32767]","System.Linq.Expressions":"(,4.3.32767]","System.Linq.Parallel":"(,4.3.32767]","System.Linq.Queryable":"(,4.3.32767]","System.Memory":"(,5.0.32767]","System.Net.Http":"(,4.3.32767]","System.Net.Http.Json":"(,10.0.32767]","System.Net.NameResolution":"(,4.3.32767]","System.Net.NetworkInformation":"(,4.3.32767]","System.Net.Ping":"(,4.3.32767]","System.Net.Primitives":"(,4.3.32767]","System.Net.Requests":"(,4.3.32767]","System.Net.Security":"(,4.3.32767]","System.Net.ServerSentEvents":"(,10.0.32767]","System.Net.Sockets":"(,4.3.32767]","System.Net.WebHeaderCollection":"(,4.3.32767]","System.Net.WebSockets":"(,4.3.32767]","System.Net.WebSockets.Client":"(,4.3.32767]","System.Numerics.Vectors":"(,5.0.32767]","System.ObjectModel":"(,4.3.32767]","System.Private.DataContractSerialization":"(,4.3.32767]","System.Private.Uri":"(,4.3.32767]","System.Reflection":"(,4.3.32767]","System.Reflection.DispatchProxy":"(,6.0.32767]","System.Reflection.Emit":"(,4.7.32767]","System.Reflection.Emit.ILGeneration":"(,4.7.32767]","System.Reflection.Emit.Lightweight":"(,4.7.32767]","System.Reflection.Extensions":"(,4.3.32767]","System.Reflection.Metadata":"(,10.0.32767]","System.Reflection.Primitives":"(,4.3.32767]","System.Reflection.TypeExtensions":"(,4.3.32767]","System.Resources.Reader":"(,4.3.32767]","System.Resources.ResourceManager":"(,4.3.32767]","System.Resources.Writer":"(,4.3.32767]","System.Runtime":"(,4.3.32767]","System.Runtime.CompilerServices.Unsafe":"(,7.0.32767]","System.Runtime.CompilerServices.VisualC":"(,4.3.32767]","System.Runtime.Extensions":"(,4.3.32767]","System.Runtime.Handles":"(,4.3.32767]","System.Runtime.InteropServices":"(,4.3.32767]","System.Runtime.InteropServices.RuntimeInformation":"(,4.3.32767]","System.Runtime.Loader":"(,4.3.32767]","System.Runtime.Numerics":"(,4.3.32767]","System.Runtime.Serialization.Formatters":"(,4.3.32767]","System.Runtime.Serialization.Json":"(,4.3.32767]","System.Runtime.Serialization.Primitives":"(,4.3.32767]","System.Runtime.Serialization.Xml":"(,4.3.32767]","System.Security.AccessControl":"(,6.0.32767]","System.Security.Claims":"(,4.3.32767]","System.Security.Cryptography.Algorithms":"(,4.3.32767]","System.Security.Cryptography.Cng":"(,5.0.32767]","System.Security.Cryptography.Csp":"(,4.3.32767]","System.Security.Cryptography.Encoding":"(,4.3.32767]","System.Security.Cryptography.OpenSsl":"(,5.0.32767]","System.Security.Cryptography.Primitives":"(,4.3.32767]","System.Security.Cryptography.X509Certificates":"(,4.3.32767]","System.Security.Principal":"(,4.3.32767]","System.Security.Principal.Windows":"(,5.0.32767]","System.Security.SecureString":"(,4.3.32767]","System.Text.Encoding":"(,4.3.32767]","System.Text.Encoding.CodePages":"(,10.0.32767]","System.Text.Encoding.Extensions":"(,4.3.32767]","System.Text.Encodings.Web":"(,10.0.32767]","System.Text.Json":"(,10.0.32767]","System.Text.RegularExpressions":"(,4.3.32767]","System.Threading":"(,4.3.32767]","System.Threading.AccessControl":"(,10.0.32767]","System.Threading.Channels":"(,10.0.32767]","System.Threading.Overlapped":"(,4.3.32767]","System.Threading.Tasks":"(,4.3.32767]","System.Threading.Tasks.Dataflow":"(,10.0.32767]","System.Threading.Tasks.Extensions":"(,5.0.32767]","System.Threading.Tasks.Parallel":"(,4.3.32767]","System.Threading.Thread":"(,4.3.32767]","System.Threading.ThreadPool":"(,4.3.32767]","System.Threading.Timer":"(,4.3.32767]","System.ValueTuple":"(,4.5.32767]","System.Xml.ReaderWriter":"(,4.3.32767]","System.Xml.XDocument":"(,4.3.32767]","System.Xml.XmlDocument":"(,4.3.32767]","System.Xml.XmlSerializer":"(,4.3.32767]","System.Xml.XPath":"(,4.3.32767]","System.Xml.XPath.XDocument":"(,5.0.32767]"}}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/rider.project.model.nuget.info b/wolverine-nats/WolverineAndNats/AppHost/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..2febf3b --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17700360421670289 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/AppHost/obj/rider.project.restore.info b/wolverine-nats/WolverineAndNats/AppHost/obj/rider.project.restore.info new file mode 100644 index 0000000..ddbd252 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/AppHost/obj/rider.project.restore.info @@ -0,0 +1 @@ +17700382162805415 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/LateComer.csproj b/wolverine-nats/WolverineAndNats/LateComer/LateComer.csproj new file mode 100644 index 0000000..89d3e68 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/LateComer.csproj @@ -0,0 +1,18 @@ + + + + net10.0 + enable + enable + + + + + + + + + + + + diff --git a/wolverine-nats/WolverineAndNats/LateComer/Program.cs b/wolverine-nats/WolverineAndNats/LateComer/Program.cs new file mode 100644 index 0000000..e773bf8 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/Program.cs @@ -0,0 +1,57 @@ +using Messages; +using Wolverine; +using Wolverine.Nats; + +var builder = WebApplication.CreateBuilder(args); +builder.AddServiceDefaults(); +builder.UseWolverine(options => +{ + options.UseNats(builder.Configuration.GetConnectionString("nats") ?? + throw new Exception("No NATS connection string configured")) + .AutoProvision() + .UseJetStream(js => + { + js.MaxDeliver = 5; + js.AckWait = TimeSpan.FromSeconds(30); + }); + options.ListenToNatsSubject("messages-sent") + .BufferedInMemory(); + + // While this will sort of work, you should have exactly one handler for request-response + // semantics - wolverine will take it, but log an error. + // options.ListenToNatsSubject("math.add") + // .ProcessInline(); + + options.ListenToNatsSubject("people.>") + .UseJetStream("PEOPLE", "late-comer"); +}); +var app = builder.Build(); + + +app.MapDefaultEndpoints(); + +app.Run(); + +public static class MessageHandler +{ + public static void Handle(SendMessage message, ILogger logger) + { + logger.LogInformation($"Received message: {message.Message}"); + } + + + public static void Handle(UserDocument user, ILogger logger) + { + logger.LogInformation($"Received user: {user.Id} - {user.Name}"); + } + + public static void Handle(UserNameChanged change, ILogger logger) + { + logger.LogInformation($"User name changed: {change.Id} - {change.NewName}"); + } + public static NumbersAdded Handle(AddThem request) + { + return new NumbersAdded(42); + } + +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/Properties/launchSettings.json b/wolverine-nats/WolverineAndNats/LateComer/Properties/launchSettings.json new file mode 100644 index 0000000..83a53dd --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "http://latecomer.dev.localhost:5282", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://latecomer.dev.localhost:9210;http://latecomer.dev.localhost:5282", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/wolverine-nats/WolverineAndNats/LateComer/appsettings.Development.json b/wolverine-nats/WolverineAndNats/LateComer/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/wolverine-nats/WolverineAndNats/LateComer/appsettings.json b/wolverine-nats/WolverineAndNats/LateComer/appsettings.json new file mode 100644 index 0000000..1d96cd3 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/appsettings.json @@ -0,0 +1,11 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning", + "Npgsql": "Warning", + "Wolverine": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/FastExpressionCompiler.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/FastExpressionCompiler.dll new file mode 100755 index 0000000..c10a22c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/FastExpressionCompiler.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Humanizer.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Humanizer.dll new file mode 100755 index 0000000..c9a7ef8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Humanizer.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/JasperFx.Events.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/JasperFx.Events.dll new file mode 100755 index 0000000..cac36d5 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/JasperFx.Events.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll new file mode 100755 index 0000000..cb1f7fd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/JasperFx.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/JasperFx.dll new file mode 100755 index 0000000..bb9accf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/JasperFx.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer new file mode 100755 index 0000000..d2a5108 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.deps.json b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.deps.json new file mode 100644 index 0000000..25d25ba --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.deps.json @@ -0,0 +1,1446 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "LateComer/1.0.0": { + "dependencies": { + "Messages": "1.0.0", + "ServiceDefaults": "1.0.0", + "WolverineFx.Nats": "5.13.0" + }, + "runtime": { + "LateComer.dll": {} + } + }, + "FastExpressionCompiler/5.3.0": { + "runtime": { + "lib/net9.0/FastExpressionCompiler.dll": { + "assemblyVersion": "5.3.0.0", + "fileVersion": "5.3.0.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "JasperFx/1.17.0": { + "dependencies": { + "FastExpressionCompiler": "5.3.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Polly.Core": "8.6.5", + "Spectre.Console": "0.53.0" + }, + "runtime": { + "lib/net10.0/JasperFx.dll": { + "assemblyVersion": "1.17.0.0", + "fileVersion": "1.17.0.0" + } + } + }, + "JasperFx.Events/1.17.0": { + "dependencies": { + "JasperFx": "1.17.0" + }, + "runtime": { + "lib/net10.0/JasperFx.Events.dll": { + "assemblyVersion": "1.17.0.0", + "fileVersion": "1.17.0.0" + } + } + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "dependencies": { + "JasperFx": "1.17.0", + "Microsoft.CodeAnalysis": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Scripting": "5.0.0" + }, + "runtime": { + "lib/net10.0/JasperFx.RuntimeCompiler.dll": { + "assemblyVersion": "4.3.2.0", + "fileVersion": "4.3.2.0" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.CodeAnalysis/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "5.0.0", + "Microsoft.CodeAnalysis.VisualBasic.Workspaces": "5.0.0", + "System.Composition": "9.0.0" + } + }, + "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.Scripting/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Common": "5.0.0", + "Microsoft.CodeAnalysis.Scripting.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.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.Scripting/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp.Scripting": "5.0.0" + } + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Common": "5.0.0", + "Microsoft.CodeAnalysis.VisualBasic": "5.0.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.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.Extensions.AmbientMetadata.Application/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Telemetry": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Http.Diagnostics": "10.1.0", + "Microsoft.Extensions.Resilience": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Diagnostics.ExceptionSummarization": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0", + "Polly.Extensions": "8.4.2", + "Polly.RateLimiting": "8.4.2" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "dependencies": { + "Microsoft.Extensions.ServiceDiscovery.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "dependencies": { + "Microsoft.Extensions.AmbientMetadata.Application": "10.1.0", + "Microsoft.Extensions.DependencyInjection.AutoActivation": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Compliance.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "NATS.Client.Abstractions/2.7.0": { + "runtime": { + "lib/net8.0/NATS.Client.Abstractions.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Core/2.7.0": { + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Core.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Hosting/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.JetStream/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.KeyValueStore/2.7.0": { + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.ObjectStore/2.7.0": { + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Serializers.Json/2.7.0": { + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Services/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Services.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Simplified/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Net/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Hosting": "2.7.0", + "NATS.Client.JetStream": "2.7.0", + "NATS.Client.KeyValueStore": "2.7.0", + "NATS.Client.ObjectStore": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0", + "NATS.Client.Services": "2.7.0", + "NATS.Client.Simplified": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Net.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NewId/4.0.1": { + "runtime": { + "lib/net6.0/NewId.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "OpenTelemetry/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Api/1.14.0": { + "runtime": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "assemblyVersion": "1.14.0.761", + "fileVersion": "1.14.0.761" + } + } + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "assemblyVersion": "1.14.0.774", + "fileVersion": "1.14.0.774" + } + } + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "assemblyVersion": "1.14.0.775", + "fileVersion": "1.14.0.775" + } + } + }, + "Polly.Core/8.6.5": { + "runtime": { + "lib/net8.0/Polly.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.6.5.5194" + } + } + }, + "Polly.Extensions/8.4.2": { + "dependencies": { + "Polly.Core": "8.6.5" + }, + "runtime": { + "lib/net8.0/Polly.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + }, + "Polly.RateLimiting/8.4.2": { + "dependencies": { + "Polly.Core": "8.6.5" + }, + "runtime": { + "lib/net8.0/Polly.RateLimiting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + }, + "Spectre.Console/0.53.0": { + "runtime": { + "lib/net9.0/Spectre.Console.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.53.0.0" + } + } + }, + "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" + } + } + }, + "WolverineFx/5.13.0": { + "dependencies": { + "JasperFx": "1.17.0", + "JasperFx.Events": "1.17.0", + "JasperFx.RuntimeCompiler": "4.3.2", + "NewId": "4.0.1", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net10.0/Wolverine.dll": { + "assemblyVersion": "5.13.0.0", + "fileVersion": "5.13.0.0" + } + } + }, + "WolverineFx.Nats/5.13.0": { + "dependencies": { + "NATS.Net": "2.7.0", + "WolverineFx": "5.13.0" + }, + "runtime": { + "lib/net10.0/Wolverine.Nats.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "Messages/1.0.0": { + "runtime": { + "Messages.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "ServiceDefaults/1.0.0": { + "dependencies": { + "Microsoft.Extensions.Http.Resilience": "10.1.0", + "Microsoft.Extensions.ServiceDiscovery": "10.1.0", + "OpenTelemetry.Exporter.OpenTelemetryProtocol": "1.14.0", + "OpenTelemetry.Extensions.Hosting": "1.14.0", + "OpenTelemetry.Instrumentation.AspNetCore": "1.14.0", + "OpenTelemetry.Instrumentation.Http": "1.14.0", + "OpenTelemetry.Instrumentation.Runtime": "1.14.0" + }, + "runtime": { + "ServiceDefaults.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "LateComer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "FastExpressionCompiler/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XRmGW48Gdm7B70WUtTJJUnmuc8jRDmOhhjG/a3rix/nXChnrkETaSvA0j2VrcsH4MNeYLe60LA5o5JABmbneag==", + "path": "fastexpressioncompiler/5.3.0", + "hashPath": "fastexpressioncompiler.5.3.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" + }, + "JasperFx/1.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d0QqJ33u1IIyG88p8xMi1X9DtfL5Zyq0ivxn5KWJRaVSS3gJ/q9Ws0FopQiG4mxDl/w7rbnSmuFpu4iSimP5IQ==", + "path": "jasperfx/1.17.0", + "hashPath": "jasperfx.1.17.0.nupkg.sha512" + }, + "JasperFx.Events/1.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sLvOvE5ABMcATyFLVIKDHeWbjVlhPL8TuK3To1cUdX452Xk6zyEAoW8u/UHfDr4meI9rXoMu4a5GaG8xDjp50A==", + "path": "jasperfx.events/1.17.0", + "hashPath": "jasperfx.events.1.17.0.nupkg.sha512" + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zA8iKRvnM1doCM7QqKXfit+FO9LF9hZ+BPoxe4L/+wf6RlARUMpV6HYjr1LWqogT2T5RzC5iO9r9HITl94MonA==", + "path": "jasperfx.runtimecompiler/4.3.2", + "hashPath": "jasperfx.runtimecompiler.4.3.2.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "path": "microsoft.bcl.timeprovider/10.0.0", + "hashPath": "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7vItpZDkGm4NS2wp4P1S07Z1e61LaBWDW5tPXE1c6z5/x9KbF2RymhAPoYg7Qoiyk7odEZ6EjBEJ47p3dBpYQ==", + "path": "microsoft.codeanalysis/5.0.0", + "hashPath": "microsoft.codeanalysis.5.0.0.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.Scripting/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1sGloRYbG3743ut/+vuXy9/WaRQTm7mDtp71rBaVSmKpFntvo5Hcro1ubg6/3SeeLtiFYJl7V3Dk0Fo3CGlnHA==", + "path": "microsoft.codeanalysis.csharp.scripting/5.0.0", + "hashPath": "microsoft.codeanalysis.csharp.scripting.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.Scripting/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/KgZdm6kRTrR/O2jqXxU5GWREYhtVmqcNWczyPt8hsQkFGFK/C6CrLWfG44FCUn0aPHGDRBHYjXlGosQ/H8oXw==", + "path": "microsoft.codeanalysis.scripting/5.0.0", + "hashPath": "microsoft.codeanalysis.scripting.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XTulByMNxqXGCgMeODUoG2h4oK4/nLv1BcawRVcjv+UZHMpoaymtdaq3cJqlNrEvYEcbU48g5swJ3RhY1m3fBg==", + "path": "microsoft.codeanalysis.scripting.common/5.0.0", + "hashPath": "microsoft.codeanalysis.scripting.common.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sUBWvHs2HgHGA+b716dgjS7JiXGen5ntyohAurPLR1ZiZzFp3FlnVA7GrMTqVGdVJTVqiC3c4K8k1bk0gj6IPg==", + "path": "microsoft.codeanalysis.visualbasic/5.0.0", + "hashPath": "microsoft.codeanalysis.visualbasic.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nom4UuZVEZGaV6Qa+joJR/BawXZMtflvQJFKc0SaUc3LrZr/8LmRY5cn8mbvLOWIVfwWkQz+cVE6eQKu9qa65g==", + "path": "microsoft.codeanalysis.visualbasic.workspaces/5.0.0", + "hashPath": "microsoft.codeanalysis.visualbasic.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.Extensions.AmbientMetadata.Application/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+T2Ax2fgw7T7nlhio+ZtgSyYGfevHCOXNPqO0vxA+f2HmbtfwAnIwHEE/jm1/4uFRDDP8PEENpxAhbucg+wUWg==", + "path": "microsoft.extensions.ambientmetadata.application/10.1.0", + "hashPath": "microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M3JWrgZMkVzyEybZzNkTiC/e8U1ipXTi8xm8bj+PHHp4AcEmhmIEqnxRS0VHVCKZjLkOPt2hY2CIisUFQ6gqLA==", + "path": "microsoft.extensions.compliance.abstractions/10.1.0", + "hashPath": "microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-O052pqWkdVNXaj3n9E4x6nLL7sG860434gLh7XHhFp/KpyAY9/rCk9NJUinYfQnDkAA8UgCHimVZz+lTjnEwzQ==", + "path": "microsoft.extensions.dependencyinjection.autoactivation/10.1.0", + "hashPath": "microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q76peCoP6vXXf95RLFeMGzcaQs8l3lk+n/ZOTi2i+OLd3R0HzzB0Fswjua4NY1viIbA1s6l1mqRjQbxY7+Jylw==", + "path": "microsoft.extensions.diagnostics.exceptionsummarization/10.1.0", + "hashPath": "microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RA1Egggf5o7/5AI5TIxOmmV7T06X2jvA9nSlJazU++X/pgu48EDAjDflTq/+kAk0FHUm9ZpAiBVdWfOP2opAbQ==", + "path": "microsoft.extensions.http.diagnostics/10.1.0", + "hashPath": "microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rwDoQBB93yQjd1XtcZBnOLRX23LW7Z49TIAp1sn7i2r/pW3y4iB8E+EEL0ZyOPuEZxT9xEVN9y39KWlG1FDPkQ==", + "path": "microsoft.extensions.http.resilience/10.1.0", + "hashPath": "microsoft.extensions.http.resilience.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NzA+c4m2q92qZPjiZLFm+ToeQC3KFqzP+Dr/1pV5y9d7H/hDM2Yxno0kcw5DGpSvS0s6Pwsp+FWMdk/kXBPZ7g==", + "path": "microsoft.extensions.resilience/10.1.0", + "hashPath": "microsoft.extensions.resilience.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b78YWSrwXQI/pSzKIe/TO1lC2FcBfrux6+AmgTRStKcJYHNU1r8ii1GICRNv37CobIcaW8w33LW+xmThqIG/bg==", + "path": "microsoft.extensions.servicediscovery/10.1.0", + "hashPath": "microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uNPOkiRJx6J01aoHQBoX+QR6ZmQpIYdg/OO9+x/M3lkY6JTHBxp3pohcOyEe9l77MT8+3fVEP84/Uw+JODkA0Q==", + "path": "microsoft.extensions.servicediscovery.abstractions/10.1.0", + "hashPath": "microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OFnpwOBRZZXMMySvM7eJsEQ87ED5SaRbxHg/an1u89MWHw0mXUUbx5WPb5XFN0uS8kJPe6M+ZMRYwRP0nJeDPA==", + "path": "microsoft.extensions.telemetry/10.1.0", + "hashPath": "microsoft.extensions.telemetry.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0jAF2b0YJ1LOtunmo3PzSoJOx/ThhcGH5Y5kaV0jeM0BUlyr9orjg+fH5YabqnPSmwcN/DSTj0iZ7UwDISn5ag==", + "path": "microsoft.extensions.telemetry.abstractions/10.1.0", + "hashPath": "microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512" + }, + "NATS.Client.Abstractions/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DQ6x64lyH7Li2jS8/IV+XIEkhnhE9KENQ5luAoYTLPNEmFoIVcWN8RQSHjyRJviu4RGbw6AvHmlxvehnSqJk8w==", + "path": "nats.client.abstractions/2.7.0", + "hashPath": "nats.client.abstractions.2.7.0.nupkg.sha512" + }, + "NATS.Client.Core/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/l3nqhk6mfG50QjjvwKMN+kSUgJ27fmoaXAXXjrB13YpCbcl20c7Mj82KsutbjmxMVKSdb1mc7Wvj2Ahr03e8A==", + "path": "nats.client.core/2.7.0", + "hashPath": "nats.client.core.2.7.0.nupkg.sha512" + }, + "NATS.Client.Hosting/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P0OoQWqhKPavjmkO23mOdqHsm4GmO9OdjlTrWTpvQes67DLgxmYTjGu1PYK0pi/XJuuiUeZdKhINt6XvygaqYg==", + "path": "nats.client.hosting/2.7.0", + "hashPath": "nats.client.hosting.2.7.0.nupkg.sha512" + }, + "NATS.Client.JetStream/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MHT27WsvKCPSQ234WO+PnaDH0+rAs1W70BPnSvt/4iZ/Dunfx8oQHSGskfAz62R1U2ZGBTbucjkPCJqjCep0bA==", + "path": "nats.client.jetstream/2.7.0", + "hashPath": "nats.client.jetstream.2.7.0.nupkg.sha512" + }, + "NATS.Client.KeyValueStore/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vmpy1y3fU0TzrOhEtS+9NajcjY1R08tHR7GQIIXB2IE2k0vh1rHLChUtrMypvTlng90KHGhGPsr/EzJnu6hqzA==", + "path": "nats.client.keyvaluestore/2.7.0", + "hashPath": "nats.client.keyvaluestore.2.7.0.nupkg.sha512" + }, + "NATS.Client.ObjectStore/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UqD6MjojKm2LCK+wTGSN/lsDe9of9qygFWGSAw1m6p9eoey1HnEVH0MKqItqAKUgsuyaaZaB999/S+z6uugGQg==", + "path": "nats.client.objectstore/2.7.0", + "hashPath": "nats.client.objectstore.2.7.0.nupkg.sha512" + }, + "NATS.Client.Serializers.Json/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-13R0EvJae6dXhcfdBX29LadDdc+0SPWVp0HdAQH4D7H3Eyd2/0jxgrLNH9nlZM8lo3tSk/iDojP7e+VQjlzM1w==", + "path": "nats.client.serializers.json/2.7.0", + "hashPath": "nats.client.serializers.json.2.7.0.nupkg.sha512" + }, + "NATS.Client.Services/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EEs4ibYIwg/pP/bBPhn+K3eDfNBehTisGs2L+eZv7e+eHfBHcjSvAfbEhhyACMuFSuTROWpBaiFAH4xCWgdnbA==", + "path": "nats.client.services/2.7.0", + "hashPath": "nats.client.services.2.7.0.nupkg.sha512" + }, + "NATS.Client.Simplified/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8HU5stAU/xpQr7OyGaZbkjJGeq7hcukUUdcme4sOBiSUrjWpfgJTYeFmwFQHALFah9dkm1EYrHp1RND6lLSJTA==", + "path": "nats.client.simplified/2.7.0", + "hashPath": "nats.client.simplified.2.7.0.nupkg.sha512" + }, + "NATS.Net/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-89IrKEUb/kOzzcQ+J5SKAKmlRybRklllZKa1/LuBNkn3BblIUHYXku6JibN1wWr02HgJGH+OMYBZ0SVX1+HnCA==", + "path": "nats.net/2.7.0", + "hashPath": "nats.net.2.7.0.nupkg.sha512" + }, + "NewId/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jegBasNndmG21G3BmT51suFDCIz/sLN81j+IxmkZ4iWoaDi8LygeHiyNnYbXz5OQh9nCRJFIx1+PJrlYi1Gc9Q==", + "path": "newid/4.0.1", + "hashPath": "newid.4.0.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" + }, + "OpenTelemetry/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aiPBAr1+0dPDItH++MQQr5UgMf4xiybruzNlAoYYMYN3UUk+mGRcoKuZy4Z4rhhWUZIpK2Xhe7wUUXSTM32duQ==", + "path": "opentelemetry/1.14.0", + "hashPath": "opentelemetry.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Api/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-foHci6viUw1f3gUB8qzz3Rk02xZIWMo299X0rxK0MoOWok/3dUVru+KKdY7WIoSHwRGpxGKkmAz9jIk2RFNbsQ==", + "path": "opentelemetry.api/1.14.0", + "hashPath": "opentelemetry.api.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/lxOM92v+zU5I0rGl5tXAGz6EJtxk2MvzZ0VN6F6L5pMqT6s6RCXnGWXg6fW+vtZJsllBlQaf/VLPTzgefJpg==", + "path": "opentelemetry.api.providerbuilderextensions/1.14.0", + "hashPath": "opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7ELExeje+T/KOywHuHwZBGQNtYlepUaYRFXWgoEaT1iKpFJVwOlE1Y2+uqHI2QQmah0Ue+XgRmDy924vWHfJ6Q==", + "path": "opentelemetry.exporter.opentelemetryprotocol/1.14.0", + "hashPath": "opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZAxkCIa3Q3YWZ1sGrolXfkhPqn2PFSz2Cel74em/fATZgY5ixlw6MQp2icmqKCz4C7M1W2G0b92K3rX8mOtFRg==", + "path": "opentelemetry.extensions.hosting/1.14.0", + "hashPath": "opentelemetry.extensions.hosting.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NQAQpFa3a4ofPUYwxcwtNPGpuRNwwx1HM7MnLEESYjYkhfhER+PqqGywW65rWd7bJEc1/IaL+xbmHH99pYDE0A==", + "path": "opentelemetry.instrumentation.aspnetcore/1.14.0", + "hashPath": "opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uH8X1fYnywrgaUrSbemKvFiFkBwY7ZbBU7Wh4A/ORQmdpF3G/5STidY4PlK4xYuIv9KkdMXH/vkpvzQcayW70g==", + "path": "opentelemetry.instrumentation.http/1.14.0", + "hashPath": "opentelemetry.instrumentation.http.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6o4JDOQaKv6bInAYZxuyxxfMKr6hFpwLnKEgQ+q+oBNA9Fm1sysjFCOzRzk7U0WD86LsRPXX+chv1vJIg7cfg==", + "path": "opentelemetry.instrumentation.runtime/1.14.0", + "hashPath": "opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512" + }, + "Polly.Core/8.6.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t+sUVrIwvo7UmsgHGgOG9F0GDZSRIm47u2ylH17Gvcv1q5hNEwgD5GoBlFyc0kh/pebmPyrAgvGsR/65ZBaXlg==", + "path": "polly.core/8.6.5", + "hashPath": "polly.core.8.6.5.nupkg.sha512" + }, + "Polly.Extensions/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GZ9vRVmR0jV2JtZavt+pGUsQ1O1cuRKG7R7VOZI6ZDy9y6RNPvRvXK1tuS4ffUrv8L0FTea59oEuQzgS0R7zSA==", + "path": "polly.extensions/8.4.2", + "hashPath": "polly.extensions.8.4.2.nupkg.sha512" + }, + "Polly.RateLimiting/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehTImQ/eUyO07VYW2WvwSmU9rRH200SKJ/3jku9rOkyWE0A2JxNFmAVms8dSn49QLSjmjFRRSgfNyOgr/2PSmA==", + "path": "polly.ratelimiting/8.4.2", + "hashPath": "polly.ratelimiting.8.4.2.nupkg.sha512" + }, + "Spectre.Console/0.53.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m2iv8Egfywp7FaNLKCmCFHbSf36D4ctzZKvlAK9NXMyGLh6L+CnrZWK8o+LOYsoAS1jtoHn0W1BT0W8vuq/FUw==", + "path": "spectre.console/0.53.0", + "hashPath": "spectre.console.0.53.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" + }, + "WolverineFx/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FB5Yo6M0SyQWDgHz2EjwQcflhrjRd9mERV6/N6WHQHJO1kW8fSxEIcOHndhikcVkZvmhUdwu5PW4V4ypEmpKTA==", + "path": "wolverinefx/5.13.0", + "hashPath": "wolverinefx.5.13.0.nupkg.sha512" + }, + "WolverineFx.Nats/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8GN8uwRX56vp3fN8KSQqrEYlAtAKoOz1ZpCckZCsr15sP8eoE+Sa5wfzkGQ186cAYnkBa2P0yMlr1QRCmHYaYQ==", + "path": "wolverinefx.nats/5.13.0", + "hashPath": "wolverinefx.nats.5.13.0.nupkg.sha512" + }, + "Messages/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "ServiceDefaults/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.dll new file mode 100644 index 0000000..ce580ce Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.pdb b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.pdb new file mode 100644 index 0000000..d279851 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.pdb differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.runtimeconfig.json b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.runtimeconfig.json new file mode 100644 index 0000000..ed5401a --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "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.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.staticwebassets.endpoints.json b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Messages.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Messages.dll new file mode 100644 index 0000000..95f77d9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Messages.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Messages.pdb b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Messages.pdb new file mode 100644 index 0000000..872a410 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Messages.pdb differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100755 index 0000000..e982c02 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll new file mode 100755 index 0000000..ca7722c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll new file mode 100755 index 0000000..ec6ffbf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100755 index 0000000..ab1265c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100755 index 0000000..dc1f35d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll new file mode 100755 index 0000000..8d0876e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll new file mode 100755 index 0000000..c56e604 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll new file mode 100755 index 0000000..6b7962d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100755 index 0000000..7135704 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll new file mode 100755 index 0000000..f54bd93 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll new file mode 100755 index 0000000..e9dbcea Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll new file mode 100755 index 0000000..f7faed9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll new file mode 100755 index 0000000..595c65d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll new file mode 100755 index 0000000..4f63d2a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll new file mode 100755 index 0000000..46dd33d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll new file mode 100755 index 0000000..a5749cd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll new file mode 100755 index 0000000..adb9d3f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll new file mode 100755 index 0000000..acbd79f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll new file mode 100755 index 0000000..5804085 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll new file mode 100755 index 0000000..f472139 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll new file mode 100755 index 0000000..3cbddc0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Abstractions.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Abstractions.dll new file mode 100755 index 0000000..a3c7d6a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Core.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Core.dll new file mode 100755 index 0000000..39790f8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Hosting.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Hosting.dll new file mode 100755 index 0000000..deefdbf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.JetStream.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.JetStream.dll new file mode 100755 index 0000000..cb29478 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.JetStream.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll new file mode 100755 index 0000000..e1213bb Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.ObjectStore.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.ObjectStore.dll new file mode 100755 index 0000000..fd0c6d4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.ObjectStore.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll new file mode 100755 index 0000000..67c26e2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Services.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Services.dll new file mode 100755 index 0000000..d73c5d2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Services.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Simplified.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Simplified.dll new file mode 100755 index 0000000..6bce2aa Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Simplified.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Net.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Net.dll new file mode 100755 index 0000000..8445f86 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Net.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NewId.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NewId.dll new file mode 100755 index 0000000..33f918f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NewId.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Newtonsoft.Json.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Newtonsoft.Json.dll new file mode 100755 index 0000000..d035c38 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Newtonsoft.Json.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll new file mode 100755 index 0000000..f46a6fd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Api.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Api.dll new file mode 100755 index 0000000..2eddb36 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Api.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll new file mode 100755 index 0000000..5f1882e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll new file mode 100755 index 0000000..a817a7a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll new file mode 100755 index 0000000..fd25ac6 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll new file mode 100755 index 0000000..18c61ed Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll new file mode 100755 index 0000000..2d825dd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.dll new file mode 100755 index 0000000..7cc4ece Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Polly.Core.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Polly.Core.dll new file mode 100755 index 0000000..57eae20 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Polly.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Polly.Extensions.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Polly.Extensions.dll new file mode 100755 index 0000000..312cf8e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Polly.Extensions.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Polly.RateLimiting.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Polly.RateLimiting.dll new file mode 100755 index 0000000..e29985e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Polly.RateLimiting.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ServiceDefaults.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ServiceDefaults.dll new file mode 100644 index 0000000..f8273ad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ServiceDefaults.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ServiceDefaults.pdb b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ServiceDefaults.pdb new file mode 100644 index 0000000..eafc129 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ServiceDefaults.pdb differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Spectre.Console.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Spectre.Console.dll new file mode 100755 index 0000000..d1b571d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Spectre.Console.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.AttributedModel.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.AttributedModel.dll new file mode 100755 index 0000000..2664688 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.AttributedModel.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.Convention.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.Convention.dll new file mode 100755 index 0000000..40f6537 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.Convention.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.Hosting.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.Hosting.dll new file mode 100755 index 0000000..b1cce85 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.Runtime.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.Runtime.dll new file mode 100755 index 0000000..c30bbbb Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.Runtime.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.TypedParts.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.TypedParts.dll new file mode 100755 index 0000000..1556319 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.TypedParts.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Wolverine.Nats.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Wolverine.Nats.dll new file mode 100755 index 0000000..009f0d3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Wolverine.Nats.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Wolverine.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Wolverine.dll new file mode 100755 index 0000000..ad44ea4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Wolverine.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/appsettings.Development.json b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/appsettings.json b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/appsettings.json new file mode 100644 index 0000000..1d96cd3 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/appsettings.json @@ -0,0 +1,11 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning", + "Npgsql": "Warning", + "Wolverine": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..5026d91 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..fa3b62e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..de0032e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..f5dae0b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..c3e5620 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..8dd116e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..9c9e5c3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..fe7a8c8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..87e10b0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..3a2887c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..3bef0e7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..1ac21c1 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..201b964 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..7d60e32 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..5e1cc23 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..71227fc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..ce491fd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..3a50733 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..7b14221 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..eabc7a9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..ccd63e9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..2aa2e42 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..de991ad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..ffe4e81 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..bdf9041 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..4eb6122 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..35b8d36 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..6224d3d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..8153da0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..24a6fc9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..ae46f62 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..2870de8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..b824665 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..31d7841 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..4f5ea19 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..a128ff1 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..5ef0d16 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..83f0214 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c62df50 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..738856c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..db113c0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..118b9b8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..8d5c43a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..c8b03b8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..76732af Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..36a413b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c88dd66 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..7400f4a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..87b7088 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..036e931 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..7305396 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..7e0e174 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..72007ca Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..8b9768e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..adead79 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9f8ffe3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..93476d2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..e318959 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..89c6efc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..a1d9ec3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..1e49360 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..6d9c7ac Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..82b3fa2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9db06d4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..e75f09f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..8be5aa7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..a263248 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..5280b0d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..1d0ce8a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..f4d5744 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..3a16748 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..8b9f7ce Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..33a7463 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..bd7b2a2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..6feb49f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..5004e0d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..3049968 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..5f5481b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..413ac6a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..b5e3f64 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..3e0a242 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..c219a07 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..6697523 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..506eb95 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..6095bb4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..65c17bf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..28739df Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..e5f35c2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..b64fcad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..215fe77 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..53d30cc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..a71ab8b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..89ab7dc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..b317bb4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c1b4544 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..712df48 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..64f8c0f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..d96f8c8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..23c31b7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..8c58451 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..129e754 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..75fb189 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..7d3ed5d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..14fee21 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.AssemblyInfo.cs b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.AssemblyInfo.cs new file mode 100644 index 0000000..352f5be --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("LateComer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+029fc808861743407d1014ffb7cabf40b443645a")] +[assembly: System.Reflection.AssemblyProductAttribute("LateComer")] +[assembly: System.Reflection.AssemblyTitleAttribute("LateComer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.AssemblyInfoInputs.cache b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7712820 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +aa28e9fb1ebfe79d64bb8ecdb7fa159ac6267c763542bdb6780deaa3b202f282 diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.GeneratedMSBuildEditorConfig.editorconfig b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ee06c48 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,31 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFramework = net10.0 +build_property.TargetPlatformMinVersion = +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.RootNamespace = LateComer +build_property.RootNamespace = LateComer +build_property.ProjectDir = /Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.GlobalUsings.g.cs b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.GlobalUsings.g.cs new file mode 100644 index 0000000..5e6145d --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.MvcApplicationPartsAssemblyInfo.cache b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.assets.cache b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.assets.cache new file mode 100644 index 0000000..87cfcf8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.assets.cache differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.AssemblyReference.cache b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..6e90e2a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.AssemblyReference.cache differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.CoreCompileInputs.cache b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..6db4764 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d69573970abfd69dd42585496e20ac68f7ef710621beffe231bc708225eb5cb7 diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.FileListAbsolute.txt b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..54bf82a --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.FileListAbsolute.txt @@ -0,0 +1,196 @@ +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/appsettings.Development.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/appsettings.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.staticwebassets.endpoints.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.deps.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.runtimeconfig.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/LateComer.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/FastExpressionCompiler.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Humanizer.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/JasperFx.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/JasperFx.Events.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.JetStream.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.ObjectStore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Services.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Client.Simplified.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NATS.Net.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/NewId.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Newtonsoft.Json.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Api.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Polly.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Polly.Extensions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Polly.RateLimiting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Spectre.Console.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.AttributedModel.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.Convention.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.Runtime.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/System.Composition.TypedParts.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Wolverine.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Wolverine.Nats.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Messages.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ServiceDefaults.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/Messages.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/bin/Debug/net10.0/ServiceDefaults.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.AssemblyReference.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/rpswa.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.GeneratedMSBuildEditorConfig.editorconfig +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.AssemblyInfoInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.AssemblyInfo.cs +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.CoreCompileInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.MvcApplicationPartsAssemblyInfo.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.sourcelink.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/rjimswa.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/scopedcss/bundle/LateComer.styles.css +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/staticwebassets.build.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/staticwebassets.build.json.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/staticwebassets.development.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/swae.build.ex.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.Up2Date +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/refint/LateComer.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.genruntimeconfig.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/ref/LateComer.dll diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.Up2Date b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.dll b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.dll new file mode 100644 index 0000000..ce580ce Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.genruntimeconfig.cache b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.genruntimeconfig.cache new file mode 100644 index 0000000..5b0db49 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.genruntimeconfig.cache @@ -0,0 +1 @@ +484ffda73c23bf77ddc177e15c4502d26037a149f114dc8977d9d0fb1b1dc316 diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.pdb b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.pdb new file mode 100644 index 0000000..d279851 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.pdb differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.sourcelink.json b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.sourcelink.json new file mode 100644 index 0000000..a43e21e --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/LateComer.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/Users/jeffrygonzalez/work/reference/*":"https://raw.githubusercontent.com/HypertheoryTraining/reference/029fc808861743407d1014ffb7cabf40b443645a/*"}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/apphost b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/apphost new file mode 100755 index 0000000..d2a5108 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/apphost differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/ref/LateComer.dll b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/ref/LateComer.dll new file mode 100644 index 0000000..2207031 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/ref/LateComer.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/refint/LateComer.dll b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/refint/LateComer.dll new file mode 100644 index 0000000..2207031 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/refint/LateComer.dll differ diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..cfe492b --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"ctIYElKDwUUN4WrQBE1jCD+o4VMA6WwRo4TR8Q1yvJ0=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["dDQVXNa04bsupjNh3kmYtSQHmCFtZ48a0/SJIfAFAlI=","V8P8x3xu7hLa/HnncyHfd5w6e/OMsucM6EaQd8BzKsc=","mEk5FU1X5wbYY7L9GMakTazdgA/dIRmZObQK\u002B4w31i8=","WtCjK5MKonOHMsEH92rLXBfmTNjiSBzJmV0wTY\u002BOja0="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..6f35072 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"ai/160jpXNO15GGqgtsGPTPMLOUCIf5pAnCvm3c/D5M=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["dDQVXNa04bsupjNh3kmYtSQHmCFtZ48a0/SJIfAFAlI=","V8P8x3xu7hLa/HnncyHfd5w6e/OMsucM6EaQd8BzKsc=","mEk5FU1X5wbYY7L9GMakTazdgA/dIRmZObQK\u002B4w31i8=","WtCjK5MKonOHMsEH92rLXBfmTNjiSBzJmV0wTY\u002BOja0="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/rpswa.dswa.cache.json b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..107401a --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"QE1e+QWNOY9p+mcKzRN2/JDalmyiqkIcPPJDqLGhyg0=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["dDQVXNa04bsupjNh3kmYtSQHmCFtZ48a0/SJIfAFAlI=","V8P8x3xu7hLa/HnncyHfd5w6e/OMsucM6EaQd8BzKsc="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/staticwebassets.build.json b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..0e4089c --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"3VqatuIFxkAZ+JaRBJbuRNXLvgFrFyMB3wLibHdrViY=","Source":"LateComer","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/staticwebassets.build.json.cache b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..7d94857 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +3VqatuIFxkAZ+JaRBJbuRNXLvgFrFyMB3wLibHdrViY= \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/swae.build.ex.cache b/wolverine-nats/WolverineAndNats/LateComer/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/LateComer.csproj.nuget.dgspec.json b/wolverine-nats/WolverineAndNats/LateComer/obj/LateComer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..6b674db --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/LateComer.csproj.nuget.dgspec.json @@ -0,0 +1,1336 @@ +{ + "format": 1, + "restore": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/LateComer.csproj": {} + }, + "projects": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/LateComer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/LateComer.csproj", + "projectName": "LateComer", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/LateComer.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj" + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "WolverineFx.Nats": { + "target": "Package", + "version": "[5.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj", + "projectName": "Messages", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj", + "projectName": "ServiceDefaults", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.Extensions.Http.Resilience": { + "target": "Package", + "version": "[10.1.0, )" + }, + "Microsoft.Extensions.ServiceDiscovery": { + "target": "Package", + "version": "[10.1.0, )" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Extensions.Hosting": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.AspNetCore": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.Http": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.Runtime": { + "target": "Package", + "version": "[1.14.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/LateComer.csproj.nuget.g.props b/wolverine-nats/WolverineAndNats/LateComer/obj/LateComer.csproj.nuget.g.props new file mode 100644 index 0000000..1e40171 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/LateComer.csproj.nuget.g.props @@ -0,0 +1,22 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/jeffrygonzalez/.nuget/packages/ + /Users/jeffrygonzalez/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + + + /Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.analyzers/3.11.0 + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/LateComer.csproj.nuget.g.targets b/wolverine-nats/WolverineAndNats/LateComer/obj/LateComer.csproj.nuget.g.targets new file mode 100644 index 0000000..f2215c5 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/LateComer.csproj.nuget.g.targets @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/project.assets.json b/wolverine-nats/WolverineAndNats/LateComer/obj/project.assets.json new file mode 100644 index 0000000..eb535e8 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/project.assets.json @@ -0,0 +1,4327 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "FastExpressionCompiler/5.3.0": { + "type": "package", + "compile": { + "lib/net9.0/FastExpressionCompiler.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/FastExpressionCompiler.dll": { + "related": ".xml" + } + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "ImTools/4.0.0": { + "type": "package", + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + } + }, + "JasperFx/1.17.0": { + "type": "package", + "dependencies": { + "FastExpressionCompiler": "5.3.0", + "ImTools": "4.0.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Polly.Core": "8.6.5", + "Spectre.Console": "0.53.0" + }, + "compile": { + "lib/net10.0/JasperFx.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/JasperFx.dll": { + "related": ".xml" + } + } + }, + "JasperFx.Events/1.17.0": { + "type": "package", + "dependencies": { + "JasperFx": "1.17.0" + }, + "compile": { + "lib/net10.0/JasperFx.Events.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/JasperFx.Events.dll": { + "related": ".xml" + } + } + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "type": "package", + "dependencies": { + "JasperFx": "1.17.0", + "Microsoft.CodeAnalysis": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Scripting": "5.0.0" + }, + "compile": { + "lib/net10.0/JasperFx.RuntimeCompiler.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/JasperFx.RuntimeCompiler.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.CodeAnalysis/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "[5.0.0]", + "Microsoft.CodeAnalysis.VisualBasic.Workspaces": "[5.0.0]", + "System.Composition": "9.0.0" + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "type": "package", + "build": { + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {}, + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {} + } + }, + "Microsoft.CodeAnalysis.Common/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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.Scripting/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp": "[5.0.0]", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "Microsoft.CodeAnalysis.Scripting.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp": "[5.0.0]", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[5.0.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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.Scripting/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp.Scripting": "[5.0.0]" + } + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "Microsoft.CodeAnalysis.VisualBasic": "[5.0.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[5.0.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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.Extensions.AmbientMetadata.Application/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Telemetry": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Http.Diagnostics": "10.1.0", + "Microsoft.Extensions.Resilience": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Http.Resilience.targets": {} + } + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Diagnostics.ExceptionSummarization": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0", + "Polly.Extensions": "8.4.2", + "Polly.RateLimiting": "8.4.2" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ServiceDiscovery.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.AmbientMetadata.Application": "10.1.0", + "Microsoft.Extensions.DependencyInjection.AutoActivation": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Compliance.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.props": {}, + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.targets": {} + } + }, + "NATS.Client.Abstractions/2.7.0": { + "type": "package", + "compile": { + "lib/net8.0/NATS.Client.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Abstractions.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Core/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Core.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Hosting/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.JetStream/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.KeyValueStore/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.ObjectStore/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Serializers.Json/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Services/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Services.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Services.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Simplified/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "related": ".xml" + } + } + }, + "NATS.Net/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Hosting": "2.7.0", + "NATS.Client.JetStream": "2.7.0", + "NATS.Client.KeyValueStore": "2.7.0", + "NATS.Client.ObjectStore": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0", + "NATS.Client.Services": "2.7.0", + "NATS.Client.Simplified": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Net.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Net.dll": { + "related": ".xml" + } + } + }, + "NewId/4.0.1": { + "type": "package", + "compile": { + "lib/net6.0/NewId.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/NewId.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Api/1.14.0": { + "type": "package", + "compile": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "related": ".xml" + } + } + }, + "Polly.Core/8.6.5": { + "type": "package", + "compile": { + "lib/net8.0/Polly.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Polly.Extensions/8.4.2": { + "type": "package", + "dependencies": { + "Polly.Core": "8.4.2" + }, + "compile": { + "lib/net8.0/Polly.Extensions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.Extensions.dll": { + "related": ".pdb;.xml" + } + } + }, + "Polly.RateLimiting/8.4.2": { + "type": "package", + "dependencies": { + "Polly.Core": "8.4.2" + }, + "compile": { + "lib/net8.0/Polly.RateLimiting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.RateLimiting.dll": { + "related": ".pdb;.xml" + } + } + }, + "Spectre.Console/0.53.0": { + "type": "package", + "compile": { + "lib/net9.0/Spectre.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Spectre.Console.dll": { + "related": ".xml" + } + } + }, + "System.Composition/9.0.0": { + "type": "package", + "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" + }, + "compile": { + "lib/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.AttributedModel/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Convention/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Hosting/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.Runtime": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Runtime/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.TypedParts/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "WolverineFx/5.13.0": { + "type": "package", + "dependencies": { + "JasperFx": "1.17.0", + "JasperFx.Events": "1.17.0", + "JasperFx.RuntimeCompiler": "4.3.2", + "NewId": "4.0.1", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net10.0/Wolverine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.dll": { + "related": ".xml" + } + } + }, + "WolverineFx.Nats/5.13.0": { + "type": "package", + "dependencies": { + "NATS.Net": "2.7.0", + "WolverineFx": "5.13.0" + }, + "compile": { + "lib/net10.0/Wolverine.Nats.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.Nats.dll": { + "related": ".xml" + } + } + }, + "Messages/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/Messages.dll": {} + }, + "runtime": { + "bin/placeholder/Messages.dll": {} + } + }, + "ServiceDefaults/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Microsoft.Extensions.Http.Resilience": "10.1.0", + "Microsoft.Extensions.ServiceDiscovery": "10.1.0", + "OpenTelemetry.Exporter.OpenTelemetryProtocol": "1.14.0", + "OpenTelemetry.Extensions.Hosting": "1.14.0", + "OpenTelemetry.Instrumentation.AspNetCore": "1.14.0", + "OpenTelemetry.Instrumentation.Http": "1.14.0", + "OpenTelemetry.Instrumentation.Runtime": "1.14.0" + }, + "compile": { + "bin/placeholder/ServiceDefaults.dll": {} + }, + "runtime": { + "bin/placeholder/ServiceDefaults.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "FastExpressionCompiler/5.3.0": { + "sha512": "XRmGW48Gdm7B70WUtTJJUnmuc8jRDmOhhjG/a3rix/nXChnrkETaSvA0j2VrcsH4MNeYLe60LA5o5JABmbneag==", + "type": "package", + "path": "fastexpressioncompiler/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "FastExpressionCompiler.snk", + "LICENSE/LICENSE", + "fastexpressioncompiler.5.3.0.nupkg.sha512", + "fastexpressioncompiler.nuspec", + "lib/net472/FastExpressionCompiler.dll", + "lib/net472/FastExpressionCompiler.xml", + "lib/net6.0/FastExpressionCompiler.dll", + "lib/net6.0/FastExpressionCompiler.xml", + "lib/net8.0/FastExpressionCompiler.dll", + "lib/net8.0/FastExpressionCompiler.xml", + "lib/net9.0/FastExpressionCompiler.dll", + "lib/net9.0/FastExpressionCompiler.xml", + "lib/netstandard2.0/FastExpressionCompiler.dll", + "lib/netstandard2.0/FastExpressionCompiler.xml", + "lib/netstandard2.1/FastExpressionCompiler.dll", + "lib/netstandard2.1/FastExpressionCompiler.xml", + "logo.png", + "readme.md" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "ImTools/4.0.0": { + "sha512": "dms0JfLKC9AQbQX/EdpRjn59EjEvaCxIgv1z9YxbEQb5SiOVoo7vlIKdEySeEwUkWhN05rZnNpUpG+aw5VqPVQ==", + "type": "package", + "path": "imtools/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ImTools.snk", + "LICENSE.txt", + "content/net45/ImTools/ImTools.cs", + "contentFiles/cs/net45/ImTools/ImTools.cs", + "contentFiles/cs/netstandard2.0/ImTools/ImTools.cs", + "imtools.4.0.0.nupkg.sha512", + "imtools.nuspec" + ] + }, + "JasperFx/1.17.0": { + "sha512": "d0QqJ33u1IIyG88p8xMi1X9DtfL5Zyq0ivxn5KWJRaVSS3gJ/q9Ws0FopQiG4mxDl/w7rbnSmuFpu4iSimP5IQ==", + "type": "package", + "path": "jasperfx/1.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jasperfx.1.17.0.nupkg.sha512", + "jasperfx.nuspec", + "lib/net10.0/JasperFx.dll", + "lib/net10.0/JasperFx.xml", + "lib/net8.0/JasperFx.dll", + "lib/net8.0/JasperFx.xml", + "lib/net9.0/JasperFx.dll", + "lib/net9.0/JasperFx.xml" + ] + }, + "JasperFx.Events/1.17.0": { + "sha512": "sLvOvE5ABMcATyFLVIKDHeWbjVlhPL8TuK3To1cUdX452Xk6zyEAoW8u/UHfDr4meI9rXoMu4a5GaG8xDjp50A==", + "type": "package", + "path": "jasperfx.events/1.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jasperfx.events.1.17.0.nupkg.sha512", + "jasperfx.events.nuspec", + "lib/net10.0/JasperFx.Events.dll", + "lib/net10.0/JasperFx.Events.xml", + "lib/net8.0/JasperFx.Events.dll", + "lib/net8.0/JasperFx.Events.xml", + "lib/net9.0/JasperFx.Events.dll", + "lib/net9.0/JasperFx.Events.xml" + ] + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "sha512": "zA8iKRvnM1doCM7QqKXfit+FO9LF9hZ+BPoxe4L/+wf6RlARUMpV6HYjr1LWqogT2T5RzC5iO9r9HITl94MonA==", + "type": "package", + "path": "jasperfx.runtimecompiler/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jasperfx.runtimecompiler.4.3.2.nupkg.sha512", + "jasperfx.runtimecompiler.nuspec", + "lib/net10.0/JasperFx.RuntimeCompiler.dll", + "lib/net10.0/JasperFx.RuntimeCompiler.xml", + "lib/net8.0/JasperFx.RuntimeCompiler.dll", + "lib/net8.0/JasperFx.RuntimeCompiler.xml", + "lib/net9.0/JasperFx.RuntimeCompiler.dll", + "lib/net9.0/JasperFx.RuntimeCompiler.xml" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "sha512": "owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.AsyncInterfaces.targets", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "sha512": "bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "type": "package", + "path": "microsoft.bcl.timeprovider/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.TimeProvider.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.TimeProvider.targets", + "lib/net462/Microsoft.Bcl.TimeProvider.dll", + "lib/net462/Microsoft.Bcl.TimeProvider.xml", + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll", + "lib/net8.0/Microsoft.Bcl.TimeProvider.xml", + "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll", + "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.xml", + "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512", + "microsoft.bcl.timeprovider.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.CodeAnalysis/5.0.0": { + "sha512": "X7vItpZDkGm4NS2wp4P1S07Z1e61LaBWDW5tPXE1c6z5/x9KbF2RymhAPoYg7Qoiyk7odEZ6EjBEJ47p3dBpYQ==", + "type": "package", + "path": "microsoft.codeanalysis/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "microsoft.codeanalysis.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "sha512": "v/EW3UE8/lbEYHoC2Qq7AR/DnmvpgdtAMndfQNmpuIMx/Mto8L5JnuCfdBYtgvalQOtfNCnxFejxuRrryvUTsg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.11.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets", + "buildTransitive/config/analysislevel_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_all.globalconfig", + "buildTransitive/config/analysislevel_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_default.globalconfig", + "buildTransitive/config/analysislevel_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_none.globalconfig", + "buildTransitive/config/analysislevel_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended_warnaserror.globalconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "documentation/readme.md", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/5.0.0": { + "sha512": "ZXRAdvH6GiDeHRyd3q/km8Z44RoM6FBWHd+gen/la81mVnAdHTEsEkO5J0TCNXBymAcx5UYKt5TvgKBhaLJEow==", + "type": "package", + "path": "microsoft.codeanalysis.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.dll", + "lib/net8.0/Microsoft.CodeAnalysis.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.dll", + "lib/net9.0/Microsoft.CodeAnalysis.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/5.0.0": { + "sha512": "5DSyJ9bk+ATuDy7fp2Zt0mJStDVKbBoiz1DyfAwSa+k4H4IwykAUcV3URelw5b8/iVbfSaOwkwmPUZH6opZKCw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Scripting/5.0.0": { + "sha512": "1sGloRYbG3743ut/+vuXy9/WaRQTm7mDtp71rBaVSmKpFntvo5Hcro1ubg6/3SeeLtiFYJl7V3Dk0Fo3CGlnHA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.scripting/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "microsoft.codeanalysis.csharp.scripting.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.scripting.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { + "sha512": "Al/Q8B+yO8odSqGVpSvrShMFDvlQdIBU//F3E6Rb0YdiLSALE9wh/pvozPNnfmh5HDnvU+mkmSjpz4hQO++jaA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Scripting/5.0.0": { + "sha512": "/KgZdm6kRTrR/O2jqXxU5GWREYhtVmqcNWczyPt8hsQkFGFK/C6CrLWfG44FCUn0aPHGDRBHYjXlGosQ/H8oXw==", + "type": "package", + "path": "microsoft.codeanalysis.scripting/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "microsoft.codeanalysis.scripting.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.scripting.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "sha512": "XTulByMNxqXGCgMeODUoG2h4oK4/nLv1BcawRVcjv+UZHMpoaymtdaq3cJqlNrEvYEcbU48g5swJ3RhY1m3fBg==", + "type": "package", + "path": "microsoft.codeanalysis.scripting.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "microsoft.codeanalysis.scripting.common.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.scripting.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "sha512": "sUBWvHs2HgHGA+b716dgjS7JiXGen5ntyohAurPLR1ZiZzFp3FlnVA7GrMTqVGdVJTVqiC3c4K8k1bk0gj6IPg==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "microsoft.codeanalysis.visualbasic.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "sha512": "Nom4UuZVEZGaV6Qa+joJR/BawXZMtflvQJFKc0SaUc3LrZr/8LmRY5cn8mbvLOWIVfwWkQz+cVE6eQKu9qa65g==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic.workspaces/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "microsoft.codeanalysis.visualbasic.workspaces.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { + "sha512": "ZbUmIvT6lqTNKiv06Jl5wf0MTMi1vQ1oH7ou4CLcs2C/no/L7EhP3T8y3XXvn9VbqMcJaJnEsNA1jwYUMgc5jg==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.nuspec" + ] + }, + "Microsoft.Extensions.AmbientMetadata.Application/10.1.0": { + "sha512": "+T2Ax2fgw7T7nlhio+ZtgSyYGfevHCOXNPqO0vxA+f2HmbtfwAnIwHEE/jm1/4uFRDDP8PEENpxAhbucg+wUWg==", + "type": "package", + "path": "microsoft.extensions.ambientmetadata.application/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.AmbientMetadata.Application.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net462/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net462/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net8.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net8.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net9.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net9.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/netstandard2.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/netstandard2.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512", + "microsoft.extensions.ambientmetadata.application.nuspec" + ] + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "sha512": "M3JWrgZMkVzyEybZzNkTiC/e8U1ipXTi8xm8bj+PHHp4AcEmhmIEqnxRS0VHVCKZjLkOPt2hY2CIisUFQ6gqLA==", + "type": "package", + "path": "microsoft.extensions.compliance.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.compliance.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "sha512": "O052pqWkdVNXaj3n9E4x6nLL7sG860434gLh7XHhFp/KpyAY9/rCk9NJUinYfQnDkAA8UgCHimVZz+lTjnEwzQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.autoactivation/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.autoactivation.nuspec" + ] + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "sha512": "Q76peCoP6vXXf95RLFeMGzcaQs8l3lk+n/ZOTi2i+OLd3R0HzzB0Fswjua4NY1viIbA1s6l1mqRjQbxY7+Jylw==", + "type": "package", + "path": "microsoft.extensions.diagnostics.exceptionsummarization/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512", + "microsoft.extensions.diagnostics.exceptionsummarization.nuspec" + ] + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "sha512": "RA1Egggf5o7/5AI5TIxOmmV7T06X2jvA9nSlJazU++X/pgu48EDAjDflTq/+kAk0FHUm9ZpAiBVdWfOP2opAbQ==", + "type": "package", + "path": "microsoft.extensions.http.diagnostics/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Http.Diagnostics.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net462/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net9.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net9.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.Diagnostics.xml", + "microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512", + "microsoft.extensions.http.diagnostics.nuspec" + ] + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "sha512": "rwDoQBB93yQjd1XtcZBnOLRX23LW7Z49TIAp1sn7i2r/pW3y4iB8E+EEL0ZyOPuEZxT9xEVN9y39KWlG1FDPkQ==", + "type": "package", + "path": "microsoft.extensions.http.resilience/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Http.Resilience.net462.targets", + "buildTransitive/net462/Microsoft.Extensions.Http.Resilience.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Http.Resilience.targets", + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net10.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/net462/Microsoft.Extensions.Http.Resilience.dll", + "lib/net462/Microsoft.Extensions.Http.Resilience.xml", + "lib/net8.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net8.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/net9.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net9.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.Resilience.xml", + "microsoft.extensions.http.resilience.10.1.0.nupkg.sha512", + "microsoft.extensions.http.resilience.nuspec" + ] + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "sha512": "NzA+c4m2q92qZPjiZLFm+ToeQC3KFqzP+Dr/1pV5y9d7H/hDM2Yxno0kcw5DGpSvS0s6Pwsp+FWMdk/kXBPZ7g==", + "type": "package", + "path": "microsoft.extensions.resilience/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Resilience.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Resilience.dll", + "lib/net10.0/Microsoft.Extensions.Resilience.xml", + "lib/net462/Microsoft.Extensions.Resilience.dll", + "lib/net462/Microsoft.Extensions.Resilience.xml", + "lib/net8.0/Microsoft.Extensions.Resilience.dll", + "lib/net8.0/Microsoft.Extensions.Resilience.xml", + "lib/net9.0/Microsoft.Extensions.Resilience.dll", + "lib/net9.0/Microsoft.Extensions.Resilience.xml", + "lib/netstandard2.0/Microsoft.Extensions.Resilience.dll", + "lib/netstandard2.0/Microsoft.Extensions.Resilience.xml", + "microsoft.extensions.resilience.10.1.0.nupkg.sha512", + "microsoft.extensions.resilience.nuspec" + ] + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "sha512": "b78YWSrwXQI/pSzKIe/TO1lC2FcBfrux6+AmgTRStKcJYHNU1r8ii1GICRNv37CobIcaW8w33LW+xmThqIG/bg==", + "type": "package", + "path": "microsoft.extensions.servicediscovery/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.xml", + "microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512", + "microsoft.extensions.servicediscovery.nuspec" + ] + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "sha512": "uNPOkiRJx6J01aoHQBoX+QR6ZmQpIYdg/OO9+x/M3lkY6JTHBxp3pohcOyEe9l77MT8+3fVEP84/Uw+JODkA0Q==", + "type": "package", + "path": "microsoft.extensions.servicediscovery.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.servicediscovery.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "sha512": "OFnpwOBRZZXMMySvM7eJsEQ87ED5SaRbxHg/an1u89MWHw0mXUUbx5WPb5XFN0uS8kJPe6M+ZMRYwRP0nJeDPA==", + "type": "package", + "path": "microsoft.extensions.telemetry/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Telemetry.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Telemetry.dll", + "lib/net10.0/Microsoft.Extensions.Telemetry.xml", + "lib/net462/Microsoft.Extensions.Telemetry.dll", + "lib/net462/Microsoft.Extensions.Telemetry.xml", + "lib/net8.0/Microsoft.Extensions.Telemetry.dll", + "lib/net8.0/Microsoft.Extensions.Telemetry.xml", + "lib/net9.0/Microsoft.Extensions.Telemetry.dll", + "lib/net9.0/Microsoft.Extensions.Telemetry.xml", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.dll", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.xml", + "microsoft.extensions.telemetry.10.1.0.nupkg.sha512", + "microsoft.extensions.telemetry.nuspec" + ] + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "sha512": "0jAF2b0YJ1LOtunmo3PzSoJOx/ThhcGH5Y5kaV0jeM0BUlyr9orjg+fH5YabqnPSmwcN/DSTj0iZ7UwDISn5ag==", + "type": "package", + "path": "microsoft.extensions.telemetry.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "analyzers/dotnet/cs/Microsoft.Gen.Logging.dll", + "analyzers/dotnet/cs/Microsoft.Gen.Metrics.dll", + "buildTransitive/net462/Microsoft.Extensions.Telemetry.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Telemetry.Abstractions.props", + "buildTransitive/net6.0/Microsoft.Extensions.Telemetry.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.props", + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.telemetry.abstractions.nuspec" + ] + }, + "NATS.Client.Abstractions/2.7.0": { + "sha512": "DQ6x64lyH7Li2jS8/IV+XIEkhnhE9KENQ5luAoYTLPNEmFoIVcWN8RQSHjyRJviu4RGbw6AvHmlxvehnSqJk8w==", + "type": "package", + "path": "nats.client.abstractions/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Abstractions.dll", + "lib/net6.0/NATS.Client.Abstractions.xml", + "lib/net8.0/NATS.Client.Abstractions.dll", + "lib/net8.0/NATS.Client.Abstractions.xml", + "lib/netstandard2.0/NATS.Client.Abstractions.dll", + "lib/netstandard2.0/NATS.Client.Abstractions.xml", + "lib/netstandard2.1/NATS.Client.Abstractions.dll", + "lib/netstandard2.1/NATS.Client.Abstractions.xml", + "nats.client.abstractions.2.7.0.nupkg.sha512", + "nats.client.abstractions.nuspec" + ] + }, + "NATS.Client.Core/2.7.0": { + "sha512": "/l3nqhk6mfG50QjjvwKMN+kSUgJ27fmoaXAXXjrB13YpCbcl20c7Mj82KsutbjmxMVKSdb1mc7Wvj2Ahr03e8A==", + "type": "package", + "path": "nats.client.core/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Core.dll", + "lib/net6.0/NATS.Client.Core.xml", + "lib/net8.0/NATS.Client.Core.dll", + "lib/net8.0/NATS.Client.Core.xml", + "lib/netstandard2.0/NATS.Client.Core.dll", + "lib/netstandard2.0/NATS.Client.Core.xml", + "lib/netstandard2.1/NATS.Client.Core.dll", + "lib/netstandard2.1/NATS.Client.Core.xml", + "nats.client.core.2.7.0.nupkg.sha512", + "nats.client.core.nuspec" + ] + }, + "NATS.Client.Hosting/2.7.0": { + "sha512": "P0OoQWqhKPavjmkO23mOdqHsm4GmO9OdjlTrWTpvQes67DLgxmYTjGu1PYK0pi/XJuuiUeZdKhINt6XvygaqYg==", + "type": "package", + "path": "nats.client.hosting/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Hosting.dll", + "lib/net6.0/NATS.Client.Hosting.xml", + "lib/net8.0/NATS.Client.Hosting.dll", + "lib/net8.0/NATS.Client.Hosting.xml", + "lib/netstandard2.0/NATS.Client.Hosting.dll", + "lib/netstandard2.0/NATS.Client.Hosting.xml", + "lib/netstandard2.1/NATS.Client.Hosting.dll", + "lib/netstandard2.1/NATS.Client.Hosting.xml", + "nats.client.hosting.2.7.0.nupkg.sha512", + "nats.client.hosting.nuspec" + ] + }, + "NATS.Client.JetStream/2.7.0": { + "sha512": "MHT27WsvKCPSQ234WO+PnaDH0+rAs1W70BPnSvt/4iZ/Dunfx8oQHSGskfAz62R1U2ZGBTbucjkPCJqjCep0bA==", + "type": "package", + "path": "nats.client.jetstream/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.JetStream.dll", + "lib/net6.0/NATS.Client.JetStream.xml", + "lib/net8.0/NATS.Client.JetStream.dll", + "lib/net8.0/NATS.Client.JetStream.xml", + "lib/netstandard2.0/NATS.Client.JetStream.dll", + "lib/netstandard2.0/NATS.Client.JetStream.xml", + "lib/netstandard2.1/NATS.Client.JetStream.dll", + "lib/netstandard2.1/NATS.Client.JetStream.xml", + "nats.client.jetstream.2.7.0.nupkg.sha512", + "nats.client.jetstream.nuspec" + ] + }, + "NATS.Client.KeyValueStore/2.7.0": { + "sha512": "vmpy1y3fU0TzrOhEtS+9NajcjY1R08tHR7GQIIXB2IE2k0vh1rHLChUtrMypvTlng90KHGhGPsr/EzJnu6hqzA==", + "type": "package", + "path": "nats.client.keyvaluestore/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.KeyValueStore.dll", + "lib/net6.0/NATS.Client.KeyValueStore.xml", + "lib/net8.0/NATS.Client.KeyValueStore.dll", + "lib/net8.0/NATS.Client.KeyValueStore.xml", + "lib/netstandard2.0/NATS.Client.KeyValueStore.dll", + "lib/netstandard2.0/NATS.Client.KeyValueStore.xml", + "lib/netstandard2.1/NATS.Client.KeyValueStore.dll", + "lib/netstandard2.1/NATS.Client.KeyValueStore.xml", + "nats.client.keyvaluestore.2.7.0.nupkg.sha512", + "nats.client.keyvaluestore.nuspec" + ] + }, + "NATS.Client.ObjectStore/2.7.0": { + "sha512": "UqD6MjojKm2LCK+wTGSN/lsDe9of9qygFWGSAw1m6p9eoey1HnEVH0MKqItqAKUgsuyaaZaB999/S+z6uugGQg==", + "type": "package", + "path": "nats.client.objectstore/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.ObjectStore.dll", + "lib/net6.0/NATS.Client.ObjectStore.xml", + "lib/net8.0/NATS.Client.ObjectStore.dll", + "lib/net8.0/NATS.Client.ObjectStore.xml", + "lib/netstandard2.0/NATS.Client.ObjectStore.dll", + "lib/netstandard2.0/NATS.Client.ObjectStore.xml", + "lib/netstandard2.1/NATS.Client.ObjectStore.dll", + "lib/netstandard2.1/NATS.Client.ObjectStore.xml", + "nats.client.objectstore.2.7.0.nupkg.sha512", + "nats.client.objectstore.nuspec" + ] + }, + "NATS.Client.Serializers.Json/2.7.0": { + "sha512": "13R0EvJae6dXhcfdBX29LadDdc+0SPWVp0HdAQH4D7H3Eyd2/0jxgrLNH9nlZM8lo3tSk/iDojP7e+VQjlzM1w==", + "type": "package", + "path": "nats.client.serializers.json/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Serializers.Json.dll", + "lib/net6.0/NATS.Client.Serializers.Json.xml", + "lib/net8.0/NATS.Client.Serializers.Json.dll", + "lib/net8.0/NATS.Client.Serializers.Json.xml", + "lib/netstandard2.0/NATS.Client.Serializers.Json.dll", + "lib/netstandard2.0/NATS.Client.Serializers.Json.xml", + "lib/netstandard2.1/NATS.Client.Serializers.Json.dll", + "lib/netstandard2.1/NATS.Client.Serializers.Json.xml", + "nats.client.serializers.json.2.7.0.nupkg.sha512", + "nats.client.serializers.json.nuspec" + ] + }, + "NATS.Client.Services/2.7.0": { + "sha512": "EEs4ibYIwg/pP/bBPhn+K3eDfNBehTisGs2L+eZv7e+eHfBHcjSvAfbEhhyACMuFSuTROWpBaiFAH4xCWgdnbA==", + "type": "package", + "path": "nats.client.services/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Services.dll", + "lib/net6.0/NATS.Client.Services.xml", + "lib/net8.0/NATS.Client.Services.dll", + "lib/net8.0/NATS.Client.Services.xml", + "lib/netstandard2.0/NATS.Client.Services.dll", + "lib/netstandard2.0/NATS.Client.Services.xml", + "lib/netstandard2.1/NATS.Client.Services.dll", + "lib/netstandard2.1/NATS.Client.Services.xml", + "nats.client.services.2.7.0.nupkg.sha512", + "nats.client.services.nuspec" + ] + }, + "NATS.Client.Simplified/2.7.0": { + "sha512": "8HU5stAU/xpQr7OyGaZbkjJGeq7hcukUUdcme4sOBiSUrjWpfgJTYeFmwFQHALFah9dkm1EYrHp1RND6lLSJTA==", + "type": "package", + "path": "nats.client.simplified/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Simplified.dll", + "lib/net6.0/NATS.Client.Simplified.xml", + "lib/net8.0/NATS.Client.Simplified.dll", + "lib/net8.0/NATS.Client.Simplified.xml", + "lib/netstandard2.0/NATS.Client.Simplified.dll", + "lib/netstandard2.0/NATS.Client.Simplified.xml", + "lib/netstandard2.1/NATS.Client.Simplified.dll", + "lib/netstandard2.1/NATS.Client.Simplified.xml", + "nats.client.simplified.2.7.0.nupkg.sha512", + "nats.client.simplified.nuspec" + ] + }, + "NATS.Net/2.7.0": { + "sha512": "89IrKEUb/kOzzcQ+J5SKAKmlRybRklllZKa1/LuBNkn3BblIUHYXku6JibN1wWr02HgJGH+OMYBZ0SVX1+HnCA==", + "type": "package", + "path": "nats.net/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Net.dll", + "lib/net6.0/NATS.Net.xml", + "lib/net8.0/NATS.Net.dll", + "lib/net8.0/NATS.Net.xml", + "lib/netstandard2.0/NATS.Net.dll", + "lib/netstandard2.0/NATS.Net.xml", + "lib/netstandard2.1/NATS.Net.dll", + "lib/netstandard2.1/NATS.Net.xml", + "nats.net.2.7.0.nupkg.sha512", + "nats.net.nuspec" + ] + }, + "NewId/4.0.1": { + "sha512": "jegBasNndmG21G3BmT51suFDCIz/sLN81j+IxmkZ4iWoaDi8LygeHiyNnYbXz5OQh9nCRJFIx1+PJrlYi1Gc9Q==", + "type": "package", + "path": "newid/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/NewId.dll", + "lib/net6.0/NewId.xml", + "lib/netstandard2.0/NewId.dll", + "lib/netstandard2.0/NewId.xml", + "newid.4.0.1.nupkg.sha512", + "newid.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "OpenTelemetry/1.14.0": { + "sha512": "aiPBAr1+0dPDItH++MQQr5UgMf4xiybruzNlAoYYMYN3UUk+mGRcoKuZy4Z4rhhWUZIpK2Xhe7wUUXSTM32duQ==", + "type": "package", + "path": "opentelemetry/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.dll", + "lib/net10.0/OpenTelemetry.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.xml", + "lib/net462/OpenTelemetry.dll", + "lib/net462/OpenTelemetry.dll.sigstore.json", + "lib/net462/OpenTelemetry.xml", + "lib/net8.0/OpenTelemetry.dll", + "lib/net8.0/OpenTelemetry.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.xml", + "lib/net9.0/OpenTelemetry.dll", + "lib/net9.0/OpenTelemetry.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.xml", + "lib/netstandard2.0/OpenTelemetry.dll", + "lib/netstandard2.0/OpenTelemetry.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.xml", + "lib/netstandard2.1/OpenTelemetry.dll", + "lib/netstandard2.1/OpenTelemetry.dll.sigstore.json", + "lib/netstandard2.1/OpenTelemetry.xml", + "opentelemetry-icon-color.png", + "opentelemetry.1.14.0.nupkg.sha512", + "opentelemetry.nuspec" + ] + }, + "OpenTelemetry.Api/1.14.0": { + "sha512": "foHci6viUw1f3gUB8qzz3Rk02xZIWMo299X0rxK0MoOWok/3dUVru+KKdY7WIoSHwRGpxGKkmAz9jIk2RFNbsQ==", + "type": "package", + "path": "opentelemetry.api/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Api.dll", + "lib/net10.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Api.xml", + "lib/net462/OpenTelemetry.Api.dll", + "lib/net462/OpenTelemetry.Api.dll.sigstore.json", + "lib/net462/OpenTelemetry.Api.xml", + "lib/net8.0/OpenTelemetry.Api.dll", + "lib/net8.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Api.xml", + "lib/net9.0/OpenTelemetry.Api.dll", + "lib/net9.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Api.xml", + "lib/netstandard2.0/OpenTelemetry.Api.dll", + "lib/netstandard2.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Api.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.1.14.0.nupkg.sha512", + "opentelemetry.api.nuspec" + ] + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "sha512": "i/lxOM92v+zU5I0rGl5tXAGz6EJtxk2MvzZ0VN6F6L5pMqT6s6RCXnGWXg6fW+vtZJsllBlQaf/VLPTzgefJpg==", + "type": "package", + "path": "opentelemetry.api.providerbuilderextensions/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512", + "opentelemetry.api.providerbuilderextensions.nuspec" + ] + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "sha512": "7ELExeje+T/KOywHuHwZBGQNtYlepUaYRFXWgoEaT1iKpFJVwOlE1Y2+uqHI2QQmah0Ue+XgRmDy924vWHfJ6Q==", + "type": "package", + "path": "opentelemetry.exporter.opentelemetryprotocol/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "opentelemetry-icon-color.png", + "opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512", + "opentelemetry.exporter.opentelemetryprotocol.nuspec" + ] + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "sha512": "ZAxkCIa3Q3YWZ1sGrolXfkhPqn2PFSz2Cel74em/fATZgY5ixlw6MQp2icmqKCz4C7M1W2G0b92K3rX8mOtFRg==", + "type": "package", + "path": "opentelemetry.extensions.hosting/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net462/OpenTelemetry.Extensions.Hosting.xml", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.xml", + "opentelemetry-icon-color.png", + "opentelemetry.extensions.hosting.1.14.0.nupkg.sha512", + "opentelemetry.extensions.hosting.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "sha512": "NQAQpFa3a4ofPUYwxcwtNPGpuRNwwx1HM7MnLEESYjYkhfhER+PqqGywW65rWd7bJEc1/IaL+xbmHH99pYDE0A==", + "type": "package", + "path": "opentelemetry.instrumentation.aspnetcore/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.aspnetcore.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "sha512": "uH8X1fYnywrgaUrSbemKvFiFkBwY7ZbBU7Wh4A/ORQmdpF3G/5STidY4PlK4xYuIv9KkdMXH/vkpvzQcayW70g==", + "type": "package", + "path": "opentelemetry.instrumentation.http/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.Http.xml", + "lib/net462/OpenTelemetry.Instrumentation.Http.dll", + "lib/net462/OpenTelemetry.Instrumentation.Http.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.Http.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.http.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.http.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "sha512": "Z6o4JDOQaKv6bInAYZxuyxxfMKr6hFpwLnKEgQ+q+oBNA9Fm1sysjFCOzRzk7U0WD86LsRPXX+chv1vJIg7cfg==", + "type": "package", + "path": "opentelemetry.instrumentation.runtime/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/net462/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net462/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Runtime.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.runtime.nuspec" + ] + }, + "Polly.Core/8.6.5": { + "sha512": "t+sUVrIwvo7UmsgHGgOG9F0GDZSRIm47u2ylH17Gvcv1q5hNEwgD5GoBlFyc0kh/pebmPyrAgvGsR/65ZBaXlg==", + "type": "package", + "path": "polly.core/8.6.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "lib/net462/Polly.Core.dll", + "lib/net462/Polly.Core.pdb", + "lib/net462/Polly.Core.xml", + "lib/net472/Polly.Core.dll", + "lib/net472/Polly.Core.pdb", + "lib/net472/Polly.Core.xml", + "lib/net6.0/Polly.Core.dll", + "lib/net6.0/Polly.Core.pdb", + "lib/net6.0/Polly.Core.xml", + "lib/net8.0/Polly.Core.dll", + "lib/net8.0/Polly.Core.pdb", + "lib/net8.0/Polly.Core.xml", + "lib/netstandard2.0/Polly.Core.dll", + "lib/netstandard2.0/Polly.Core.pdb", + "lib/netstandard2.0/Polly.Core.xml", + "package-icon.png", + "package-readme.md", + "polly.core.8.6.5.nupkg.sha512", + "polly.core.nuspec" + ] + }, + "Polly.Extensions/8.4.2": { + "sha512": "GZ9vRVmR0jV2JtZavt+pGUsQ1O1cuRKG7R7VOZI6ZDy9y6RNPvRvXK1tuS4ffUrv8L0FTea59oEuQzgS0R7zSA==", + "type": "package", + "path": "polly.extensions/8.4.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Polly.Extensions.dll", + "lib/net462/Polly.Extensions.pdb", + "lib/net462/Polly.Extensions.xml", + "lib/net472/Polly.Extensions.dll", + "lib/net472/Polly.Extensions.pdb", + "lib/net472/Polly.Extensions.xml", + "lib/net6.0/Polly.Extensions.dll", + "lib/net6.0/Polly.Extensions.pdb", + "lib/net6.0/Polly.Extensions.xml", + "lib/net8.0/Polly.Extensions.dll", + "lib/net8.0/Polly.Extensions.pdb", + "lib/net8.0/Polly.Extensions.xml", + "lib/netstandard2.0/Polly.Extensions.dll", + "lib/netstandard2.0/Polly.Extensions.pdb", + "lib/netstandard2.0/Polly.Extensions.xml", + "package-icon.png", + "package-readme.md", + "polly.extensions.8.4.2.nupkg.sha512", + "polly.extensions.nuspec" + ] + }, + "Polly.RateLimiting/8.4.2": { + "sha512": "ehTImQ/eUyO07VYW2WvwSmU9rRH200SKJ/3jku9rOkyWE0A2JxNFmAVms8dSn49QLSjmjFRRSgfNyOgr/2PSmA==", + "type": "package", + "path": "polly.ratelimiting/8.4.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Polly.RateLimiting.dll", + "lib/net462/Polly.RateLimiting.pdb", + "lib/net462/Polly.RateLimiting.xml", + "lib/net472/Polly.RateLimiting.dll", + "lib/net472/Polly.RateLimiting.pdb", + "lib/net472/Polly.RateLimiting.xml", + "lib/net6.0/Polly.RateLimiting.dll", + "lib/net6.0/Polly.RateLimiting.pdb", + "lib/net6.0/Polly.RateLimiting.xml", + "lib/net8.0/Polly.RateLimiting.dll", + "lib/net8.0/Polly.RateLimiting.pdb", + "lib/net8.0/Polly.RateLimiting.xml", + "lib/netstandard2.0/Polly.RateLimiting.dll", + "lib/netstandard2.0/Polly.RateLimiting.pdb", + "lib/netstandard2.0/Polly.RateLimiting.xml", + "package-icon.png", + "package-readme.md", + "polly.ratelimiting.8.4.2.nupkg.sha512", + "polly.ratelimiting.nuspec" + ] + }, + "Spectre.Console/0.53.0": { + "sha512": "m2iv8Egfywp7FaNLKCmCFHbSf36D4ctzZKvlAK9NXMyGLh6L+CnrZWK8o+LOYsoAS1jtoHn0W1BT0W8vuq/FUw==", + "type": "package", + "path": "spectre.console/0.53.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Spectre.Console.dll", + "lib/net8.0/Spectre.Console.xml", + "lib/net9.0/Spectre.Console.dll", + "lib/net9.0/Spectre.Console.xml", + "lib/netstandard2.0/Spectre.Console.dll", + "lib/netstandard2.0/Spectre.Console.xml", + "logo.png", + "spectre.console.0.53.0.nupkg.sha512", + "spectre.console.nuspec" + ] + }, + "System.Composition/9.0.0": { + "sha512": "3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==", + "type": "package", + "path": "system.composition/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.targets", + "lib/net461/_._", + "lib/netcoreapp2.0/_._", + "lib/netstandard2.0/_._", + "system.composition.9.0.0.nupkg.sha512", + "system.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.AttributedModel/9.0.0": { + "sha512": "iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==", + "type": "package", + "path": "system.composition.attributedmodel/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.AttributedModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets", + "lib/net462/System.Composition.AttributedModel.dll", + "lib/net462/System.Composition.AttributedModel.xml", + "lib/net8.0/System.Composition.AttributedModel.dll", + "lib/net8.0/System.Composition.AttributedModel.xml", + "lib/net9.0/System.Composition.AttributedModel.dll", + "lib/net9.0/System.Composition.AttributedModel.xml", + "lib/netstandard2.0/System.Composition.AttributedModel.dll", + "lib/netstandard2.0/System.Composition.AttributedModel.xml", + "system.composition.attributedmodel.9.0.0.nupkg.sha512", + "system.composition.attributedmodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Convention/9.0.0": { + "sha512": "+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==", + "type": "package", + "path": "system.composition.convention/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Convention.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets", + "lib/net462/System.Composition.Convention.dll", + "lib/net462/System.Composition.Convention.xml", + "lib/net8.0/System.Composition.Convention.dll", + "lib/net8.0/System.Composition.Convention.xml", + "lib/net9.0/System.Composition.Convention.dll", + "lib/net9.0/System.Composition.Convention.xml", + "lib/netstandard2.0/System.Composition.Convention.dll", + "lib/netstandard2.0/System.Composition.Convention.xml", + "system.composition.convention.9.0.0.nupkg.sha512", + "system.composition.convention.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Hosting/9.0.0": { + "sha512": "OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==", + "type": "package", + "path": "system.composition.hosting/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets", + "lib/net462/System.Composition.Hosting.dll", + "lib/net462/System.Composition.Hosting.xml", + "lib/net8.0/System.Composition.Hosting.dll", + "lib/net8.0/System.Composition.Hosting.xml", + "lib/net9.0/System.Composition.Hosting.dll", + "lib/net9.0/System.Composition.Hosting.xml", + "lib/netstandard2.0/System.Composition.Hosting.dll", + "lib/netstandard2.0/System.Composition.Hosting.xml", + "system.composition.hosting.9.0.0.nupkg.sha512", + "system.composition.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Runtime/9.0.0": { + "sha512": "w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==", + "type": "package", + "path": "system.composition.runtime/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Runtime.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets", + "lib/net462/System.Composition.Runtime.dll", + "lib/net462/System.Composition.Runtime.xml", + "lib/net8.0/System.Composition.Runtime.dll", + "lib/net8.0/System.Composition.Runtime.xml", + "lib/net9.0/System.Composition.Runtime.dll", + "lib/net9.0/System.Composition.Runtime.xml", + "lib/netstandard2.0/System.Composition.Runtime.dll", + "lib/netstandard2.0/System.Composition.Runtime.xml", + "system.composition.runtime.9.0.0.nupkg.sha512", + "system.composition.runtime.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.TypedParts/9.0.0": { + "sha512": "aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==", + "type": "package", + "path": "system.composition.typedparts/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.TypedParts.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets", + "lib/net462/System.Composition.TypedParts.dll", + "lib/net462/System.Composition.TypedParts.xml", + "lib/net8.0/System.Composition.TypedParts.dll", + "lib/net8.0/System.Composition.TypedParts.xml", + "lib/net9.0/System.Composition.TypedParts.dll", + "lib/net9.0/System.Composition.TypedParts.xml", + "lib/netstandard2.0/System.Composition.TypedParts.dll", + "lib/netstandard2.0/System.Composition.TypedParts.xml", + "system.composition.typedparts.9.0.0.nupkg.sha512", + "system.composition.typedparts.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "WolverineFx/5.13.0": { + "sha512": "FB5Yo6M0SyQWDgHz2EjwQcflhrjRd9mERV6/N6WHQHJO1kW8fSxEIcOHndhikcVkZvmhUdwu5PW4V4ypEmpKTA==", + "type": "package", + "path": "wolverinefx/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.dll", + "lib/net10.0/Wolverine.xml", + "lib/net8.0/Wolverine.dll", + "lib/net8.0/Wolverine.xml", + "lib/net9.0/Wolverine.dll", + "lib/net9.0/Wolverine.xml", + "wolverinefx.5.13.0.nupkg.sha512", + "wolverinefx.nuspec" + ] + }, + "WolverineFx.Nats/5.13.0": { + "sha512": "8GN8uwRX56vp3fN8KSQqrEYlAtAKoOz1ZpCckZCsr15sP8eoE+Sa5wfzkGQ186cAYnkBa2P0yMlr1QRCmHYaYQ==", + "type": "package", + "path": "wolverinefx.nats/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.Nats.dll", + "lib/net10.0/Wolverine.Nats.xml", + "lib/net8.0/Wolverine.Nats.dll", + "lib/net8.0/Wolverine.Nats.xml", + "lib/net9.0/Wolverine.Nats.dll", + "lib/net9.0/Wolverine.Nats.xml", + "wolverinefx.nats.5.13.0.nupkg.sha512", + "wolverinefx.nats.nuspec" + ] + }, + "Messages/1.0.0": { + "type": "project", + "path": "../Messages/Messages.csproj", + "msbuildProject": "../Messages/Messages.csproj" + }, + "ServiceDefaults/1.0.0": { + "type": "project", + "path": "../ServiceDefaults/ServiceDefaults.csproj", + "msbuildProject": "../ServiceDefaults/ServiceDefaults.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Messages >= 1.0.0", + "ServiceDefaults >= 1.0.0", + "WolverineFx.Nats >= 5.13.0" + ] + }, + "packageFolders": { + "/Users/jeffrygonzalez/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/LateComer.csproj", + "projectName": "LateComer", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/LateComer.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj" + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "WolverineFx.Nats": { + "target": "Package", + "version": "[5.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/project.nuget.cache b/wolverine-nats/WolverineAndNats/LateComer/obj/project.nuget.cache new file mode 100644 index 0000000..1720f2d --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/project.nuget.cache @@ -0,0 +1,71 @@ +{ + "version": 2, + "dgSpecHash": "QzQ4lzxK7PI=", + "success": true, + "projectFilePath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/LateComer.csproj", + "expectedPackageFiles": [ + "/Users/jeffrygonzalez/.nuget/packages/fastexpressioncompiler/5.3.0/fastexpressioncompiler.5.3.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/imtools/4.0.0/imtools.4.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jasperfx/1.17.0/jasperfx.1.17.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jasperfx.events/1.17.0/jasperfx.events.1.17.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jasperfx.runtimecompiler/4.3.2/jasperfx.runtimecompiler.4.3.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.bcl.asyncinterfaces/9.0.0/microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.bcl.timeprovider/10.0.0/microsoft.bcl.timeprovider.10.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis/5.0.0/microsoft.codeanalysis.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.analyzers/3.11.0/microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.common/5.0.0/microsoft.codeanalysis.common.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.csharp/5.0.0/microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.csharp.scripting/5.0.0/microsoft.codeanalysis.csharp.scripting.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/5.0.0/microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.scripting/5.0.0/microsoft.codeanalysis.scripting.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.scripting.common/5.0.0/microsoft.codeanalysis.scripting.common.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.visualbasic/5.0.0/microsoft.codeanalysis.visualbasic.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.visualbasic.workspaces/5.0.0/microsoft.codeanalysis.visualbasic.workspaces.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.workspaces.common/5.0.0/microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.ambientmetadata.application/10.1.0/microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.compliance.abstractions/10.1.0/microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.dependencyinjection.autoactivation/10.1.0/microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.diagnostics.exceptionsummarization/10.1.0/microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.http.diagnostics/10.1.0/microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.http.resilience/10.1.0/microsoft.extensions.http.resilience.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.resilience/10.1.0/microsoft.extensions.resilience.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.servicediscovery/10.1.0/microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.servicediscovery.abstractions/10.1.0/microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.telemetry/10.1.0/microsoft.extensions.telemetry.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.telemetry.abstractions/10.1.0/microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.abstractions/2.7.0/nats.client.abstractions.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.core/2.7.0/nats.client.core.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.hosting/2.7.0/nats.client.hosting.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.jetstream/2.7.0/nats.client.jetstream.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.keyvaluestore/2.7.0/nats.client.keyvaluestore.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.objectstore/2.7.0/nats.client.objectstore.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.serializers.json/2.7.0/nats.client.serializers.json.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.services/2.7.0/nats.client.services.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.simplified/2.7.0/nats.client.simplified.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.net/2.7.0/nats.net.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/newid/4.0.1/newid.4.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry/1.14.0/opentelemetry.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.api/1.14.0/opentelemetry.api.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.api.providerbuilderextensions/1.14.0/opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.exporter.opentelemetryprotocol/1.14.0/opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.extensions.hosting/1.14.0/opentelemetry.extensions.hosting.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.aspnetcore/1.14.0/opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.http/1.14.0/opentelemetry.instrumentation.http.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.runtime/1.14.0/opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.core/8.6.5/polly.core.8.6.5.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.extensions/8.4.2/polly.extensions.8.4.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.ratelimiting/8.4.2/polly.ratelimiting.8.4.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/spectre.console/0.53.0/spectre.console.0.53.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition/9.0.0/system.composition.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.attributedmodel/9.0.0/system.composition.attributedmodel.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.convention/9.0.0/system.composition.convention.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.hosting/9.0.0/system.composition.hosting.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.runtime/9.0.0/system.composition.runtime.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.typedparts/9.0.0/system.composition.typedparts.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx/5.13.0/wolverinefx.5.13.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx.nats/5.13.0/wolverinefx.nats.5.13.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/project.packagespec.json b/wolverine-nats/WolverineAndNats/LateComer/obj/project.packagespec.json new file mode 100644 index 0000000..c23db98 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/LateComer.csproj","projectName":"LateComer","projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/LateComer.csproj","outputPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/LateComer/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net10.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net10.0":{"targetAlias":"net10.0","projectReferences":{"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj":{"projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj"},"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj":{"projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"all"},"SdkAnalysisLevel":"10.0.100"}"frameworks":{"net10.0":{"targetAlias":"net10.0","dependencies":{"WolverineFx.Nats":{"target":"Package","version":"[5.13.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json","packagesToPrune":{"Microsoft.AspNetCore":"(,10.0.32767]","Microsoft.AspNetCore.Antiforgery":"(,10.0.32767]","Microsoft.AspNetCore.App":"(,10.0.32767]","Microsoft.AspNetCore.Authentication":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.BearerToken":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Cookies":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Core":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.OAuth":"(,10.0.32767]","Microsoft.AspNetCore.Authorization":"(,10.0.32767]","Microsoft.AspNetCore.Authorization.Policy":"(,10.0.32767]","Microsoft.AspNetCore.Components":"(,10.0.32767]","Microsoft.AspNetCore.Components.Authorization":"(,10.0.32767]","Microsoft.AspNetCore.Components.Endpoints":"(,10.0.32767]","Microsoft.AspNetCore.Components.Forms":"(,10.0.32767]","Microsoft.AspNetCore.Components.Server":"(,10.0.32767]","Microsoft.AspNetCore.Components.Web":"(,10.0.32767]","Microsoft.AspNetCore.Connections.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.CookiePolicy":"(,10.0.32767]","Microsoft.AspNetCore.Cors":"(,10.0.32767]","Microsoft.AspNetCore.Cryptography.Internal":"(,10.0.32767]","Microsoft.AspNetCore.Cryptography.KeyDerivation":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection.Extensions":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics.HealthChecks":"(,10.0.32767]","Microsoft.AspNetCore.HostFiltering":"(,10.0.32767]","Microsoft.AspNetCore.Hosting":"(,10.0.32767]","Microsoft.AspNetCore.Hosting.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Hosting.Server.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Html.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Http":"(,10.0.32767]","Microsoft.AspNetCore.Http.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Http.Connections":"(,10.0.32767]","Microsoft.AspNetCore.Http.Connections.Common":"(,10.0.32767]","Microsoft.AspNetCore.Http.Extensions":"(,10.0.32767]","Microsoft.AspNetCore.Http.Features":"(,10.0.32767]","Microsoft.AspNetCore.Http.Results":"(,10.0.32767]","Microsoft.AspNetCore.HttpLogging":"(,10.0.32767]","Microsoft.AspNetCore.HttpOverrides":"(,10.0.32767]","Microsoft.AspNetCore.HttpsPolicy":"(,10.0.32767]","Microsoft.AspNetCore.Identity":"(,10.0.32767]","Microsoft.AspNetCore.Localization":"(,10.0.32767]","Microsoft.AspNetCore.Localization.Routing":"(,10.0.32767]","Microsoft.AspNetCore.Metadata":"(,10.0.32767]","Microsoft.AspNetCore.Mvc":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.ApiExplorer":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Core":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Cors":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.DataAnnotations":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Formatters.Json":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Formatters.Xml":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Localization":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Razor":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.RazorPages":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.TagHelpers":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.ViewFeatures":"(,10.0.32767]","Microsoft.AspNetCore.OutputCaching":"(,10.0.32767]","Microsoft.AspNetCore.RateLimiting":"(,10.0.32767]","Microsoft.AspNetCore.Razor":"(,10.0.32767]","Microsoft.AspNetCore.Razor.Runtime":"(,10.0.32767]","Microsoft.AspNetCore.RequestDecompression":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCaching":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCaching.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCompression":"(,10.0.32767]","Microsoft.AspNetCore.Rewrite":"(,10.0.32767]","Microsoft.AspNetCore.Routing":"(,10.0.32767]","Microsoft.AspNetCore.Routing.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Server.HttpSys":"(,10.0.32767]","Microsoft.AspNetCore.Server.IIS":"(,10.0.32767]","Microsoft.AspNetCore.Server.IISIntegration":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Core":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.Quic":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets":"(,10.0.32767]","Microsoft.AspNetCore.Session":"(,10.0.32767]","Microsoft.AspNetCore.SignalR":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Common":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Core":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Protocols.Json":"(,10.0.32767]","Microsoft.AspNetCore.StaticAssets":"(,10.0.32767]","Microsoft.AspNetCore.StaticFiles":"(,10.0.32767]","Microsoft.AspNetCore.WebSockets":"(,10.0.32767]","Microsoft.AspNetCore.WebUtilities":"(,10.0.32767]","Microsoft.CSharp":"(,4.7.32767]","Microsoft.Extensions.Caching.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Caching.Memory":"(,10.0.32767]","Microsoft.Extensions.Configuration":"(,10.0.32767]","Microsoft.Extensions.Configuration.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Configuration.Binder":"(,10.0.32767]","Microsoft.Extensions.Configuration.CommandLine":"(,10.0.32767]","Microsoft.Extensions.Configuration.EnvironmentVariables":"(,10.0.32767]","Microsoft.Extensions.Configuration.FileExtensions":"(,10.0.32767]","Microsoft.Extensions.Configuration.Ini":"(,10.0.32767]","Microsoft.Extensions.Configuration.Json":"(,10.0.32767]","Microsoft.Extensions.Configuration.KeyPerFile":"(,10.0.32767]","Microsoft.Extensions.Configuration.UserSecrets":"(,10.0.32767]","Microsoft.Extensions.Configuration.Xml":"(,10.0.32767]","Microsoft.Extensions.DependencyInjection":"(,10.0.32767]","Microsoft.Extensions.DependencyInjection.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Diagnostics":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.HealthChecks":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Features":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Abstractions":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Composite":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Physical":"(,10.0.32767]","Microsoft.Extensions.FileSystemGlobbing":"(,10.0.32767]","Microsoft.Extensions.Hosting":"(,10.0.32767]","Microsoft.Extensions.Hosting.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Http":"(,10.0.32767]","Microsoft.Extensions.Identity.Core":"(,10.0.32767]","Microsoft.Extensions.Identity.Stores":"(,10.0.32767]","Microsoft.Extensions.Localization":"(,10.0.32767]","Microsoft.Extensions.Localization.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Logging":"(,10.0.32767]","Microsoft.Extensions.Logging.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Logging.Configuration":"(,10.0.32767]","Microsoft.Extensions.Logging.Console":"(,10.0.32767]","Microsoft.Extensions.Logging.Debug":"(,10.0.32767]","Microsoft.Extensions.Logging.EventLog":"(,10.0.32767]","Microsoft.Extensions.Logging.EventSource":"(,10.0.32767]","Microsoft.Extensions.Logging.TraceSource":"(,10.0.32767]","Microsoft.Extensions.ObjectPool":"(,10.0.32767]","Microsoft.Extensions.Options":"(,10.0.32767]","Microsoft.Extensions.Options.ConfigurationExtensions":"(,10.0.32767]","Microsoft.Extensions.Options.DataAnnotations":"(,10.0.32767]","Microsoft.Extensions.Primitives":"(,10.0.32767]","Microsoft.Extensions.Validation":"(,10.0.32767]","Microsoft.Extensions.WebEncoders":"(,10.0.32767]","Microsoft.JSInterop":"(,10.0.32767]","Microsoft.Net.Http.Headers":"(,10.0.32767]","Microsoft.VisualBasic":"(,10.4.32767]","Microsoft.Win32.Primitives":"(,4.3.32767]","Microsoft.Win32.Registry":"(,5.0.32767]","runtime.any.System.Collections":"(,4.3.32767]","runtime.any.System.Diagnostics.Tools":"(,4.3.32767]","runtime.any.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.any.System.Globalization":"(,4.3.32767]","runtime.any.System.Globalization.Calendars":"(,4.3.32767]","runtime.any.System.IO":"(,4.3.32767]","runtime.any.System.Reflection":"(,4.3.32767]","runtime.any.System.Reflection.Extensions":"(,4.3.32767]","runtime.any.System.Reflection.Primitives":"(,4.3.32767]","runtime.any.System.Resources.ResourceManager":"(,4.3.32767]","runtime.any.System.Runtime":"(,4.3.32767]","runtime.any.System.Runtime.Handles":"(,4.3.32767]","runtime.any.System.Runtime.InteropServices":"(,4.3.32767]","runtime.any.System.Text.Encoding":"(,4.3.32767]","runtime.any.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.any.System.Threading.Tasks":"(,4.3.32767]","runtime.any.System.Threading.Timer":"(,4.3.32767]","runtime.aot.System.Collections":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tools":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.aot.System.Globalization":"(,4.3.32767]","runtime.aot.System.Globalization.Calendars":"(,4.3.32767]","runtime.aot.System.IO":"(,4.3.32767]","runtime.aot.System.Reflection":"(,4.3.32767]","runtime.aot.System.Reflection.Extensions":"(,4.3.32767]","runtime.aot.System.Reflection.Primitives":"(,4.3.32767]","runtime.aot.System.Resources.ResourceManager":"(,4.3.32767]","runtime.aot.System.Runtime":"(,4.3.32767]","runtime.aot.System.Runtime.Handles":"(,4.3.32767]","runtime.aot.System.Runtime.InteropServices":"(,4.3.32767]","runtime.aot.System.Text.Encoding":"(,4.3.32767]","runtime.aot.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.aot.System.Threading.Tasks":"(,4.3.32767]","runtime.aot.System.Threading.Timer":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.unix.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.unix.System.Console":"(,4.3.32767]","runtime.unix.System.Diagnostics.Debug":"(,4.3.32767]","runtime.unix.System.IO.FileSystem":"(,4.3.32767]","runtime.unix.System.Net.Primitives":"(,4.3.32767]","runtime.unix.System.Net.Sockets":"(,4.3.32767]","runtime.unix.System.Private.Uri":"(,4.3.32767]","runtime.unix.System.Runtime.Extensions":"(,4.3.32767]","runtime.win.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.win.System.Console":"(,4.3.32767]","runtime.win.System.Diagnostics.Debug":"(,4.3.32767]","runtime.win.System.IO.FileSystem":"(,4.3.32767]","runtime.win.System.Net.Primitives":"(,4.3.32767]","runtime.win.System.Net.Sockets":"(,4.3.32767]","runtime.win.System.Runtime.Extensions":"(,4.3.32767]","runtime.win10-arm-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-arm64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win10-x64-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-x86-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7-x86.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7.System.Private.Uri":"(,4.3.32767]","runtime.win8-arm.runtime.native.System.IO.Compression":"(,4.3.32767]","System.AppContext":"(,4.3.32767]","System.Buffers":"(,5.0.32767]","System.Collections":"(,4.3.32767]","System.Collections.Concurrent":"(,4.3.32767]","System.Collections.Immutable":"(,10.0.32767]","System.Collections.NonGeneric":"(,4.3.32767]","System.Collections.Specialized":"(,4.3.32767]","System.ComponentModel":"(,4.3.32767]","System.ComponentModel.Annotations":"(,4.3.32767]","System.ComponentModel.EventBasedAsync":"(,4.3.32767]","System.ComponentModel.Primitives":"(,4.3.32767]","System.ComponentModel.TypeConverter":"(,4.3.32767]","System.Console":"(,4.3.32767]","System.Data.Common":"(,4.3.32767]","System.Data.DataSetExtensions":"(,4.4.32767]","System.Diagnostics.Contracts":"(,4.3.32767]","System.Diagnostics.Debug":"(,4.3.32767]","System.Diagnostics.DiagnosticSource":"(,10.0.32767]","System.Diagnostics.EventLog":"(,10.0.32767]","System.Diagnostics.FileVersionInfo":"(,4.3.32767]","System.Diagnostics.Process":"(,4.3.32767]","System.Diagnostics.StackTrace":"(,4.3.32767]","System.Diagnostics.TextWriterTraceListener":"(,4.3.32767]","System.Diagnostics.Tools":"(,4.3.32767]","System.Diagnostics.TraceSource":"(,4.3.32767]","System.Diagnostics.Tracing":"(,4.3.32767]","System.Drawing.Primitives":"(,4.3.32767]","System.Dynamic.Runtime":"(,4.3.32767]","System.Formats.Asn1":"(,10.0.32767]","System.Formats.Cbor":"(,10.0.32767]","System.Formats.Tar":"(,10.0.32767]","System.Globalization":"(,4.3.32767]","System.Globalization.Calendars":"(,4.3.32767]","System.Globalization.Extensions":"(,4.3.32767]","System.IO":"(,4.3.32767]","System.IO.Compression":"(,4.3.32767]","System.IO.Compression.ZipFile":"(,4.3.32767]","System.IO.FileSystem":"(,4.3.32767]","System.IO.FileSystem.AccessControl":"(,4.4.32767]","System.IO.FileSystem.DriveInfo":"(,4.3.32767]","System.IO.FileSystem.Primitives":"(,4.3.32767]","System.IO.FileSystem.Watcher":"(,4.3.32767]","System.IO.IsolatedStorage":"(,4.3.32767]","System.IO.MemoryMappedFiles":"(,4.3.32767]","System.IO.Pipelines":"(,10.0.32767]","System.IO.Pipes":"(,4.3.32767]","System.IO.Pipes.AccessControl":"(,5.0.32767]","System.IO.UnmanagedMemoryStream":"(,4.3.32767]","System.Linq":"(,4.3.32767]","System.Linq.AsyncEnumerable":"(,10.0.32767]","System.Linq.Expressions":"(,4.3.32767]","System.Linq.Parallel":"(,4.3.32767]","System.Linq.Queryable":"(,4.3.32767]","System.Memory":"(,5.0.32767]","System.Net.Http":"(,4.3.32767]","System.Net.Http.Json":"(,10.0.32767]","System.Net.NameResolution":"(,4.3.32767]","System.Net.NetworkInformation":"(,4.3.32767]","System.Net.Ping":"(,4.3.32767]","System.Net.Primitives":"(,4.3.32767]","System.Net.Requests":"(,4.3.32767]","System.Net.Security":"(,4.3.32767]","System.Net.ServerSentEvents":"(,10.0.32767]","System.Net.Sockets":"(,4.3.32767]","System.Net.WebHeaderCollection":"(,4.3.32767]","System.Net.WebSockets":"(,4.3.32767]","System.Net.WebSockets.Client":"(,4.3.32767]","System.Numerics.Vectors":"(,5.0.32767]","System.ObjectModel":"(,4.3.32767]","System.Private.DataContractSerialization":"(,4.3.32767]","System.Private.Uri":"(,4.3.32767]","System.Reflection":"(,4.3.32767]","System.Reflection.DispatchProxy":"(,6.0.32767]","System.Reflection.Emit":"(,4.7.32767]","System.Reflection.Emit.ILGeneration":"(,4.7.32767]","System.Reflection.Emit.Lightweight":"(,4.7.32767]","System.Reflection.Extensions":"(,4.3.32767]","System.Reflection.Metadata":"(,10.0.32767]","System.Reflection.Primitives":"(,4.3.32767]","System.Reflection.TypeExtensions":"(,4.3.32767]","System.Resources.Reader":"(,4.3.32767]","System.Resources.ResourceManager":"(,4.3.32767]","System.Resources.Writer":"(,4.3.32767]","System.Runtime":"(,4.3.32767]","System.Runtime.CompilerServices.Unsafe":"(,7.0.32767]","System.Runtime.CompilerServices.VisualC":"(,4.3.32767]","System.Runtime.Extensions":"(,4.3.32767]","System.Runtime.Handles":"(,4.3.32767]","System.Runtime.InteropServices":"(,4.3.32767]","System.Runtime.InteropServices.RuntimeInformation":"(,4.3.32767]","System.Runtime.Loader":"(,4.3.32767]","System.Runtime.Numerics":"(,4.3.32767]","System.Runtime.Serialization.Formatters":"(,4.3.32767]","System.Runtime.Serialization.Json":"(,4.3.32767]","System.Runtime.Serialization.Primitives":"(,4.3.32767]","System.Runtime.Serialization.Xml":"(,4.3.32767]","System.Security.AccessControl":"(,6.0.32767]","System.Security.Claims":"(,4.3.32767]","System.Security.Cryptography.Algorithms":"(,4.3.32767]","System.Security.Cryptography.Cng":"(,5.0.32767]","System.Security.Cryptography.Csp":"(,4.3.32767]","System.Security.Cryptography.Encoding":"(,4.3.32767]","System.Security.Cryptography.OpenSsl":"(,5.0.32767]","System.Security.Cryptography.Primitives":"(,4.3.32767]","System.Security.Cryptography.X509Certificates":"(,4.3.32767]","System.Security.Cryptography.Xml":"(,10.0.32767]","System.Security.Principal":"(,4.3.32767]","System.Security.Principal.Windows":"(,5.0.32767]","System.Security.SecureString":"(,4.3.32767]","System.Text.Encoding":"(,4.3.32767]","System.Text.Encoding.CodePages":"(,10.0.32767]","System.Text.Encoding.Extensions":"(,4.3.32767]","System.Text.Encodings.Web":"(,10.0.32767]","System.Text.Json":"(,10.0.32767]","System.Text.RegularExpressions":"(,4.3.32767]","System.Threading":"(,4.3.32767]","System.Threading.AccessControl":"(,10.0.32767]","System.Threading.Channels":"(,10.0.32767]","System.Threading.Overlapped":"(,4.3.32767]","System.Threading.RateLimiting":"(,10.0.32767]","System.Threading.Tasks":"(,4.3.32767]","System.Threading.Tasks.Dataflow":"(,10.0.32767]","System.Threading.Tasks.Extensions":"(,5.0.32767]","System.Threading.Tasks.Parallel":"(,4.3.32767]","System.Threading.Thread":"(,4.3.32767]","System.Threading.ThreadPool":"(,4.3.32767]","System.Threading.Timer":"(,4.3.32767]","System.ValueTuple":"(,4.5.32767]","System.Xml.ReaderWriter":"(,4.3.32767]","System.Xml.XDocument":"(,4.3.32767]","System.Xml.XmlDocument":"(,4.3.32767]","System.Xml.XmlSerializer":"(,4.3.32767]","System.Xml.XPath":"(,4.3.32767]","System.Xml.XPath.XDocument":"(,5.0.32767]"}}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/rider.project.model.nuget.info b/wolverine-nats/WolverineAndNats/LateComer/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..89ed2c3 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17700382162634668 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/LateComer/obj/rider.project.restore.info b/wolverine-nats/WolverineAndNats/LateComer/obj/rider.project.restore.info new file mode 100644 index 0000000..af10d67 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/LateComer/obj/rider.project.restore.info @@ -0,0 +1 @@ +17700382638879966 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/AddThem.cs b/wolverine-nats/WolverineAndNats/Messages/AddThem.cs new file mode 100644 index 0000000..a11ed86 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/AddThem.cs @@ -0,0 +1,3 @@ +namespace Messages; + +public record AddThem(List Numbers); \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/Messages.csproj b/wolverine-nats/WolverineAndNats/Messages/Messages.csproj new file mode 100644 index 0000000..237d661 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/Messages.csproj @@ -0,0 +1,9 @@ + + + + net10.0 + enable + enable + + + diff --git a/wolverine-nats/WolverineAndNats/Messages/NumbersAdded.cs b/wolverine-nats/WolverineAndNats/Messages/NumbersAdded.cs new file mode 100644 index 0000000..072b89e --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/NumbersAdded.cs @@ -0,0 +1,3 @@ +namespace Messages; + +public record NumbersAdded(int Sum); \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/SendMessage.cs b/wolverine-nats/WolverineAndNats/Messages/SendMessage.cs new file mode 100644 index 0000000..77bebe9 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/SendMessage.cs @@ -0,0 +1,3 @@ +namespace Messages; + +public record SendMessage(string Message); \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/UserDocument.cs b/wolverine-nats/WolverineAndNats/Messages/UserDocument.cs new file mode 100644 index 0000000..53ebcad --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/UserDocument.cs @@ -0,0 +1,3 @@ +namespace Messages; + +public record UserDocument(Guid Id, string Name); \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/UserNameChanged.cs b/wolverine-nats/WolverineAndNats/Messages/UserNameChanged.cs new file mode 100644 index 0000000..c25749a --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/UserNameChanged.cs @@ -0,0 +1,3 @@ +namespace Messages; + +public record UserNameChanged(Guid Id, string NewName); \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/bin/Debug/net10.0/Messages.deps.json b/wolverine-nats/WolverineAndNats/Messages/bin/Debug/net10.0/Messages.deps.json new file mode 100644 index 0000000..134b4b3 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/bin/Debug/net10.0/Messages.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "Messages/1.0.0": { + "runtime": { + "Messages.dll": {} + } + } + } + }, + "libraries": { + "Messages/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/bin/Debug/net10.0/Messages.dll b/wolverine-nats/WolverineAndNats/Messages/bin/Debug/net10.0/Messages.dll new file mode 100644 index 0000000..95f77d9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/Messages/bin/Debug/net10.0/Messages.dll differ diff --git a/wolverine-nats/WolverineAndNats/Messages/bin/Debug/net10.0/Messages.pdb b/wolverine-nats/WolverineAndNats/Messages/bin/Debug/net10.0/Messages.pdb new file mode 100644 index 0000000..872a410 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/Messages/bin/Debug/net10.0/Messages.pdb differ diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.AssemblyInfo.cs b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.AssemblyInfo.cs new file mode 100644 index 0000000..29793a9 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Messages")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+029fc808861743407d1014ffb7cabf40b443645a")] +[assembly: System.Reflection.AssemblyProductAttribute("Messages")] +[assembly: System.Reflection.AssemblyTitleAttribute("Messages")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.AssemblyInfoInputs.cache b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.AssemblyInfoInputs.cache new file mode 100644 index 0000000..065fb27 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6605a9e1de51334a9571d5edede656c53944597a5c216b09592a7e3231854a18 diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.GeneratedMSBuildEditorConfig.editorconfig b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4de12bb --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Messages +build_property.ProjectDir = /Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.GlobalUsings.g.cs b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.assets.cache b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.assets.cache new file mode 100644 index 0000000..ef8065c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.assets.cache differ diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.csproj.CoreCompileInputs.cache b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..2ceac90 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7918df1fff1a2b4dbd13c63d76fff72f7695966166f963083098a7139c716cd2 diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.csproj.FileListAbsolute.txt b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..1d537c0 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.csproj.FileListAbsolute.txt @@ -0,0 +1,12 @@ +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/bin/Debug/net10.0/Messages.deps.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/bin/Debug/net10.0/Messages.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/bin/Debug/net10.0/Messages.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.GeneratedMSBuildEditorConfig.editorconfig +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.AssemblyInfoInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.AssemblyInfo.cs +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.csproj.CoreCompileInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.sourcelink.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/refint/Messages.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/ref/Messages.dll diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.dll b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.dll new file mode 100644 index 0000000..95f77d9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.dll differ diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.pdb b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.pdb new file mode 100644 index 0000000..872a410 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.pdb differ diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.sourcelink.json b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.sourcelink.json new file mode 100644 index 0000000..a43e21e --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/Messages.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/Users/jeffrygonzalez/work/reference/*":"https://raw.githubusercontent.com/HypertheoryTraining/reference/029fc808861743407d1014ffb7cabf40b443645a/*"}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/ref/Messages.dll b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/ref/Messages.dll new file mode 100644 index 0000000..72d1b45 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/ref/Messages.dll differ diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/refint/Messages.dll b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/refint/Messages.dll new file mode 100644 index 0000000..72d1b45 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/Messages/obj/Debug/net10.0/refint/Messages.dll differ diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Messages.csproj.nuget.dgspec.json b/wolverine-nats/WolverineAndNats/Messages/obj/Messages.csproj.nuget.dgspec.json new file mode 100644 index 0000000..7100000 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/Messages.csproj.nuget.dgspec.json @@ -0,0 +1,341 @@ +{ + "format": 1, + "restore": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": {} + }, + "projects": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj", + "projectName": "Messages", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Messages.csproj.nuget.g.props b/wolverine-nats/WolverineAndNats/Messages/obj/Messages.csproj.nuget.g.props new file mode 100644 index 0000000..7c24455 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/Messages.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/jeffrygonzalez/.nuget/packages/ + /Users/jeffrygonzalez/.nuget/packages/ + PackageReference + 7.0.0 + + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/Messages.csproj.nuget.g.targets b/wolverine-nats/WolverineAndNats/Messages/obj/Messages.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/Messages.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/project.assets.json b/wolverine-nats/WolverineAndNats/Messages/obj/project.assets.json new file mode 100644 index 0000000..28915a3 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/project.assets.json @@ -0,0 +1,346 @@ +{ + "version": 3, + "targets": { + "net10.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net10.0": [] + }, + "packageFolders": { + "/Users/jeffrygonzalez/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj", + "projectName": "Messages", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/project.nuget.cache b/wolverine-nats/WolverineAndNats/Messages/obj/project.nuget.cache new file mode 100644 index 0000000..fd4f441 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "RCXzTR9Fwpc=", + "success": true, + "projectFilePath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/project.packagespec.json b/wolverine-nats/WolverineAndNats/Messages/obj/project.packagespec.json new file mode 100644 index 0000000..a4e311c --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj","projectName":"Messages","projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj","outputPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net10.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net10.0":{"targetAlias":"net10.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"all"},"SdkAnalysisLevel":"10.0.100"}"frameworks":{"net10.0":{"targetAlias":"net10.0","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json","packagesToPrune":{"Microsoft.CSharp":"(,4.7.32767]","Microsoft.VisualBasic":"(,10.4.32767]","Microsoft.Win32.Primitives":"(,4.3.32767]","Microsoft.Win32.Registry":"(,5.0.32767]","runtime.any.System.Collections":"(,4.3.32767]","runtime.any.System.Diagnostics.Tools":"(,4.3.32767]","runtime.any.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.any.System.Globalization":"(,4.3.32767]","runtime.any.System.Globalization.Calendars":"(,4.3.32767]","runtime.any.System.IO":"(,4.3.32767]","runtime.any.System.Reflection":"(,4.3.32767]","runtime.any.System.Reflection.Extensions":"(,4.3.32767]","runtime.any.System.Reflection.Primitives":"(,4.3.32767]","runtime.any.System.Resources.ResourceManager":"(,4.3.32767]","runtime.any.System.Runtime":"(,4.3.32767]","runtime.any.System.Runtime.Handles":"(,4.3.32767]","runtime.any.System.Runtime.InteropServices":"(,4.3.32767]","runtime.any.System.Text.Encoding":"(,4.3.32767]","runtime.any.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.any.System.Threading.Tasks":"(,4.3.32767]","runtime.any.System.Threading.Timer":"(,4.3.32767]","runtime.aot.System.Collections":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tools":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.aot.System.Globalization":"(,4.3.32767]","runtime.aot.System.Globalization.Calendars":"(,4.3.32767]","runtime.aot.System.IO":"(,4.3.32767]","runtime.aot.System.Reflection":"(,4.3.32767]","runtime.aot.System.Reflection.Extensions":"(,4.3.32767]","runtime.aot.System.Reflection.Primitives":"(,4.3.32767]","runtime.aot.System.Resources.ResourceManager":"(,4.3.32767]","runtime.aot.System.Runtime":"(,4.3.32767]","runtime.aot.System.Runtime.Handles":"(,4.3.32767]","runtime.aot.System.Runtime.InteropServices":"(,4.3.32767]","runtime.aot.System.Text.Encoding":"(,4.3.32767]","runtime.aot.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.aot.System.Threading.Tasks":"(,4.3.32767]","runtime.aot.System.Threading.Timer":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.unix.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.unix.System.Console":"(,4.3.32767]","runtime.unix.System.Diagnostics.Debug":"(,4.3.32767]","runtime.unix.System.IO.FileSystem":"(,4.3.32767]","runtime.unix.System.Net.Primitives":"(,4.3.32767]","runtime.unix.System.Net.Sockets":"(,4.3.32767]","runtime.unix.System.Private.Uri":"(,4.3.32767]","runtime.unix.System.Runtime.Extensions":"(,4.3.32767]","runtime.win.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.win.System.Console":"(,4.3.32767]","runtime.win.System.Diagnostics.Debug":"(,4.3.32767]","runtime.win.System.IO.FileSystem":"(,4.3.32767]","runtime.win.System.Net.Primitives":"(,4.3.32767]","runtime.win.System.Net.Sockets":"(,4.3.32767]","runtime.win.System.Runtime.Extensions":"(,4.3.32767]","runtime.win10-arm-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-arm64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win10-x64-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-x86-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7-x86.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7.System.Private.Uri":"(,4.3.32767]","runtime.win8-arm.runtime.native.System.IO.Compression":"(,4.3.32767]","System.AppContext":"(,4.3.32767]","System.Buffers":"(,5.0.32767]","System.Collections":"(,4.3.32767]","System.Collections.Concurrent":"(,4.3.32767]","System.Collections.Immutable":"(,10.0.32767]","System.Collections.NonGeneric":"(,4.3.32767]","System.Collections.Specialized":"(,4.3.32767]","System.ComponentModel":"(,4.3.32767]","System.ComponentModel.Annotations":"(,4.3.32767]","System.ComponentModel.EventBasedAsync":"(,4.3.32767]","System.ComponentModel.Primitives":"(,4.3.32767]","System.ComponentModel.TypeConverter":"(,4.3.32767]","System.Console":"(,4.3.32767]","System.Data.Common":"(,4.3.32767]","System.Data.DataSetExtensions":"(,4.4.32767]","System.Diagnostics.Contracts":"(,4.3.32767]","System.Diagnostics.Debug":"(,4.3.32767]","System.Diagnostics.DiagnosticSource":"(,10.0.32767]","System.Diagnostics.FileVersionInfo":"(,4.3.32767]","System.Diagnostics.Process":"(,4.3.32767]","System.Diagnostics.StackTrace":"(,4.3.32767]","System.Diagnostics.TextWriterTraceListener":"(,4.3.32767]","System.Diagnostics.Tools":"(,4.3.32767]","System.Diagnostics.TraceSource":"(,4.3.32767]","System.Diagnostics.Tracing":"(,4.3.32767]","System.Drawing.Primitives":"(,4.3.32767]","System.Dynamic.Runtime":"(,4.3.32767]","System.Formats.Asn1":"(,10.0.32767]","System.Formats.Tar":"(,10.0.32767]","System.Globalization":"(,4.3.32767]","System.Globalization.Calendars":"(,4.3.32767]","System.Globalization.Extensions":"(,4.3.32767]","System.IO":"(,4.3.32767]","System.IO.Compression":"(,4.3.32767]","System.IO.Compression.ZipFile":"(,4.3.32767]","System.IO.FileSystem":"(,4.3.32767]","System.IO.FileSystem.AccessControl":"(,4.4.32767]","System.IO.FileSystem.DriveInfo":"(,4.3.32767]","System.IO.FileSystem.Primitives":"(,4.3.32767]","System.IO.FileSystem.Watcher":"(,4.3.32767]","System.IO.IsolatedStorage":"(,4.3.32767]","System.IO.MemoryMappedFiles":"(,4.3.32767]","System.IO.Pipelines":"(,10.0.32767]","System.IO.Pipes":"(,4.3.32767]","System.IO.Pipes.AccessControl":"(,5.0.32767]","System.IO.UnmanagedMemoryStream":"(,4.3.32767]","System.Linq":"(,4.3.32767]","System.Linq.AsyncEnumerable":"(,10.0.32767]","System.Linq.Expressions":"(,4.3.32767]","System.Linq.Parallel":"(,4.3.32767]","System.Linq.Queryable":"(,4.3.32767]","System.Memory":"(,5.0.32767]","System.Net.Http":"(,4.3.32767]","System.Net.Http.Json":"(,10.0.32767]","System.Net.NameResolution":"(,4.3.32767]","System.Net.NetworkInformation":"(,4.3.32767]","System.Net.Ping":"(,4.3.32767]","System.Net.Primitives":"(,4.3.32767]","System.Net.Requests":"(,4.3.32767]","System.Net.Security":"(,4.3.32767]","System.Net.ServerSentEvents":"(,10.0.32767]","System.Net.Sockets":"(,4.3.32767]","System.Net.WebHeaderCollection":"(,4.3.32767]","System.Net.WebSockets":"(,4.3.32767]","System.Net.WebSockets.Client":"(,4.3.32767]","System.Numerics.Vectors":"(,5.0.32767]","System.ObjectModel":"(,4.3.32767]","System.Private.DataContractSerialization":"(,4.3.32767]","System.Private.Uri":"(,4.3.32767]","System.Reflection":"(,4.3.32767]","System.Reflection.DispatchProxy":"(,6.0.32767]","System.Reflection.Emit":"(,4.7.32767]","System.Reflection.Emit.ILGeneration":"(,4.7.32767]","System.Reflection.Emit.Lightweight":"(,4.7.32767]","System.Reflection.Extensions":"(,4.3.32767]","System.Reflection.Metadata":"(,10.0.32767]","System.Reflection.Primitives":"(,4.3.32767]","System.Reflection.TypeExtensions":"(,4.3.32767]","System.Resources.Reader":"(,4.3.32767]","System.Resources.ResourceManager":"(,4.3.32767]","System.Resources.Writer":"(,4.3.32767]","System.Runtime":"(,4.3.32767]","System.Runtime.CompilerServices.Unsafe":"(,7.0.32767]","System.Runtime.CompilerServices.VisualC":"(,4.3.32767]","System.Runtime.Extensions":"(,4.3.32767]","System.Runtime.Handles":"(,4.3.32767]","System.Runtime.InteropServices":"(,4.3.32767]","System.Runtime.InteropServices.RuntimeInformation":"(,4.3.32767]","System.Runtime.Loader":"(,4.3.32767]","System.Runtime.Numerics":"(,4.3.32767]","System.Runtime.Serialization.Formatters":"(,4.3.32767]","System.Runtime.Serialization.Json":"(,4.3.32767]","System.Runtime.Serialization.Primitives":"(,4.3.32767]","System.Runtime.Serialization.Xml":"(,4.3.32767]","System.Security.AccessControl":"(,6.0.32767]","System.Security.Claims":"(,4.3.32767]","System.Security.Cryptography.Algorithms":"(,4.3.32767]","System.Security.Cryptography.Cng":"(,5.0.32767]","System.Security.Cryptography.Csp":"(,4.3.32767]","System.Security.Cryptography.Encoding":"(,4.3.32767]","System.Security.Cryptography.OpenSsl":"(,5.0.32767]","System.Security.Cryptography.Primitives":"(,4.3.32767]","System.Security.Cryptography.X509Certificates":"(,4.3.32767]","System.Security.Principal":"(,4.3.32767]","System.Security.Principal.Windows":"(,5.0.32767]","System.Security.SecureString":"(,4.3.32767]","System.Text.Encoding":"(,4.3.32767]","System.Text.Encoding.CodePages":"(,10.0.32767]","System.Text.Encoding.Extensions":"(,4.3.32767]","System.Text.Encodings.Web":"(,10.0.32767]","System.Text.Json":"(,10.0.32767]","System.Text.RegularExpressions":"(,4.3.32767]","System.Threading":"(,4.3.32767]","System.Threading.AccessControl":"(,10.0.32767]","System.Threading.Channels":"(,10.0.32767]","System.Threading.Overlapped":"(,4.3.32767]","System.Threading.Tasks":"(,4.3.32767]","System.Threading.Tasks.Dataflow":"(,10.0.32767]","System.Threading.Tasks.Extensions":"(,5.0.32767]","System.Threading.Tasks.Parallel":"(,4.3.32767]","System.Threading.Thread":"(,4.3.32767]","System.Threading.ThreadPool":"(,4.3.32767]","System.Threading.Timer":"(,4.3.32767]","System.ValueTuple":"(,4.5.32767]","System.Xml.ReaderWriter":"(,4.3.32767]","System.Xml.XDocument":"(,4.3.32767]","System.Xml.XmlDocument":"(,4.3.32767]","System.Xml.XmlSerializer":"(,4.3.32767]","System.Xml.XPath":"(,4.3.32767]","System.Xml.XPath.XDocument":"(,5.0.32767]"}}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/rider.project.model.nuget.info b/wolverine-nats/WolverineAndNats/Messages/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..fa6846c --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17700360419050773 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/Messages/obj/rider.project.restore.info b/wolverine-nats/WolverineAndNats/Messages/obj/rider.project.restore.info new file mode 100644 index 0000000..3e77946 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/Messages/obj/rider.project.restore.info @@ -0,0 +1 @@ +17700382162555005 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/PlainListener.csproj b/wolverine-nats/WolverineAndNats/PlainListener/PlainListener.csproj new file mode 100644 index 0000000..89d3e68 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/PlainListener.csproj @@ -0,0 +1,18 @@ + + + + net10.0 + enable + enable + + + + + + + + + + + + diff --git a/wolverine-nats/WolverineAndNats/PlainListener/Program.cs b/wolverine-nats/WolverineAndNats/PlainListener/Program.cs new file mode 100644 index 0000000..edbbc0d --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/Program.cs @@ -0,0 +1,44 @@ +using Messages; +using Wolverine; +using Wolverine.Nats; + +var builder = WebApplication.CreateBuilder(args); +builder.AddServiceDefaults(); +builder.UseWolverine(options => +{ + options.UseNats(builder.Configuration.GetConnectionString("nats") ?? + throw new Exception("No NATS connection string configured")) + .AutoProvision() + .UseJetStream(js => + { + js.MaxDeliver = 5; + js.AckWait = TimeSpan.FromSeconds(30); + }); + options.ListenToNatsSubject("messages-sent") + .BufferedInMemory(); + + options.ListenToNatsSubject("people.created") + .UseJetStream("PEOPLE", "plain-listener"); +}); +var app = builder.Build(); + + +app.MapDefaultEndpoints(); + +app.Run(); + +public static class MessageHandler +{ + public static void Handle(SendMessage message, ILogger logger) + { + logger.LogInformation($"Received message: {message.Message}"); + } + + + public static void Handle(UserDocument user, ILogger logger) + { + logger.LogInformation($"Received user: {user.Id} - {user.Name}"); + + } + +} diff --git a/wolverine-nats/WolverineAndNats/PlainListener/Properties/launchSettings.json b/wolverine-nats/WolverineAndNats/PlainListener/Properties/launchSettings.json new file mode 100644 index 0000000..b1def0a --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "http://plainlistener.dev.localhost:5070", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://plainlistener.dev.localhost:9210;http://plainlistener.dev.localhost:5070", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/wolverine-nats/WolverineAndNats/PlainListener/appsettings.Development.json b/wolverine-nats/WolverineAndNats/PlainListener/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/wolverine-nats/WolverineAndNats/PlainListener/appsettings.json b/wolverine-nats/WolverineAndNats/PlainListener/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/FastExpressionCompiler.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/FastExpressionCompiler.dll new file mode 100755 index 0000000..c10a22c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/FastExpressionCompiler.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Humanizer.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Humanizer.dll new file mode 100755 index 0000000..c9a7ef8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Humanizer.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/JasperFx.Events.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/JasperFx.Events.dll new file mode 100755 index 0000000..cac36d5 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/JasperFx.Events.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll new file mode 100755 index 0000000..cb1f7fd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/JasperFx.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/JasperFx.dll new file mode 100755 index 0000000..bb9accf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/JasperFx.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Messages.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Messages.dll new file mode 100644 index 0000000..95f77d9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Messages.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Messages.pdb b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Messages.pdb new file mode 100644 index 0000000..872a410 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Messages.pdb differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100755 index 0000000..e982c02 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll new file mode 100755 index 0000000..ca7722c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll new file mode 100755 index 0000000..ec6ffbf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100755 index 0000000..ab1265c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100755 index 0000000..dc1f35d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll new file mode 100755 index 0000000..8d0876e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll new file mode 100755 index 0000000..c56e604 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll new file mode 100755 index 0000000..6b7962d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100755 index 0000000..7135704 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll new file mode 100755 index 0000000..f54bd93 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll new file mode 100755 index 0000000..e9dbcea Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll new file mode 100755 index 0000000..f7faed9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll new file mode 100755 index 0000000..595c65d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll new file mode 100755 index 0000000..4f63d2a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll new file mode 100755 index 0000000..46dd33d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll new file mode 100755 index 0000000..a5749cd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll new file mode 100755 index 0000000..adb9d3f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll new file mode 100755 index 0000000..acbd79f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll new file mode 100755 index 0000000..5804085 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll new file mode 100755 index 0000000..f472139 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll new file mode 100755 index 0000000..3cbddc0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Abstractions.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Abstractions.dll new file mode 100755 index 0000000..a3c7d6a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Abstractions.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Core.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Core.dll new file mode 100755 index 0000000..39790f8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Hosting.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Hosting.dll new file mode 100755 index 0000000..deefdbf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.JetStream.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.JetStream.dll new file mode 100755 index 0000000..cb29478 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.JetStream.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll new file mode 100755 index 0000000..e1213bb Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.ObjectStore.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.ObjectStore.dll new file mode 100755 index 0000000..fd0c6d4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.ObjectStore.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll new file mode 100755 index 0000000..67c26e2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Services.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Services.dll new file mode 100755 index 0000000..d73c5d2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Services.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Simplified.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Simplified.dll new file mode 100755 index 0000000..6bce2aa Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Simplified.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Net.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Net.dll new file mode 100755 index 0000000..8445f86 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Net.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NewId.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NewId.dll new file mode 100755 index 0000000..33f918f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NewId.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Newtonsoft.Json.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Newtonsoft.Json.dll new file mode 100755 index 0000000..d035c38 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Newtonsoft.Json.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll new file mode 100755 index 0000000..f46a6fd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Api.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Api.dll new file mode 100755 index 0000000..2eddb36 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Api.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll new file mode 100755 index 0000000..5f1882e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll new file mode 100755 index 0000000..a817a7a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll new file mode 100755 index 0000000..fd25ac6 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll new file mode 100755 index 0000000..18c61ed Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll new file mode 100755 index 0000000..2d825dd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.dll new file mode 100755 index 0000000..7cc4ece Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener new file mode 100755 index 0000000..ce16f40 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.deps.json b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.deps.json new file mode 100644 index 0000000..8b24cbb --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.deps.json @@ -0,0 +1,1446 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "PlainListener/1.0.0": { + "dependencies": { + "Messages": "1.0.0", + "ServiceDefaults": "1.0.0", + "WolverineFx.Nats": "5.13.0" + }, + "runtime": { + "PlainListener.dll": {} + } + }, + "FastExpressionCompiler/5.3.0": { + "runtime": { + "lib/net9.0/FastExpressionCompiler.dll": { + "assemblyVersion": "5.3.0.0", + "fileVersion": "5.3.0.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "JasperFx/1.17.0": { + "dependencies": { + "FastExpressionCompiler": "5.3.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Polly.Core": "8.6.5", + "Spectre.Console": "0.53.0" + }, + "runtime": { + "lib/net10.0/JasperFx.dll": { + "assemblyVersion": "1.17.0.0", + "fileVersion": "1.17.0.0" + } + } + }, + "JasperFx.Events/1.17.0": { + "dependencies": { + "JasperFx": "1.17.0" + }, + "runtime": { + "lib/net10.0/JasperFx.Events.dll": { + "assemblyVersion": "1.17.0.0", + "fileVersion": "1.17.0.0" + } + } + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "dependencies": { + "JasperFx": "1.17.0", + "Microsoft.CodeAnalysis": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Scripting": "5.0.0" + }, + "runtime": { + "lib/net10.0/JasperFx.RuntimeCompiler.dll": { + "assemblyVersion": "4.3.2.0", + "fileVersion": "4.3.2.0" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.CodeAnalysis/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "5.0.0", + "Microsoft.CodeAnalysis.VisualBasic.Workspaces": "5.0.0", + "System.Composition": "9.0.0" + } + }, + "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.Scripting/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Common": "5.0.0", + "Microsoft.CodeAnalysis.Scripting.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.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.Scripting/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp.Scripting": "5.0.0" + } + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Common": "5.0.0", + "Microsoft.CodeAnalysis.VisualBasic": "5.0.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.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.Extensions.AmbientMetadata.Application/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Telemetry": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Http.Diagnostics": "10.1.0", + "Microsoft.Extensions.Resilience": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Diagnostics.ExceptionSummarization": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0", + "Polly.Extensions": "8.4.2", + "Polly.RateLimiting": "8.4.2" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "dependencies": { + "Microsoft.Extensions.ServiceDiscovery.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "dependencies": { + "Microsoft.Extensions.AmbientMetadata.Application": "10.1.0", + "Microsoft.Extensions.DependencyInjection.AutoActivation": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Compliance.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "NATS.Client.Abstractions/2.7.0": { + "runtime": { + "lib/net8.0/NATS.Client.Abstractions.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Core/2.7.0": { + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Core.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Hosting/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.JetStream/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.KeyValueStore/2.7.0": { + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.ObjectStore/2.7.0": { + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Serializers.Json/2.7.0": { + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Services/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Services.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Client.Simplified/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NATS.Net/2.7.0": { + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Hosting": "2.7.0", + "NATS.Client.JetStream": "2.7.0", + "NATS.Client.KeyValueStore": "2.7.0", + "NATS.Client.ObjectStore": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0", + "NATS.Client.Services": "2.7.0", + "NATS.Client.Simplified": "2.7.0" + }, + "runtime": { + "lib/net8.0/NATS.Net.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "NewId/4.0.1": { + "runtime": { + "lib/net6.0/NewId.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.0.1.0" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "OpenTelemetry/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Api/1.14.0": { + "runtime": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "assemblyVersion": "1.14.0.761", + "fileVersion": "1.14.0.761" + } + } + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "assemblyVersion": "1.14.0.774", + "fileVersion": "1.14.0.774" + } + } + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "assemblyVersion": "1.14.0.775", + "fileVersion": "1.14.0.775" + } + } + }, + "Polly.Core/8.6.5": { + "runtime": { + "lib/net8.0/Polly.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.6.5.5194" + } + } + }, + "Polly.Extensions/8.4.2": { + "dependencies": { + "Polly.Core": "8.6.5" + }, + "runtime": { + "lib/net8.0/Polly.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + }, + "Polly.RateLimiting/8.4.2": { + "dependencies": { + "Polly.Core": "8.6.5" + }, + "runtime": { + "lib/net8.0/Polly.RateLimiting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + }, + "Spectre.Console/0.53.0": { + "runtime": { + "lib/net9.0/Spectre.Console.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.53.0.0" + } + } + }, + "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" + } + } + }, + "WolverineFx/5.13.0": { + "dependencies": { + "JasperFx": "1.17.0", + "JasperFx.Events": "1.17.0", + "JasperFx.RuntimeCompiler": "4.3.2", + "NewId": "4.0.1", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net10.0/Wolverine.dll": { + "assemblyVersion": "5.13.0.0", + "fileVersion": "5.13.0.0" + } + } + }, + "WolverineFx.Nats/5.13.0": { + "dependencies": { + "NATS.Net": "2.7.0", + "WolverineFx": "5.13.0" + }, + "runtime": { + "lib/net10.0/Wolverine.Nats.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "Messages/1.0.0": { + "runtime": { + "Messages.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "ServiceDefaults/1.0.0": { + "dependencies": { + "Microsoft.Extensions.Http.Resilience": "10.1.0", + "Microsoft.Extensions.ServiceDiscovery": "10.1.0", + "OpenTelemetry.Exporter.OpenTelemetryProtocol": "1.14.0", + "OpenTelemetry.Extensions.Hosting": "1.14.0", + "OpenTelemetry.Instrumentation.AspNetCore": "1.14.0", + "OpenTelemetry.Instrumentation.Http": "1.14.0", + "OpenTelemetry.Instrumentation.Runtime": "1.14.0" + }, + "runtime": { + "ServiceDefaults.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "PlainListener/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "FastExpressionCompiler/5.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XRmGW48Gdm7B70WUtTJJUnmuc8jRDmOhhjG/a3rix/nXChnrkETaSvA0j2VrcsH4MNeYLe60LA5o5JABmbneag==", + "path": "fastexpressioncompiler/5.3.0", + "hashPath": "fastexpressioncompiler.5.3.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" + }, + "JasperFx/1.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d0QqJ33u1IIyG88p8xMi1X9DtfL5Zyq0ivxn5KWJRaVSS3gJ/q9Ws0FopQiG4mxDl/w7rbnSmuFpu4iSimP5IQ==", + "path": "jasperfx/1.17.0", + "hashPath": "jasperfx.1.17.0.nupkg.sha512" + }, + "JasperFx.Events/1.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sLvOvE5ABMcATyFLVIKDHeWbjVlhPL8TuK3To1cUdX452Xk6zyEAoW8u/UHfDr4meI9rXoMu4a5GaG8xDjp50A==", + "path": "jasperfx.events/1.17.0", + "hashPath": "jasperfx.events.1.17.0.nupkg.sha512" + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zA8iKRvnM1doCM7QqKXfit+FO9LF9hZ+BPoxe4L/+wf6RlARUMpV6HYjr1LWqogT2T5RzC5iO9r9HITl94MonA==", + "path": "jasperfx.runtimecompiler/4.3.2", + "hashPath": "jasperfx.runtimecompiler.4.3.2.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "path": "microsoft.bcl.timeprovider/10.0.0", + "hashPath": "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7vItpZDkGm4NS2wp4P1S07Z1e61LaBWDW5tPXE1c6z5/x9KbF2RymhAPoYg7Qoiyk7odEZ6EjBEJ47p3dBpYQ==", + "path": "microsoft.codeanalysis/5.0.0", + "hashPath": "microsoft.codeanalysis.5.0.0.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.Scripting/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1sGloRYbG3743ut/+vuXy9/WaRQTm7mDtp71rBaVSmKpFntvo5Hcro1ubg6/3SeeLtiFYJl7V3Dk0Fo3CGlnHA==", + "path": "microsoft.codeanalysis.csharp.scripting/5.0.0", + "hashPath": "microsoft.codeanalysis.csharp.scripting.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.Scripting/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/KgZdm6kRTrR/O2jqXxU5GWREYhtVmqcNWczyPt8hsQkFGFK/C6CrLWfG44FCUn0aPHGDRBHYjXlGosQ/H8oXw==", + "path": "microsoft.codeanalysis.scripting/5.0.0", + "hashPath": "microsoft.codeanalysis.scripting.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XTulByMNxqXGCgMeODUoG2h4oK4/nLv1BcawRVcjv+UZHMpoaymtdaq3cJqlNrEvYEcbU48g5swJ3RhY1m3fBg==", + "path": "microsoft.codeanalysis.scripting.common/5.0.0", + "hashPath": "microsoft.codeanalysis.scripting.common.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sUBWvHs2HgHGA+b716dgjS7JiXGen5ntyohAurPLR1ZiZzFp3FlnVA7GrMTqVGdVJTVqiC3c4K8k1bk0gj6IPg==", + "path": "microsoft.codeanalysis.visualbasic/5.0.0", + "hashPath": "microsoft.codeanalysis.visualbasic.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nom4UuZVEZGaV6Qa+joJR/BawXZMtflvQJFKc0SaUc3LrZr/8LmRY5cn8mbvLOWIVfwWkQz+cVE6eQKu9qa65g==", + "path": "microsoft.codeanalysis.visualbasic.workspaces/5.0.0", + "hashPath": "microsoft.codeanalysis.visualbasic.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.Extensions.AmbientMetadata.Application/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+T2Ax2fgw7T7nlhio+ZtgSyYGfevHCOXNPqO0vxA+f2HmbtfwAnIwHEE/jm1/4uFRDDP8PEENpxAhbucg+wUWg==", + "path": "microsoft.extensions.ambientmetadata.application/10.1.0", + "hashPath": "microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M3JWrgZMkVzyEybZzNkTiC/e8U1ipXTi8xm8bj+PHHp4AcEmhmIEqnxRS0VHVCKZjLkOPt2hY2CIisUFQ6gqLA==", + "path": "microsoft.extensions.compliance.abstractions/10.1.0", + "hashPath": "microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-O052pqWkdVNXaj3n9E4x6nLL7sG860434gLh7XHhFp/KpyAY9/rCk9NJUinYfQnDkAA8UgCHimVZz+lTjnEwzQ==", + "path": "microsoft.extensions.dependencyinjection.autoactivation/10.1.0", + "hashPath": "microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q76peCoP6vXXf95RLFeMGzcaQs8l3lk+n/ZOTi2i+OLd3R0HzzB0Fswjua4NY1viIbA1s6l1mqRjQbxY7+Jylw==", + "path": "microsoft.extensions.diagnostics.exceptionsummarization/10.1.0", + "hashPath": "microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RA1Egggf5o7/5AI5TIxOmmV7T06X2jvA9nSlJazU++X/pgu48EDAjDflTq/+kAk0FHUm9ZpAiBVdWfOP2opAbQ==", + "path": "microsoft.extensions.http.diagnostics/10.1.0", + "hashPath": "microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rwDoQBB93yQjd1XtcZBnOLRX23LW7Z49TIAp1sn7i2r/pW3y4iB8E+EEL0ZyOPuEZxT9xEVN9y39KWlG1FDPkQ==", + "path": "microsoft.extensions.http.resilience/10.1.0", + "hashPath": "microsoft.extensions.http.resilience.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NzA+c4m2q92qZPjiZLFm+ToeQC3KFqzP+Dr/1pV5y9d7H/hDM2Yxno0kcw5DGpSvS0s6Pwsp+FWMdk/kXBPZ7g==", + "path": "microsoft.extensions.resilience/10.1.0", + "hashPath": "microsoft.extensions.resilience.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b78YWSrwXQI/pSzKIe/TO1lC2FcBfrux6+AmgTRStKcJYHNU1r8ii1GICRNv37CobIcaW8w33LW+xmThqIG/bg==", + "path": "microsoft.extensions.servicediscovery/10.1.0", + "hashPath": "microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uNPOkiRJx6J01aoHQBoX+QR6ZmQpIYdg/OO9+x/M3lkY6JTHBxp3pohcOyEe9l77MT8+3fVEP84/Uw+JODkA0Q==", + "path": "microsoft.extensions.servicediscovery.abstractions/10.1.0", + "hashPath": "microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OFnpwOBRZZXMMySvM7eJsEQ87ED5SaRbxHg/an1u89MWHw0mXUUbx5WPb5XFN0uS8kJPe6M+ZMRYwRP0nJeDPA==", + "path": "microsoft.extensions.telemetry/10.1.0", + "hashPath": "microsoft.extensions.telemetry.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0jAF2b0YJ1LOtunmo3PzSoJOx/ThhcGH5Y5kaV0jeM0BUlyr9orjg+fH5YabqnPSmwcN/DSTj0iZ7UwDISn5ag==", + "path": "microsoft.extensions.telemetry.abstractions/10.1.0", + "hashPath": "microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512" + }, + "NATS.Client.Abstractions/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DQ6x64lyH7Li2jS8/IV+XIEkhnhE9KENQ5luAoYTLPNEmFoIVcWN8RQSHjyRJviu4RGbw6AvHmlxvehnSqJk8w==", + "path": "nats.client.abstractions/2.7.0", + "hashPath": "nats.client.abstractions.2.7.0.nupkg.sha512" + }, + "NATS.Client.Core/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/l3nqhk6mfG50QjjvwKMN+kSUgJ27fmoaXAXXjrB13YpCbcl20c7Mj82KsutbjmxMVKSdb1mc7Wvj2Ahr03e8A==", + "path": "nats.client.core/2.7.0", + "hashPath": "nats.client.core.2.7.0.nupkg.sha512" + }, + "NATS.Client.Hosting/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P0OoQWqhKPavjmkO23mOdqHsm4GmO9OdjlTrWTpvQes67DLgxmYTjGu1PYK0pi/XJuuiUeZdKhINt6XvygaqYg==", + "path": "nats.client.hosting/2.7.0", + "hashPath": "nats.client.hosting.2.7.0.nupkg.sha512" + }, + "NATS.Client.JetStream/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MHT27WsvKCPSQ234WO+PnaDH0+rAs1W70BPnSvt/4iZ/Dunfx8oQHSGskfAz62R1U2ZGBTbucjkPCJqjCep0bA==", + "path": "nats.client.jetstream/2.7.0", + "hashPath": "nats.client.jetstream.2.7.0.nupkg.sha512" + }, + "NATS.Client.KeyValueStore/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vmpy1y3fU0TzrOhEtS+9NajcjY1R08tHR7GQIIXB2IE2k0vh1rHLChUtrMypvTlng90KHGhGPsr/EzJnu6hqzA==", + "path": "nats.client.keyvaluestore/2.7.0", + "hashPath": "nats.client.keyvaluestore.2.7.0.nupkg.sha512" + }, + "NATS.Client.ObjectStore/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UqD6MjojKm2LCK+wTGSN/lsDe9of9qygFWGSAw1m6p9eoey1HnEVH0MKqItqAKUgsuyaaZaB999/S+z6uugGQg==", + "path": "nats.client.objectstore/2.7.0", + "hashPath": "nats.client.objectstore.2.7.0.nupkg.sha512" + }, + "NATS.Client.Serializers.Json/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-13R0EvJae6dXhcfdBX29LadDdc+0SPWVp0HdAQH4D7H3Eyd2/0jxgrLNH9nlZM8lo3tSk/iDojP7e+VQjlzM1w==", + "path": "nats.client.serializers.json/2.7.0", + "hashPath": "nats.client.serializers.json.2.7.0.nupkg.sha512" + }, + "NATS.Client.Services/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EEs4ibYIwg/pP/bBPhn+K3eDfNBehTisGs2L+eZv7e+eHfBHcjSvAfbEhhyACMuFSuTROWpBaiFAH4xCWgdnbA==", + "path": "nats.client.services/2.7.0", + "hashPath": "nats.client.services.2.7.0.nupkg.sha512" + }, + "NATS.Client.Simplified/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8HU5stAU/xpQr7OyGaZbkjJGeq7hcukUUdcme4sOBiSUrjWpfgJTYeFmwFQHALFah9dkm1EYrHp1RND6lLSJTA==", + "path": "nats.client.simplified/2.7.0", + "hashPath": "nats.client.simplified.2.7.0.nupkg.sha512" + }, + "NATS.Net/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-89IrKEUb/kOzzcQ+J5SKAKmlRybRklllZKa1/LuBNkn3BblIUHYXku6JibN1wWr02HgJGH+OMYBZ0SVX1+HnCA==", + "path": "nats.net/2.7.0", + "hashPath": "nats.net.2.7.0.nupkg.sha512" + }, + "NewId/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jegBasNndmG21G3BmT51suFDCIz/sLN81j+IxmkZ4iWoaDi8LygeHiyNnYbXz5OQh9nCRJFIx1+PJrlYi1Gc9Q==", + "path": "newid/4.0.1", + "hashPath": "newid.4.0.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" + }, + "OpenTelemetry/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aiPBAr1+0dPDItH++MQQr5UgMf4xiybruzNlAoYYMYN3UUk+mGRcoKuZy4Z4rhhWUZIpK2Xhe7wUUXSTM32duQ==", + "path": "opentelemetry/1.14.0", + "hashPath": "opentelemetry.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Api/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-foHci6viUw1f3gUB8qzz3Rk02xZIWMo299X0rxK0MoOWok/3dUVru+KKdY7WIoSHwRGpxGKkmAz9jIk2RFNbsQ==", + "path": "opentelemetry.api/1.14.0", + "hashPath": "opentelemetry.api.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/lxOM92v+zU5I0rGl5tXAGz6EJtxk2MvzZ0VN6F6L5pMqT6s6RCXnGWXg6fW+vtZJsllBlQaf/VLPTzgefJpg==", + "path": "opentelemetry.api.providerbuilderextensions/1.14.0", + "hashPath": "opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7ELExeje+T/KOywHuHwZBGQNtYlepUaYRFXWgoEaT1iKpFJVwOlE1Y2+uqHI2QQmah0Ue+XgRmDy924vWHfJ6Q==", + "path": "opentelemetry.exporter.opentelemetryprotocol/1.14.0", + "hashPath": "opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZAxkCIa3Q3YWZ1sGrolXfkhPqn2PFSz2Cel74em/fATZgY5ixlw6MQp2icmqKCz4C7M1W2G0b92K3rX8mOtFRg==", + "path": "opentelemetry.extensions.hosting/1.14.0", + "hashPath": "opentelemetry.extensions.hosting.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NQAQpFa3a4ofPUYwxcwtNPGpuRNwwx1HM7MnLEESYjYkhfhER+PqqGywW65rWd7bJEc1/IaL+xbmHH99pYDE0A==", + "path": "opentelemetry.instrumentation.aspnetcore/1.14.0", + "hashPath": "opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uH8X1fYnywrgaUrSbemKvFiFkBwY7ZbBU7Wh4A/ORQmdpF3G/5STidY4PlK4xYuIv9KkdMXH/vkpvzQcayW70g==", + "path": "opentelemetry.instrumentation.http/1.14.0", + "hashPath": "opentelemetry.instrumentation.http.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6o4JDOQaKv6bInAYZxuyxxfMKr6hFpwLnKEgQ+q+oBNA9Fm1sysjFCOzRzk7U0WD86LsRPXX+chv1vJIg7cfg==", + "path": "opentelemetry.instrumentation.runtime/1.14.0", + "hashPath": "opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512" + }, + "Polly.Core/8.6.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t+sUVrIwvo7UmsgHGgOG9F0GDZSRIm47u2ylH17Gvcv1q5hNEwgD5GoBlFyc0kh/pebmPyrAgvGsR/65ZBaXlg==", + "path": "polly.core/8.6.5", + "hashPath": "polly.core.8.6.5.nupkg.sha512" + }, + "Polly.Extensions/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GZ9vRVmR0jV2JtZavt+pGUsQ1O1cuRKG7R7VOZI6ZDy9y6RNPvRvXK1tuS4ffUrv8L0FTea59oEuQzgS0R7zSA==", + "path": "polly.extensions/8.4.2", + "hashPath": "polly.extensions.8.4.2.nupkg.sha512" + }, + "Polly.RateLimiting/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehTImQ/eUyO07VYW2WvwSmU9rRH200SKJ/3jku9rOkyWE0A2JxNFmAVms8dSn49QLSjmjFRRSgfNyOgr/2PSmA==", + "path": "polly.ratelimiting/8.4.2", + "hashPath": "polly.ratelimiting.8.4.2.nupkg.sha512" + }, + "Spectre.Console/0.53.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m2iv8Egfywp7FaNLKCmCFHbSf36D4ctzZKvlAK9NXMyGLh6L+CnrZWK8o+LOYsoAS1jtoHn0W1BT0W8vuq/FUw==", + "path": "spectre.console/0.53.0", + "hashPath": "spectre.console.0.53.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" + }, + "WolverineFx/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FB5Yo6M0SyQWDgHz2EjwQcflhrjRd9mERV6/N6WHQHJO1kW8fSxEIcOHndhikcVkZvmhUdwu5PW4V4ypEmpKTA==", + "path": "wolverinefx/5.13.0", + "hashPath": "wolverinefx.5.13.0.nupkg.sha512" + }, + "WolverineFx.Nats/5.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8GN8uwRX56vp3fN8KSQqrEYlAtAKoOz1ZpCckZCsr15sP8eoE+Sa5wfzkGQ186cAYnkBa2P0yMlr1QRCmHYaYQ==", + "path": "wolverinefx.nats/5.13.0", + "hashPath": "wolverinefx.nats.5.13.0.nupkg.sha512" + }, + "Messages/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "ServiceDefaults/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.dll new file mode 100644 index 0000000..351ef85 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.pdb b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.pdb new file mode 100644 index 0000000..9f72618 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.pdb differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.runtimeconfig.json b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.runtimeconfig.json new file mode 100644 index 0000000..ed5401a --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "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.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.staticwebassets.endpoints.json b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Polly.Core.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Polly.Core.dll new file mode 100755 index 0000000..57eae20 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Polly.Core.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Polly.Extensions.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Polly.Extensions.dll new file mode 100755 index 0000000..312cf8e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Polly.Extensions.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Polly.RateLimiting.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Polly.RateLimiting.dll new file mode 100755 index 0000000..e29985e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Polly.RateLimiting.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ServiceDefaults.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ServiceDefaults.dll new file mode 100644 index 0000000..f8273ad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ServiceDefaults.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ServiceDefaults.pdb b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ServiceDefaults.pdb new file mode 100644 index 0000000..eafc129 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ServiceDefaults.pdb differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Spectre.Console.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Spectre.Console.dll new file mode 100755 index 0000000..d1b571d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Spectre.Console.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.AttributedModel.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.AttributedModel.dll new file mode 100755 index 0000000..2664688 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.AttributedModel.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.Convention.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.Convention.dll new file mode 100755 index 0000000..40f6537 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.Convention.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.Hosting.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.Hosting.dll new file mode 100755 index 0000000..b1cce85 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.Hosting.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.Runtime.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.Runtime.dll new file mode 100755 index 0000000..c30bbbb Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.Runtime.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.TypedParts.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.TypedParts.dll new file mode 100755 index 0000000..1556319 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.TypedParts.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Wolverine.Nats.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Wolverine.Nats.dll new file mode 100755 index 0000000..009f0d3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Wolverine.Nats.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Wolverine.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Wolverine.dll new file mode 100755 index 0000000..ad44ea4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Wolverine.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/appsettings.Development.json b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/appsettings.json b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..5026d91 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..fa3b62e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..de0032e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..f5dae0b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..c3e5620 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..8dd116e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..9c9e5c3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..fe7a8c8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..87e10b0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..3a2887c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..3bef0e7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..1ac21c1 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..201b964 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..7d60e32 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..5e1cc23 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..71227fc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..ce491fd Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..3a50733 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..7b14221 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..eabc7a9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..ccd63e9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..2aa2e42 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..de991ad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..ffe4e81 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..bdf9041 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..4eb6122 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..35b8d36 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..6224d3d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..8153da0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..24a6fc9 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..ae46f62 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..2870de8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..b824665 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..31d7841 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..4f5ea19 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..a128ff1 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..5ef0d16 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..83f0214 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c62df50 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..738856c Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..db113c0 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..118b9b8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..8d5c43a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..c8b03b8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..76732af Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..36a413b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c88dd66 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..7400f4a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..87b7088 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..036e931 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..7305396 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..7e0e174 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..72007ca Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..8b9768e Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..adead79 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9f8ffe3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..93476d2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..e318959 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..89c6efc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..a1d9ec3 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..1e49360 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..6d9c7ac Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..82b3fa2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9db06d4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..e75f09f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..8be5aa7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..a263248 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..5280b0d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..1d0ce8a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..f4d5744 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..3a16748 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..8b9f7ce Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..33a7463 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..bd7b2a2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..6feb49f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..5004e0d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..3049968 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..5f5481b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..413ac6a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..b5e3f64 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..3e0a242 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..c219a07 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..6697523 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..506eb95 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..6095bb4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..65c17bf Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..28739df Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..e5f35c2 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..b64fcad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..215fe77 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..53d30cc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..a71ab8b Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..89ab7dc Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..b317bb4 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c1b4544 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..712df48 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll new file mode 100755 index 0000000..64f8c0f Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..d96f8c8 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..23c31b7 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100755 index 0000000..8c58451 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll new file mode 100755 index 0000000..129e754 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll new file mode 100755 index 0000000..75fb189 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..7d3ed5d Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..14fee21 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainLis.90C66129.Up2Date b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainLis.90C66129.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.AssemblyInfo.cs b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.AssemblyInfo.cs new file mode 100644 index 0000000..4fee35e --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("PlainListener")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+029fc808861743407d1014ffb7cabf40b443645a")] +[assembly: System.Reflection.AssemblyProductAttribute("PlainListener")] +[assembly: System.Reflection.AssemblyTitleAttribute("PlainListener")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.AssemblyInfoInputs.cache b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fbb0765 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +c06341e4fe245187a125ea9eba8cea5e7e2ed7840658fa332c575d1d7f7694d6 diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.GeneratedMSBuildEditorConfig.editorconfig b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d5d754c --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,31 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFramework = net10.0 +build_property.TargetPlatformMinVersion = +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.RootNamespace = PlainListener +build_property.RootNamespace = PlainListener +build_property.ProjectDir = /Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.GlobalUsings.g.cs b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.GlobalUsings.g.cs new file mode 100644 index 0000000..5e6145d --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.MvcApplicationPartsAssemblyInfo.cache b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.assets.cache b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.assets.cache new file mode 100644 index 0000000..5edb072 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.assets.cache differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.csproj.AssemblyReference.cache b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.csproj.AssemblyReference.cache new file mode 100644 index 0000000..70e1b70 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.csproj.AssemblyReference.cache differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.csproj.CoreCompileInputs.cache b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..2af1951 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7f5b42108e3ad3cc6ae82b06efa5b502a1d72c34d7d8391dcd538dd03a2aed7a diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.csproj.FileListAbsolute.txt b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..55df5a8 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.csproj.FileListAbsolute.txt @@ -0,0 +1,196 @@ +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/appsettings.Development.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/appsettings.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.staticwebassets.endpoints.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.deps.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.runtimeconfig.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/PlainListener.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/FastExpressionCompiler.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Humanizer.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/JasperFx.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/JasperFx.Events.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/JasperFx.RuntimeCompiler.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Bcl.TimeProvider.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.Scripting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Http.Diagnostics.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Http.Resilience.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Resilience.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Abstractions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.JetStream.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.KeyValueStore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.ObjectStore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Serializers.Json.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Services.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Client.Simplified.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NATS.Net.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/NewId.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Newtonsoft.Json.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Api.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Polly.Core.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Polly.Extensions.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Polly.RateLimiting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Spectre.Console.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.AttributedModel.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.Convention.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.Hosting.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.Runtime.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/System.Composition.TypedParts.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Wolverine.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Wolverine.Nats.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Messages.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ServiceDefaults.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/Messages.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/bin/Debug/net10.0/ServiceDefaults.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.csproj.AssemblyReference.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/rpswa.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.GeneratedMSBuildEditorConfig.editorconfig +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.AssemblyInfoInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.AssemblyInfo.cs +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.csproj.CoreCompileInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.MvcApplicationPartsAssemblyInfo.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.sourcelink.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/rjimswa.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/scopedcss/bundle/PlainListener.styles.css +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/staticwebassets.build.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/staticwebassets.build.json.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/staticwebassets.development.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/swae.build.ex.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainLis.90C66129.Up2Date +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/refint/PlainListener.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.genruntimeconfig.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/ref/PlainListener.dll diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.dll b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.dll new file mode 100644 index 0000000..351ef85 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.genruntimeconfig.cache b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.genruntimeconfig.cache new file mode 100644 index 0000000..6b98362 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.genruntimeconfig.cache @@ -0,0 +1 @@ +f25acfd663a7204009bda760869335af2db5b4f18e9138191902f4971f55c22f diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.pdb b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.pdb new file mode 100644 index 0000000..9f72618 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.pdb differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.sourcelink.json b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.sourcelink.json new file mode 100644 index 0000000..a43e21e --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/PlainListener.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/Users/jeffrygonzalez/work/reference/*":"https://raw.githubusercontent.com/HypertheoryTraining/reference/029fc808861743407d1014ffb7cabf40b443645a/*"}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/apphost b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/apphost new file mode 100755 index 0000000..ce16f40 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/apphost differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/ref/PlainListener.dll b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/ref/PlainListener.dll new file mode 100644 index 0000000..e597036 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/ref/PlainListener.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/refint/PlainListener.dll b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/refint/PlainListener.dll new file mode 100644 index 0000000..e597036 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/refint/PlainListener.dll differ diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..929cd72 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"DmU3MMT0I0FUpnWSr614PvPsEEAWZipNLcklLIKjxCk=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["OlL5cOSwnnDhZpcFX8z5qSHWK6HhpEjtacToYGvHNFs=","L32AafeXZoJLQf5qJjLOTbdJJNCz/rjgmGCbDIOl6cE=","yLWEHy\u002BOSBRj189l/gHI\u002Bb8Yzdt0v/P4LQWMBxX1zCY=","l5Oj2P0z81gsLCfQWXuyLIdyHyKFFGpyq6zl6yvg11o="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..7b949bd --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"7PWk9phUw+9A7IEobQQAbj55Prk0wqOuSmLG74ZGqok=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["OlL5cOSwnnDhZpcFX8z5qSHWK6HhpEjtacToYGvHNFs=","L32AafeXZoJLQf5qJjLOTbdJJNCz/rjgmGCbDIOl6cE=","yLWEHy\u002BOSBRj189l/gHI\u002Bb8Yzdt0v/P4LQWMBxX1zCY=","l5Oj2P0z81gsLCfQWXuyLIdyHyKFFGpyq6zl6yvg11o="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/rpswa.dswa.cache.json b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..f87bcdd --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"FQEXNVTVFDFC5O8juIc/nB0cqjEQSuQK1VqmLH0kb24=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["OlL5cOSwnnDhZpcFX8z5qSHWK6HhpEjtacToYGvHNFs=","L32AafeXZoJLQf5qJjLOTbdJJNCz/rjgmGCbDIOl6cE="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/staticwebassets.build.json b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..659ae80 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"3uBqvRFVavfeBTsUJTGpg8wP+ieu/KgRkC73LxfXEr4=","Source":"PlainListener","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/staticwebassets.build.json.cache b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..0c9d9c0 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +3uBqvRFVavfeBTsUJTGpg8wP+ieu/KgRkC73LxfXEr4= \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/swae.build.ex.cache b/wolverine-nats/WolverineAndNats/PlainListener/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/PlainListener.csproj.nuget.dgspec.json b/wolverine-nats/WolverineAndNats/PlainListener/obj/PlainListener.csproj.nuget.dgspec.json new file mode 100644 index 0000000..4ea4a31 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/PlainListener.csproj.nuget.dgspec.json @@ -0,0 +1,1336 @@ +{ + "format": 1, + "restore": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/PlainListener.csproj": {} + }, + "projects": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj", + "projectName": "Messages", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/PlainListener.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/PlainListener.csproj", + "projectName": "PlainListener", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/PlainListener.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj" + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "WolverineFx.Nats": { + "target": "Package", + "version": "[5.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj", + "projectName": "ServiceDefaults", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.Extensions.Http.Resilience": { + "target": "Package", + "version": "[10.1.0, )" + }, + "Microsoft.Extensions.ServiceDiscovery": { + "target": "Package", + "version": "[10.1.0, )" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Extensions.Hosting": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.AspNetCore": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.Http": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.Runtime": { + "target": "Package", + "version": "[1.14.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/PlainListener.csproj.nuget.g.props b/wolverine-nats/WolverineAndNats/PlainListener/obj/PlainListener.csproj.nuget.g.props new file mode 100644 index 0000000..1e40171 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/PlainListener.csproj.nuget.g.props @@ -0,0 +1,22 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/jeffrygonzalez/.nuget/packages/ + /Users/jeffrygonzalez/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + + + /Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.analyzers/3.11.0 + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/PlainListener.csproj.nuget.g.targets b/wolverine-nats/WolverineAndNats/PlainListener/obj/PlainListener.csproj.nuget.g.targets new file mode 100644 index 0000000..f2215c5 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/PlainListener.csproj.nuget.g.targets @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/project.assets.json b/wolverine-nats/WolverineAndNats/PlainListener/obj/project.assets.json new file mode 100644 index 0000000..4672166 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/project.assets.json @@ -0,0 +1,4327 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "FastExpressionCompiler/5.3.0": { + "type": "package", + "compile": { + "lib/net9.0/FastExpressionCompiler.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/FastExpressionCompiler.dll": { + "related": ".xml" + } + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "ImTools/4.0.0": { + "type": "package", + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + } + }, + "JasperFx/1.17.0": { + "type": "package", + "dependencies": { + "FastExpressionCompiler": "5.3.0", + "ImTools": "4.0.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Polly.Core": "8.6.5", + "Spectre.Console": "0.53.0" + }, + "compile": { + "lib/net10.0/JasperFx.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/JasperFx.dll": { + "related": ".xml" + } + } + }, + "JasperFx.Events/1.17.0": { + "type": "package", + "dependencies": { + "JasperFx": "1.17.0" + }, + "compile": { + "lib/net10.0/JasperFx.Events.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/JasperFx.Events.dll": { + "related": ".xml" + } + } + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "type": "package", + "dependencies": { + "JasperFx": "1.17.0", + "Microsoft.CodeAnalysis": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Scripting": "5.0.0" + }, + "compile": { + "lib/net10.0/JasperFx.RuntimeCompiler.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/JasperFx.RuntimeCompiler.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.CodeAnalysis/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "[5.0.0]", + "Microsoft.CodeAnalysis.VisualBasic.Workspaces": "[5.0.0]", + "System.Composition": "9.0.0" + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "type": "package", + "build": { + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {}, + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {} + } + }, + "Microsoft.CodeAnalysis.Common/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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.Scripting/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp": "[5.0.0]", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "Microsoft.CodeAnalysis.Scripting.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp": "[5.0.0]", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[5.0.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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.Scripting/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp.Scripting": "[5.0.0]" + } + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "Microsoft.CodeAnalysis.VisualBasic": "[5.0.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[5.0.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[5.0.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "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.Extensions.AmbientMetadata.Application/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Telemetry": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Http.Diagnostics": "10.1.0", + "Microsoft.Extensions.Resilience": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Http.Resilience.targets": {} + } + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Diagnostics.ExceptionSummarization": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0", + "Polly.Extensions": "8.4.2", + "Polly.RateLimiting": "8.4.2" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ServiceDiscovery.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.AmbientMetadata.Application": "10.1.0", + "Microsoft.Extensions.DependencyInjection.AutoActivation": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Compliance.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.props": {}, + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.targets": {} + } + }, + "NATS.Client.Abstractions/2.7.0": { + "type": "package", + "compile": { + "lib/net8.0/NATS.Client.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Abstractions.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Core/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Core.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Hosting/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Hosting.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.JetStream/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.JetStream.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.KeyValueStore/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.KeyValueStore.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.ObjectStore/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.JetStream": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.ObjectStore.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Serializers.Json/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Abstractions": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Serializers.Json.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Services/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Services.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Services.dll": { + "related": ".xml" + } + } + }, + "NATS.Client.Simplified/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Client.Simplified.dll": { + "related": ".xml" + } + } + }, + "NATS.Net/2.7.0": { + "type": "package", + "dependencies": { + "NATS.Client.Core": "2.7.0", + "NATS.Client.Hosting": "2.7.0", + "NATS.Client.JetStream": "2.7.0", + "NATS.Client.KeyValueStore": "2.7.0", + "NATS.Client.ObjectStore": "2.7.0", + "NATS.Client.Serializers.Json": "2.7.0", + "NATS.Client.Services": "2.7.0", + "NATS.Client.Simplified": "2.7.0" + }, + "compile": { + "lib/net8.0/NATS.Net.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/NATS.Net.dll": { + "related": ".xml" + } + } + }, + "NewId/4.0.1": { + "type": "package", + "compile": { + "lib/net6.0/NewId.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/NewId.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Api/1.14.0": { + "type": "package", + "compile": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "related": ".xml" + } + } + }, + "Polly.Core/8.6.5": { + "type": "package", + "compile": { + "lib/net8.0/Polly.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Polly.Extensions/8.4.2": { + "type": "package", + "dependencies": { + "Polly.Core": "8.4.2" + }, + "compile": { + "lib/net8.0/Polly.Extensions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.Extensions.dll": { + "related": ".pdb;.xml" + } + } + }, + "Polly.RateLimiting/8.4.2": { + "type": "package", + "dependencies": { + "Polly.Core": "8.4.2" + }, + "compile": { + "lib/net8.0/Polly.RateLimiting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.RateLimiting.dll": { + "related": ".pdb;.xml" + } + } + }, + "Spectre.Console/0.53.0": { + "type": "package", + "compile": { + "lib/net9.0/Spectre.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Spectre.Console.dll": { + "related": ".xml" + } + } + }, + "System.Composition/9.0.0": { + "type": "package", + "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" + }, + "compile": { + "lib/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.AttributedModel/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Convention/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Hosting/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.Runtime": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Runtime/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.TypedParts/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "WolverineFx/5.13.0": { + "type": "package", + "dependencies": { + "JasperFx": "1.17.0", + "JasperFx.Events": "1.17.0", + "JasperFx.RuntimeCompiler": "4.3.2", + "NewId": "4.0.1", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net10.0/Wolverine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.dll": { + "related": ".xml" + } + } + }, + "WolverineFx.Nats/5.13.0": { + "type": "package", + "dependencies": { + "NATS.Net": "2.7.0", + "WolverineFx": "5.13.0" + }, + "compile": { + "lib/net10.0/Wolverine.Nats.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Wolverine.Nats.dll": { + "related": ".xml" + } + } + }, + "Messages/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/Messages.dll": {} + }, + "runtime": { + "bin/placeholder/Messages.dll": {} + } + }, + "ServiceDefaults/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Microsoft.Extensions.Http.Resilience": "10.1.0", + "Microsoft.Extensions.ServiceDiscovery": "10.1.0", + "OpenTelemetry.Exporter.OpenTelemetryProtocol": "1.14.0", + "OpenTelemetry.Extensions.Hosting": "1.14.0", + "OpenTelemetry.Instrumentation.AspNetCore": "1.14.0", + "OpenTelemetry.Instrumentation.Http": "1.14.0", + "OpenTelemetry.Instrumentation.Runtime": "1.14.0" + }, + "compile": { + "bin/placeholder/ServiceDefaults.dll": {} + }, + "runtime": { + "bin/placeholder/ServiceDefaults.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "FastExpressionCompiler/5.3.0": { + "sha512": "XRmGW48Gdm7B70WUtTJJUnmuc8jRDmOhhjG/a3rix/nXChnrkETaSvA0j2VrcsH4MNeYLe60LA5o5JABmbneag==", + "type": "package", + "path": "fastexpressioncompiler/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "FastExpressionCompiler.snk", + "LICENSE/LICENSE", + "fastexpressioncompiler.5.3.0.nupkg.sha512", + "fastexpressioncompiler.nuspec", + "lib/net472/FastExpressionCompiler.dll", + "lib/net472/FastExpressionCompiler.xml", + "lib/net6.0/FastExpressionCompiler.dll", + "lib/net6.0/FastExpressionCompiler.xml", + "lib/net8.0/FastExpressionCompiler.dll", + "lib/net8.0/FastExpressionCompiler.xml", + "lib/net9.0/FastExpressionCompiler.dll", + "lib/net9.0/FastExpressionCompiler.xml", + "lib/netstandard2.0/FastExpressionCompiler.dll", + "lib/netstandard2.0/FastExpressionCompiler.xml", + "lib/netstandard2.1/FastExpressionCompiler.dll", + "lib/netstandard2.1/FastExpressionCompiler.xml", + "logo.png", + "readme.md" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "ImTools/4.0.0": { + "sha512": "dms0JfLKC9AQbQX/EdpRjn59EjEvaCxIgv1z9YxbEQb5SiOVoo7vlIKdEySeEwUkWhN05rZnNpUpG+aw5VqPVQ==", + "type": "package", + "path": "imtools/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ImTools.snk", + "LICENSE.txt", + "content/net45/ImTools/ImTools.cs", + "contentFiles/cs/net45/ImTools/ImTools.cs", + "contentFiles/cs/netstandard2.0/ImTools/ImTools.cs", + "imtools.4.0.0.nupkg.sha512", + "imtools.nuspec" + ] + }, + "JasperFx/1.17.0": { + "sha512": "d0QqJ33u1IIyG88p8xMi1X9DtfL5Zyq0ivxn5KWJRaVSS3gJ/q9Ws0FopQiG4mxDl/w7rbnSmuFpu4iSimP5IQ==", + "type": "package", + "path": "jasperfx/1.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jasperfx.1.17.0.nupkg.sha512", + "jasperfx.nuspec", + "lib/net10.0/JasperFx.dll", + "lib/net10.0/JasperFx.xml", + "lib/net8.0/JasperFx.dll", + "lib/net8.0/JasperFx.xml", + "lib/net9.0/JasperFx.dll", + "lib/net9.0/JasperFx.xml" + ] + }, + "JasperFx.Events/1.17.0": { + "sha512": "sLvOvE5ABMcATyFLVIKDHeWbjVlhPL8TuK3To1cUdX452Xk6zyEAoW8u/UHfDr4meI9rXoMu4a5GaG8xDjp50A==", + "type": "package", + "path": "jasperfx.events/1.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jasperfx.events.1.17.0.nupkg.sha512", + "jasperfx.events.nuspec", + "lib/net10.0/JasperFx.Events.dll", + "lib/net10.0/JasperFx.Events.xml", + "lib/net8.0/JasperFx.Events.dll", + "lib/net8.0/JasperFx.Events.xml", + "lib/net9.0/JasperFx.Events.dll", + "lib/net9.0/JasperFx.Events.xml" + ] + }, + "JasperFx.RuntimeCompiler/4.3.2": { + "sha512": "zA8iKRvnM1doCM7QqKXfit+FO9LF9hZ+BPoxe4L/+wf6RlARUMpV6HYjr1LWqogT2T5RzC5iO9r9HITl94MonA==", + "type": "package", + "path": "jasperfx.runtimecompiler/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jasperfx.runtimecompiler.4.3.2.nupkg.sha512", + "jasperfx.runtimecompiler.nuspec", + "lib/net10.0/JasperFx.RuntimeCompiler.dll", + "lib/net10.0/JasperFx.RuntimeCompiler.xml", + "lib/net8.0/JasperFx.RuntimeCompiler.dll", + "lib/net8.0/JasperFx.RuntimeCompiler.xml", + "lib/net9.0/JasperFx.RuntimeCompiler.dll", + "lib/net9.0/JasperFx.RuntimeCompiler.xml" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "sha512": "owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.AsyncInterfaces.targets", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "sha512": "bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "type": "package", + "path": "microsoft.bcl.timeprovider/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.TimeProvider.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.TimeProvider.targets", + "lib/net462/Microsoft.Bcl.TimeProvider.dll", + "lib/net462/Microsoft.Bcl.TimeProvider.xml", + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll", + "lib/net8.0/Microsoft.Bcl.TimeProvider.xml", + "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll", + "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.xml", + "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512", + "microsoft.bcl.timeprovider.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.CodeAnalysis/5.0.0": { + "sha512": "X7vItpZDkGm4NS2wp4P1S07Z1e61LaBWDW5tPXE1c6z5/x9KbF2RymhAPoYg7Qoiyk7odEZ6EjBEJ47p3dBpYQ==", + "type": "package", + "path": "microsoft.codeanalysis/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "microsoft.codeanalysis.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "sha512": "v/EW3UE8/lbEYHoC2Qq7AR/DnmvpgdtAMndfQNmpuIMx/Mto8L5JnuCfdBYtgvalQOtfNCnxFejxuRrryvUTsg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.11.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets", + "buildTransitive/config/analysislevel_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_all.globalconfig", + "buildTransitive/config/analysislevel_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_default.globalconfig", + "buildTransitive/config/analysislevel_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_none.globalconfig", + "buildTransitive/config/analysislevel_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended_warnaserror.globalconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "documentation/readme.md", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/5.0.0": { + "sha512": "ZXRAdvH6GiDeHRyd3q/km8Z44RoM6FBWHd+gen/la81mVnAdHTEsEkO5J0TCNXBymAcx5UYKt5TvgKBhaLJEow==", + "type": "package", + "path": "microsoft.codeanalysis.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.dll", + "lib/net8.0/Microsoft.CodeAnalysis.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.dll", + "lib/net9.0/Microsoft.CodeAnalysis.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/5.0.0": { + "sha512": "5DSyJ9bk+ATuDy7fp2Zt0mJStDVKbBoiz1DyfAwSa+k4H4IwykAUcV3URelw5b8/iVbfSaOwkwmPUZH6opZKCw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Scripting/5.0.0": { + "sha512": "1sGloRYbG3743ut/+vuXy9/WaRQTm7mDtp71rBaVSmKpFntvo5Hcro1ubg6/3SeeLtiFYJl7V3Dk0Fo3CGlnHA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.scripting/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll", + "microsoft.codeanalysis.csharp.scripting.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.scripting.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { + "sha512": "Al/Q8B+yO8odSqGVpSvrShMFDvlQdIBU//F3E6Rb0YdiLSALE9wh/pvozPNnfmh5HDnvU+mkmSjpz4hQO++jaA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Scripting/5.0.0": { + "sha512": "/KgZdm6kRTrR/O2jqXxU5GWREYhtVmqcNWczyPt8hsQkFGFK/C6CrLWfG44FCUn0aPHGDRBHYjXlGosQ/H8oXw==", + "type": "package", + "path": "microsoft.codeanalysis.scripting/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "microsoft.codeanalysis.scripting.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.scripting.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Scripting.Common/5.0.0": { + "sha512": "XTulByMNxqXGCgMeODUoG2h4oK4/nLv1BcawRVcjv+UZHMpoaymtdaq3cJqlNrEvYEcbU48g5swJ3RhY1m3fBg==", + "type": "package", + "path": "microsoft.codeanalysis.scripting.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "microsoft.codeanalysis.scripting.common.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.scripting.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic/5.0.0": { + "sha512": "sUBWvHs2HgHGA+b716dgjS7JiXGen5ntyohAurPLR1ZiZzFp3FlnVA7GrMTqVGdVJTVqiC3c4K8k1bk0gj6IPg==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "microsoft.codeanalysis.visualbasic.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic.Workspaces/5.0.0": { + "sha512": "Nom4UuZVEZGaV6Qa+joJR/BawXZMtflvQJFKc0SaUc3LrZr/8LmRY5cn8mbvLOWIVfwWkQz+cVE6eQKu9qa65g==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic.workspaces/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll", + "microsoft.codeanalysis.visualbasic.workspaces.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { + "sha512": "ZbUmIvT6lqTNKiv06Jl5wf0MTMi1vQ1oH7ou4CLcs2C/no/L7EhP3T8y3XXvn9VbqMcJaJnEsNA1jwYUMgc5jg==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.nuspec" + ] + }, + "Microsoft.Extensions.AmbientMetadata.Application/10.1.0": { + "sha512": "+T2Ax2fgw7T7nlhio+ZtgSyYGfevHCOXNPqO0vxA+f2HmbtfwAnIwHEE/jm1/4uFRDDP8PEENpxAhbucg+wUWg==", + "type": "package", + "path": "microsoft.extensions.ambientmetadata.application/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.AmbientMetadata.Application.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net462/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net462/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net8.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net8.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net9.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net9.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/netstandard2.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/netstandard2.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512", + "microsoft.extensions.ambientmetadata.application.nuspec" + ] + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "sha512": "M3JWrgZMkVzyEybZzNkTiC/e8U1ipXTi8xm8bj+PHHp4AcEmhmIEqnxRS0VHVCKZjLkOPt2hY2CIisUFQ6gqLA==", + "type": "package", + "path": "microsoft.extensions.compliance.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.compliance.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "sha512": "O052pqWkdVNXaj3n9E4x6nLL7sG860434gLh7XHhFp/KpyAY9/rCk9NJUinYfQnDkAA8UgCHimVZz+lTjnEwzQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.autoactivation/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.autoactivation.nuspec" + ] + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "sha512": "Q76peCoP6vXXf95RLFeMGzcaQs8l3lk+n/ZOTi2i+OLd3R0HzzB0Fswjua4NY1viIbA1s6l1mqRjQbxY7+Jylw==", + "type": "package", + "path": "microsoft.extensions.diagnostics.exceptionsummarization/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512", + "microsoft.extensions.diagnostics.exceptionsummarization.nuspec" + ] + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "sha512": "RA1Egggf5o7/5AI5TIxOmmV7T06X2jvA9nSlJazU++X/pgu48EDAjDflTq/+kAk0FHUm9ZpAiBVdWfOP2opAbQ==", + "type": "package", + "path": "microsoft.extensions.http.diagnostics/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Http.Diagnostics.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net462/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net9.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net9.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.Diagnostics.xml", + "microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512", + "microsoft.extensions.http.diagnostics.nuspec" + ] + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "sha512": "rwDoQBB93yQjd1XtcZBnOLRX23LW7Z49TIAp1sn7i2r/pW3y4iB8E+EEL0ZyOPuEZxT9xEVN9y39KWlG1FDPkQ==", + "type": "package", + "path": "microsoft.extensions.http.resilience/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Http.Resilience.net462.targets", + "buildTransitive/net462/Microsoft.Extensions.Http.Resilience.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Http.Resilience.targets", + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net10.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/net462/Microsoft.Extensions.Http.Resilience.dll", + "lib/net462/Microsoft.Extensions.Http.Resilience.xml", + "lib/net8.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net8.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/net9.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net9.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.Resilience.xml", + "microsoft.extensions.http.resilience.10.1.0.nupkg.sha512", + "microsoft.extensions.http.resilience.nuspec" + ] + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "sha512": "NzA+c4m2q92qZPjiZLFm+ToeQC3KFqzP+Dr/1pV5y9d7H/hDM2Yxno0kcw5DGpSvS0s6Pwsp+FWMdk/kXBPZ7g==", + "type": "package", + "path": "microsoft.extensions.resilience/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Resilience.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Resilience.dll", + "lib/net10.0/Microsoft.Extensions.Resilience.xml", + "lib/net462/Microsoft.Extensions.Resilience.dll", + "lib/net462/Microsoft.Extensions.Resilience.xml", + "lib/net8.0/Microsoft.Extensions.Resilience.dll", + "lib/net8.0/Microsoft.Extensions.Resilience.xml", + "lib/net9.0/Microsoft.Extensions.Resilience.dll", + "lib/net9.0/Microsoft.Extensions.Resilience.xml", + "lib/netstandard2.0/Microsoft.Extensions.Resilience.dll", + "lib/netstandard2.0/Microsoft.Extensions.Resilience.xml", + "microsoft.extensions.resilience.10.1.0.nupkg.sha512", + "microsoft.extensions.resilience.nuspec" + ] + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "sha512": "b78YWSrwXQI/pSzKIe/TO1lC2FcBfrux6+AmgTRStKcJYHNU1r8ii1GICRNv37CobIcaW8w33LW+xmThqIG/bg==", + "type": "package", + "path": "microsoft.extensions.servicediscovery/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.xml", + "microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512", + "microsoft.extensions.servicediscovery.nuspec" + ] + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "sha512": "uNPOkiRJx6J01aoHQBoX+QR6ZmQpIYdg/OO9+x/M3lkY6JTHBxp3pohcOyEe9l77MT8+3fVEP84/Uw+JODkA0Q==", + "type": "package", + "path": "microsoft.extensions.servicediscovery.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.servicediscovery.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "sha512": "OFnpwOBRZZXMMySvM7eJsEQ87ED5SaRbxHg/an1u89MWHw0mXUUbx5WPb5XFN0uS8kJPe6M+ZMRYwRP0nJeDPA==", + "type": "package", + "path": "microsoft.extensions.telemetry/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Telemetry.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Telemetry.dll", + "lib/net10.0/Microsoft.Extensions.Telemetry.xml", + "lib/net462/Microsoft.Extensions.Telemetry.dll", + "lib/net462/Microsoft.Extensions.Telemetry.xml", + "lib/net8.0/Microsoft.Extensions.Telemetry.dll", + "lib/net8.0/Microsoft.Extensions.Telemetry.xml", + "lib/net9.0/Microsoft.Extensions.Telemetry.dll", + "lib/net9.0/Microsoft.Extensions.Telemetry.xml", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.dll", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.xml", + "microsoft.extensions.telemetry.10.1.0.nupkg.sha512", + "microsoft.extensions.telemetry.nuspec" + ] + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "sha512": "0jAF2b0YJ1LOtunmo3PzSoJOx/ThhcGH5Y5kaV0jeM0BUlyr9orjg+fH5YabqnPSmwcN/DSTj0iZ7UwDISn5ag==", + "type": "package", + "path": "microsoft.extensions.telemetry.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "analyzers/dotnet/cs/Microsoft.Gen.Logging.dll", + "analyzers/dotnet/cs/Microsoft.Gen.Metrics.dll", + "buildTransitive/net462/Microsoft.Extensions.Telemetry.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Telemetry.Abstractions.props", + "buildTransitive/net6.0/Microsoft.Extensions.Telemetry.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.props", + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.telemetry.abstractions.nuspec" + ] + }, + "NATS.Client.Abstractions/2.7.0": { + "sha512": "DQ6x64lyH7Li2jS8/IV+XIEkhnhE9KENQ5luAoYTLPNEmFoIVcWN8RQSHjyRJviu4RGbw6AvHmlxvehnSqJk8w==", + "type": "package", + "path": "nats.client.abstractions/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Abstractions.dll", + "lib/net6.0/NATS.Client.Abstractions.xml", + "lib/net8.0/NATS.Client.Abstractions.dll", + "lib/net8.0/NATS.Client.Abstractions.xml", + "lib/netstandard2.0/NATS.Client.Abstractions.dll", + "lib/netstandard2.0/NATS.Client.Abstractions.xml", + "lib/netstandard2.1/NATS.Client.Abstractions.dll", + "lib/netstandard2.1/NATS.Client.Abstractions.xml", + "nats.client.abstractions.2.7.0.nupkg.sha512", + "nats.client.abstractions.nuspec" + ] + }, + "NATS.Client.Core/2.7.0": { + "sha512": "/l3nqhk6mfG50QjjvwKMN+kSUgJ27fmoaXAXXjrB13YpCbcl20c7Mj82KsutbjmxMVKSdb1mc7Wvj2Ahr03e8A==", + "type": "package", + "path": "nats.client.core/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Core.dll", + "lib/net6.0/NATS.Client.Core.xml", + "lib/net8.0/NATS.Client.Core.dll", + "lib/net8.0/NATS.Client.Core.xml", + "lib/netstandard2.0/NATS.Client.Core.dll", + "lib/netstandard2.0/NATS.Client.Core.xml", + "lib/netstandard2.1/NATS.Client.Core.dll", + "lib/netstandard2.1/NATS.Client.Core.xml", + "nats.client.core.2.7.0.nupkg.sha512", + "nats.client.core.nuspec" + ] + }, + "NATS.Client.Hosting/2.7.0": { + "sha512": "P0OoQWqhKPavjmkO23mOdqHsm4GmO9OdjlTrWTpvQes67DLgxmYTjGu1PYK0pi/XJuuiUeZdKhINt6XvygaqYg==", + "type": "package", + "path": "nats.client.hosting/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Hosting.dll", + "lib/net6.0/NATS.Client.Hosting.xml", + "lib/net8.0/NATS.Client.Hosting.dll", + "lib/net8.0/NATS.Client.Hosting.xml", + "lib/netstandard2.0/NATS.Client.Hosting.dll", + "lib/netstandard2.0/NATS.Client.Hosting.xml", + "lib/netstandard2.1/NATS.Client.Hosting.dll", + "lib/netstandard2.1/NATS.Client.Hosting.xml", + "nats.client.hosting.2.7.0.nupkg.sha512", + "nats.client.hosting.nuspec" + ] + }, + "NATS.Client.JetStream/2.7.0": { + "sha512": "MHT27WsvKCPSQ234WO+PnaDH0+rAs1W70BPnSvt/4iZ/Dunfx8oQHSGskfAz62R1U2ZGBTbucjkPCJqjCep0bA==", + "type": "package", + "path": "nats.client.jetstream/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.JetStream.dll", + "lib/net6.0/NATS.Client.JetStream.xml", + "lib/net8.0/NATS.Client.JetStream.dll", + "lib/net8.0/NATS.Client.JetStream.xml", + "lib/netstandard2.0/NATS.Client.JetStream.dll", + "lib/netstandard2.0/NATS.Client.JetStream.xml", + "lib/netstandard2.1/NATS.Client.JetStream.dll", + "lib/netstandard2.1/NATS.Client.JetStream.xml", + "nats.client.jetstream.2.7.0.nupkg.sha512", + "nats.client.jetstream.nuspec" + ] + }, + "NATS.Client.KeyValueStore/2.7.0": { + "sha512": "vmpy1y3fU0TzrOhEtS+9NajcjY1R08tHR7GQIIXB2IE2k0vh1rHLChUtrMypvTlng90KHGhGPsr/EzJnu6hqzA==", + "type": "package", + "path": "nats.client.keyvaluestore/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.KeyValueStore.dll", + "lib/net6.0/NATS.Client.KeyValueStore.xml", + "lib/net8.0/NATS.Client.KeyValueStore.dll", + "lib/net8.0/NATS.Client.KeyValueStore.xml", + "lib/netstandard2.0/NATS.Client.KeyValueStore.dll", + "lib/netstandard2.0/NATS.Client.KeyValueStore.xml", + "lib/netstandard2.1/NATS.Client.KeyValueStore.dll", + "lib/netstandard2.1/NATS.Client.KeyValueStore.xml", + "nats.client.keyvaluestore.2.7.0.nupkg.sha512", + "nats.client.keyvaluestore.nuspec" + ] + }, + "NATS.Client.ObjectStore/2.7.0": { + "sha512": "UqD6MjojKm2LCK+wTGSN/lsDe9of9qygFWGSAw1m6p9eoey1HnEVH0MKqItqAKUgsuyaaZaB999/S+z6uugGQg==", + "type": "package", + "path": "nats.client.objectstore/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.ObjectStore.dll", + "lib/net6.0/NATS.Client.ObjectStore.xml", + "lib/net8.0/NATS.Client.ObjectStore.dll", + "lib/net8.0/NATS.Client.ObjectStore.xml", + "lib/netstandard2.0/NATS.Client.ObjectStore.dll", + "lib/netstandard2.0/NATS.Client.ObjectStore.xml", + "lib/netstandard2.1/NATS.Client.ObjectStore.dll", + "lib/netstandard2.1/NATS.Client.ObjectStore.xml", + "nats.client.objectstore.2.7.0.nupkg.sha512", + "nats.client.objectstore.nuspec" + ] + }, + "NATS.Client.Serializers.Json/2.7.0": { + "sha512": "13R0EvJae6dXhcfdBX29LadDdc+0SPWVp0HdAQH4D7H3Eyd2/0jxgrLNH9nlZM8lo3tSk/iDojP7e+VQjlzM1w==", + "type": "package", + "path": "nats.client.serializers.json/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Serializers.Json.dll", + "lib/net6.0/NATS.Client.Serializers.Json.xml", + "lib/net8.0/NATS.Client.Serializers.Json.dll", + "lib/net8.0/NATS.Client.Serializers.Json.xml", + "lib/netstandard2.0/NATS.Client.Serializers.Json.dll", + "lib/netstandard2.0/NATS.Client.Serializers.Json.xml", + "lib/netstandard2.1/NATS.Client.Serializers.Json.dll", + "lib/netstandard2.1/NATS.Client.Serializers.Json.xml", + "nats.client.serializers.json.2.7.0.nupkg.sha512", + "nats.client.serializers.json.nuspec" + ] + }, + "NATS.Client.Services/2.7.0": { + "sha512": "EEs4ibYIwg/pP/bBPhn+K3eDfNBehTisGs2L+eZv7e+eHfBHcjSvAfbEhhyACMuFSuTROWpBaiFAH4xCWgdnbA==", + "type": "package", + "path": "nats.client.services/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Services.dll", + "lib/net6.0/NATS.Client.Services.xml", + "lib/net8.0/NATS.Client.Services.dll", + "lib/net8.0/NATS.Client.Services.xml", + "lib/netstandard2.0/NATS.Client.Services.dll", + "lib/netstandard2.0/NATS.Client.Services.xml", + "lib/netstandard2.1/NATS.Client.Services.dll", + "lib/netstandard2.1/NATS.Client.Services.xml", + "nats.client.services.2.7.0.nupkg.sha512", + "nats.client.services.nuspec" + ] + }, + "NATS.Client.Simplified/2.7.0": { + "sha512": "8HU5stAU/xpQr7OyGaZbkjJGeq7hcukUUdcme4sOBiSUrjWpfgJTYeFmwFQHALFah9dkm1EYrHp1RND6lLSJTA==", + "type": "package", + "path": "nats.client.simplified/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Client.Simplified.dll", + "lib/net6.0/NATS.Client.Simplified.xml", + "lib/net8.0/NATS.Client.Simplified.dll", + "lib/net8.0/NATS.Client.Simplified.xml", + "lib/netstandard2.0/NATS.Client.Simplified.dll", + "lib/netstandard2.0/NATS.Client.Simplified.xml", + "lib/netstandard2.1/NATS.Client.Simplified.dll", + "lib/netstandard2.1/NATS.Client.Simplified.xml", + "nats.client.simplified.2.7.0.nupkg.sha512", + "nats.client.simplified.nuspec" + ] + }, + "NATS.Net/2.7.0": { + "sha512": "89IrKEUb/kOzzcQ+J5SKAKmlRybRklllZKa1/LuBNkn3BblIUHYXku6JibN1wWr02HgJGH+OMYBZ0SVX1+HnCA==", + "type": "package", + "path": "nats.net/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "README.md", + "lib/net6.0/NATS.Net.dll", + "lib/net6.0/NATS.Net.xml", + "lib/net8.0/NATS.Net.dll", + "lib/net8.0/NATS.Net.xml", + "lib/netstandard2.0/NATS.Net.dll", + "lib/netstandard2.0/NATS.Net.xml", + "lib/netstandard2.1/NATS.Net.dll", + "lib/netstandard2.1/NATS.Net.xml", + "nats.net.2.7.0.nupkg.sha512", + "nats.net.nuspec" + ] + }, + "NewId/4.0.1": { + "sha512": "jegBasNndmG21G3BmT51suFDCIz/sLN81j+IxmkZ4iWoaDi8LygeHiyNnYbXz5OQh9nCRJFIx1+PJrlYi1Gc9Q==", + "type": "package", + "path": "newid/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/NewId.dll", + "lib/net6.0/NewId.xml", + "lib/netstandard2.0/NewId.dll", + "lib/netstandard2.0/NewId.xml", + "newid.4.0.1.nupkg.sha512", + "newid.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "OpenTelemetry/1.14.0": { + "sha512": "aiPBAr1+0dPDItH++MQQr5UgMf4xiybruzNlAoYYMYN3UUk+mGRcoKuZy4Z4rhhWUZIpK2Xhe7wUUXSTM32duQ==", + "type": "package", + "path": "opentelemetry/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.dll", + "lib/net10.0/OpenTelemetry.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.xml", + "lib/net462/OpenTelemetry.dll", + "lib/net462/OpenTelemetry.dll.sigstore.json", + "lib/net462/OpenTelemetry.xml", + "lib/net8.0/OpenTelemetry.dll", + "lib/net8.0/OpenTelemetry.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.xml", + "lib/net9.0/OpenTelemetry.dll", + "lib/net9.0/OpenTelemetry.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.xml", + "lib/netstandard2.0/OpenTelemetry.dll", + "lib/netstandard2.0/OpenTelemetry.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.xml", + "lib/netstandard2.1/OpenTelemetry.dll", + "lib/netstandard2.1/OpenTelemetry.dll.sigstore.json", + "lib/netstandard2.1/OpenTelemetry.xml", + "opentelemetry-icon-color.png", + "opentelemetry.1.14.0.nupkg.sha512", + "opentelemetry.nuspec" + ] + }, + "OpenTelemetry.Api/1.14.0": { + "sha512": "foHci6viUw1f3gUB8qzz3Rk02xZIWMo299X0rxK0MoOWok/3dUVru+KKdY7WIoSHwRGpxGKkmAz9jIk2RFNbsQ==", + "type": "package", + "path": "opentelemetry.api/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Api.dll", + "lib/net10.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Api.xml", + "lib/net462/OpenTelemetry.Api.dll", + "lib/net462/OpenTelemetry.Api.dll.sigstore.json", + "lib/net462/OpenTelemetry.Api.xml", + "lib/net8.0/OpenTelemetry.Api.dll", + "lib/net8.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Api.xml", + "lib/net9.0/OpenTelemetry.Api.dll", + "lib/net9.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Api.xml", + "lib/netstandard2.0/OpenTelemetry.Api.dll", + "lib/netstandard2.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Api.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.1.14.0.nupkg.sha512", + "opentelemetry.api.nuspec" + ] + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "sha512": "i/lxOM92v+zU5I0rGl5tXAGz6EJtxk2MvzZ0VN6F6L5pMqT6s6RCXnGWXg6fW+vtZJsllBlQaf/VLPTzgefJpg==", + "type": "package", + "path": "opentelemetry.api.providerbuilderextensions/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512", + "opentelemetry.api.providerbuilderextensions.nuspec" + ] + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "sha512": "7ELExeje+T/KOywHuHwZBGQNtYlepUaYRFXWgoEaT1iKpFJVwOlE1Y2+uqHI2QQmah0Ue+XgRmDy924vWHfJ6Q==", + "type": "package", + "path": "opentelemetry.exporter.opentelemetryprotocol/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "opentelemetry-icon-color.png", + "opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512", + "opentelemetry.exporter.opentelemetryprotocol.nuspec" + ] + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "sha512": "ZAxkCIa3Q3YWZ1sGrolXfkhPqn2PFSz2Cel74em/fATZgY5ixlw6MQp2icmqKCz4C7M1W2G0b92K3rX8mOtFRg==", + "type": "package", + "path": "opentelemetry.extensions.hosting/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net462/OpenTelemetry.Extensions.Hosting.xml", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.xml", + "opentelemetry-icon-color.png", + "opentelemetry.extensions.hosting.1.14.0.nupkg.sha512", + "opentelemetry.extensions.hosting.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "sha512": "NQAQpFa3a4ofPUYwxcwtNPGpuRNwwx1HM7MnLEESYjYkhfhER+PqqGywW65rWd7bJEc1/IaL+xbmHH99pYDE0A==", + "type": "package", + "path": "opentelemetry.instrumentation.aspnetcore/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.aspnetcore.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "sha512": "uH8X1fYnywrgaUrSbemKvFiFkBwY7ZbBU7Wh4A/ORQmdpF3G/5STidY4PlK4xYuIv9KkdMXH/vkpvzQcayW70g==", + "type": "package", + "path": "opentelemetry.instrumentation.http/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.Http.xml", + "lib/net462/OpenTelemetry.Instrumentation.Http.dll", + "lib/net462/OpenTelemetry.Instrumentation.Http.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.Http.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.http.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.http.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "sha512": "Z6o4JDOQaKv6bInAYZxuyxxfMKr6hFpwLnKEgQ+q+oBNA9Fm1sysjFCOzRzk7U0WD86LsRPXX+chv1vJIg7cfg==", + "type": "package", + "path": "opentelemetry.instrumentation.runtime/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/net462/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net462/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Runtime.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.runtime.nuspec" + ] + }, + "Polly.Core/8.6.5": { + "sha512": "t+sUVrIwvo7UmsgHGgOG9F0GDZSRIm47u2ylH17Gvcv1q5hNEwgD5GoBlFyc0kh/pebmPyrAgvGsR/65ZBaXlg==", + "type": "package", + "path": "polly.core/8.6.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "lib/net462/Polly.Core.dll", + "lib/net462/Polly.Core.pdb", + "lib/net462/Polly.Core.xml", + "lib/net472/Polly.Core.dll", + "lib/net472/Polly.Core.pdb", + "lib/net472/Polly.Core.xml", + "lib/net6.0/Polly.Core.dll", + "lib/net6.0/Polly.Core.pdb", + "lib/net6.0/Polly.Core.xml", + "lib/net8.0/Polly.Core.dll", + "lib/net8.0/Polly.Core.pdb", + "lib/net8.0/Polly.Core.xml", + "lib/netstandard2.0/Polly.Core.dll", + "lib/netstandard2.0/Polly.Core.pdb", + "lib/netstandard2.0/Polly.Core.xml", + "package-icon.png", + "package-readme.md", + "polly.core.8.6.5.nupkg.sha512", + "polly.core.nuspec" + ] + }, + "Polly.Extensions/8.4.2": { + "sha512": "GZ9vRVmR0jV2JtZavt+pGUsQ1O1cuRKG7R7VOZI6ZDy9y6RNPvRvXK1tuS4ffUrv8L0FTea59oEuQzgS0R7zSA==", + "type": "package", + "path": "polly.extensions/8.4.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Polly.Extensions.dll", + "lib/net462/Polly.Extensions.pdb", + "lib/net462/Polly.Extensions.xml", + "lib/net472/Polly.Extensions.dll", + "lib/net472/Polly.Extensions.pdb", + "lib/net472/Polly.Extensions.xml", + "lib/net6.0/Polly.Extensions.dll", + "lib/net6.0/Polly.Extensions.pdb", + "lib/net6.0/Polly.Extensions.xml", + "lib/net8.0/Polly.Extensions.dll", + "lib/net8.0/Polly.Extensions.pdb", + "lib/net8.0/Polly.Extensions.xml", + "lib/netstandard2.0/Polly.Extensions.dll", + "lib/netstandard2.0/Polly.Extensions.pdb", + "lib/netstandard2.0/Polly.Extensions.xml", + "package-icon.png", + "package-readme.md", + "polly.extensions.8.4.2.nupkg.sha512", + "polly.extensions.nuspec" + ] + }, + "Polly.RateLimiting/8.4.2": { + "sha512": "ehTImQ/eUyO07VYW2WvwSmU9rRH200SKJ/3jku9rOkyWE0A2JxNFmAVms8dSn49QLSjmjFRRSgfNyOgr/2PSmA==", + "type": "package", + "path": "polly.ratelimiting/8.4.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Polly.RateLimiting.dll", + "lib/net462/Polly.RateLimiting.pdb", + "lib/net462/Polly.RateLimiting.xml", + "lib/net472/Polly.RateLimiting.dll", + "lib/net472/Polly.RateLimiting.pdb", + "lib/net472/Polly.RateLimiting.xml", + "lib/net6.0/Polly.RateLimiting.dll", + "lib/net6.0/Polly.RateLimiting.pdb", + "lib/net6.0/Polly.RateLimiting.xml", + "lib/net8.0/Polly.RateLimiting.dll", + "lib/net8.0/Polly.RateLimiting.pdb", + "lib/net8.0/Polly.RateLimiting.xml", + "lib/netstandard2.0/Polly.RateLimiting.dll", + "lib/netstandard2.0/Polly.RateLimiting.pdb", + "lib/netstandard2.0/Polly.RateLimiting.xml", + "package-icon.png", + "package-readme.md", + "polly.ratelimiting.8.4.2.nupkg.sha512", + "polly.ratelimiting.nuspec" + ] + }, + "Spectre.Console/0.53.0": { + "sha512": "m2iv8Egfywp7FaNLKCmCFHbSf36D4ctzZKvlAK9NXMyGLh6L+CnrZWK8o+LOYsoAS1jtoHn0W1BT0W8vuq/FUw==", + "type": "package", + "path": "spectre.console/0.53.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Spectre.Console.dll", + "lib/net8.0/Spectre.Console.xml", + "lib/net9.0/Spectre.Console.dll", + "lib/net9.0/Spectre.Console.xml", + "lib/netstandard2.0/Spectre.Console.dll", + "lib/netstandard2.0/Spectre.Console.xml", + "logo.png", + "spectre.console.0.53.0.nupkg.sha512", + "spectre.console.nuspec" + ] + }, + "System.Composition/9.0.0": { + "sha512": "3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==", + "type": "package", + "path": "system.composition/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.targets", + "lib/net461/_._", + "lib/netcoreapp2.0/_._", + "lib/netstandard2.0/_._", + "system.composition.9.0.0.nupkg.sha512", + "system.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.AttributedModel/9.0.0": { + "sha512": "iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==", + "type": "package", + "path": "system.composition.attributedmodel/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.AttributedModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets", + "lib/net462/System.Composition.AttributedModel.dll", + "lib/net462/System.Composition.AttributedModel.xml", + "lib/net8.0/System.Composition.AttributedModel.dll", + "lib/net8.0/System.Composition.AttributedModel.xml", + "lib/net9.0/System.Composition.AttributedModel.dll", + "lib/net9.0/System.Composition.AttributedModel.xml", + "lib/netstandard2.0/System.Composition.AttributedModel.dll", + "lib/netstandard2.0/System.Composition.AttributedModel.xml", + "system.composition.attributedmodel.9.0.0.nupkg.sha512", + "system.composition.attributedmodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Convention/9.0.0": { + "sha512": "+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==", + "type": "package", + "path": "system.composition.convention/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Convention.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets", + "lib/net462/System.Composition.Convention.dll", + "lib/net462/System.Composition.Convention.xml", + "lib/net8.0/System.Composition.Convention.dll", + "lib/net8.0/System.Composition.Convention.xml", + "lib/net9.0/System.Composition.Convention.dll", + "lib/net9.0/System.Composition.Convention.xml", + "lib/netstandard2.0/System.Composition.Convention.dll", + "lib/netstandard2.0/System.Composition.Convention.xml", + "system.composition.convention.9.0.0.nupkg.sha512", + "system.composition.convention.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Hosting/9.0.0": { + "sha512": "OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==", + "type": "package", + "path": "system.composition.hosting/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets", + "lib/net462/System.Composition.Hosting.dll", + "lib/net462/System.Composition.Hosting.xml", + "lib/net8.0/System.Composition.Hosting.dll", + "lib/net8.0/System.Composition.Hosting.xml", + "lib/net9.0/System.Composition.Hosting.dll", + "lib/net9.0/System.Composition.Hosting.xml", + "lib/netstandard2.0/System.Composition.Hosting.dll", + "lib/netstandard2.0/System.Composition.Hosting.xml", + "system.composition.hosting.9.0.0.nupkg.sha512", + "system.composition.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Runtime/9.0.0": { + "sha512": "w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==", + "type": "package", + "path": "system.composition.runtime/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Runtime.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets", + "lib/net462/System.Composition.Runtime.dll", + "lib/net462/System.Composition.Runtime.xml", + "lib/net8.0/System.Composition.Runtime.dll", + "lib/net8.0/System.Composition.Runtime.xml", + "lib/net9.0/System.Composition.Runtime.dll", + "lib/net9.0/System.Composition.Runtime.xml", + "lib/netstandard2.0/System.Composition.Runtime.dll", + "lib/netstandard2.0/System.Composition.Runtime.xml", + "system.composition.runtime.9.0.0.nupkg.sha512", + "system.composition.runtime.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.TypedParts/9.0.0": { + "sha512": "aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==", + "type": "package", + "path": "system.composition.typedparts/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.TypedParts.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets", + "lib/net462/System.Composition.TypedParts.dll", + "lib/net462/System.Composition.TypedParts.xml", + "lib/net8.0/System.Composition.TypedParts.dll", + "lib/net8.0/System.Composition.TypedParts.xml", + "lib/net9.0/System.Composition.TypedParts.dll", + "lib/net9.0/System.Composition.TypedParts.xml", + "lib/netstandard2.0/System.Composition.TypedParts.dll", + "lib/netstandard2.0/System.Composition.TypedParts.xml", + "system.composition.typedparts.9.0.0.nupkg.sha512", + "system.composition.typedparts.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "WolverineFx/5.13.0": { + "sha512": "FB5Yo6M0SyQWDgHz2EjwQcflhrjRd9mERV6/N6WHQHJO1kW8fSxEIcOHndhikcVkZvmhUdwu5PW4V4ypEmpKTA==", + "type": "package", + "path": "wolverinefx/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.dll", + "lib/net10.0/Wolverine.xml", + "lib/net8.0/Wolverine.dll", + "lib/net8.0/Wolverine.xml", + "lib/net9.0/Wolverine.dll", + "lib/net9.0/Wolverine.xml", + "wolverinefx.5.13.0.nupkg.sha512", + "wolverinefx.nuspec" + ] + }, + "WolverineFx.Nats/5.13.0": { + "sha512": "8GN8uwRX56vp3fN8KSQqrEYlAtAKoOz1ZpCckZCsr15sP8eoE+Sa5wfzkGQ186cAYnkBa2P0yMlr1QRCmHYaYQ==", + "type": "package", + "path": "wolverinefx.nats/5.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10.0/Wolverine.Nats.dll", + "lib/net10.0/Wolverine.Nats.xml", + "lib/net8.0/Wolverine.Nats.dll", + "lib/net8.0/Wolverine.Nats.xml", + "lib/net9.0/Wolverine.Nats.dll", + "lib/net9.0/Wolverine.Nats.xml", + "wolverinefx.nats.5.13.0.nupkg.sha512", + "wolverinefx.nats.nuspec" + ] + }, + "Messages/1.0.0": { + "type": "project", + "path": "../Messages/Messages.csproj", + "msbuildProject": "../Messages/Messages.csproj" + }, + "ServiceDefaults/1.0.0": { + "type": "project", + "path": "../ServiceDefaults/ServiceDefaults.csproj", + "msbuildProject": "../ServiceDefaults/ServiceDefaults.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Messages >= 1.0.0", + "ServiceDefaults >= 1.0.0", + "WolverineFx.Nats >= 5.13.0" + ] + }, + "packageFolders": { + "/Users/jeffrygonzalez/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/PlainListener.csproj", + "projectName": "PlainListener", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/PlainListener.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj" + }, + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": { + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "WolverineFx.Nats": { + "target": "Package", + "version": "[5.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/project.nuget.cache b/wolverine-nats/WolverineAndNats/PlainListener/obj/project.nuget.cache new file mode 100644 index 0000000..dafdf80 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/project.nuget.cache @@ -0,0 +1,71 @@ +{ + "version": 2, + "dgSpecHash": "7fIQxrFH29Q=", + "success": true, + "projectFilePath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/PlainListener.csproj", + "expectedPackageFiles": [ + "/Users/jeffrygonzalez/.nuget/packages/fastexpressioncompiler/5.3.0/fastexpressioncompiler.5.3.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/imtools/4.0.0/imtools.4.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jasperfx/1.17.0/jasperfx.1.17.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jasperfx.events/1.17.0/jasperfx.events.1.17.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/jasperfx.runtimecompiler/4.3.2/jasperfx.runtimecompiler.4.3.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.bcl.asyncinterfaces/9.0.0/microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.bcl.timeprovider/10.0.0/microsoft.bcl.timeprovider.10.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis/5.0.0/microsoft.codeanalysis.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.analyzers/3.11.0/microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.common/5.0.0/microsoft.codeanalysis.common.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.csharp/5.0.0/microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.csharp.scripting/5.0.0/microsoft.codeanalysis.csharp.scripting.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/5.0.0/microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.scripting/5.0.0/microsoft.codeanalysis.scripting.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.scripting.common/5.0.0/microsoft.codeanalysis.scripting.common.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.visualbasic/5.0.0/microsoft.codeanalysis.visualbasic.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.visualbasic.workspaces/5.0.0/microsoft.codeanalysis.visualbasic.workspaces.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.codeanalysis.workspaces.common/5.0.0/microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.ambientmetadata.application/10.1.0/microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.compliance.abstractions/10.1.0/microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.dependencyinjection.autoactivation/10.1.0/microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.diagnostics.exceptionsummarization/10.1.0/microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.http.diagnostics/10.1.0/microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.http.resilience/10.1.0/microsoft.extensions.http.resilience.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.resilience/10.1.0/microsoft.extensions.resilience.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.servicediscovery/10.1.0/microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.servicediscovery.abstractions/10.1.0/microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.telemetry/10.1.0/microsoft.extensions.telemetry.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.telemetry.abstractions/10.1.0/microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.abstractions/2.7.0/nats.client.abstractions.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.core/2.7.0/nats.client.core.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.hosting/2.7.0/nats.client.hosting.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.jetstream/2.7.0/nats.client.jetstream.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.keyvaluestore/2.7.0/nats.client.keyvaluestore.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.objectstore/2.7.0/nats.client.objectstore.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.serializers.json/2.7.0/nats.client.serializers.json.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.services/2.7.0/nats.client.services.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.client.simplified/2.7.0/nats.client.simplified.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/nats.net/2.7.0/nats.net.2.7.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/newid/4.0.1/newid.4.0.1.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry/1.14.0/opentelemetry.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.api/1.14.0/opentelemetry.api.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.api.providerbuilderextensions/1.14.0/opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.exporter.opentelemetryprotocol/1.14.0/opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.extensions.hosting/1.14.0/opentelemetry.extensions.hosting.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.aspnetcore/1.14.0/opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.http/1.14.0/opentelemetry.instrumentation.http.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.runtime/1.14.0/opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.core/8.6.5/polly.core.8.6.5.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.extensions/8.4.2/polly.extensions.8.4.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.ratelimiting/8.4.2/polly.ratelimiting.8.4.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/spectre.console/0.53.0/spectre.console.0.53.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition/9.0.0/system.composition.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.attributedmodel/9.0.0/system.composition.attributedmodel.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.convention/9.0.0/system.composition.convention.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.hosting/9.0.0/system.composition.hosting.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.runtime/9.0.0/system.composition.runtime.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/system.composition.typedparts/9.0.0/system.composition.typedparts.9.0.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx/5.13.0/wolverinefx.5.13.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/wolverinefx.nats/5.13.0/wolverinefx.nats.5.13.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/project.packagespec.json b/wolverine-nats/WolverineAndNats/PlainListener/obj/project.packagespec.json new file mode 100644 index 0000000..749d9f1 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/PlainListener.csproj","projectName":"PlainListener","projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/PlainListener.csproj","outputPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/PlainListener/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net10.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net10.0":{"targetAlias":"net10.0","projectReferences":{"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj":{"projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/Messages/Messages.csproj"},"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj":{"projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"all"},"SdkAnalysisLevel":"10.0.100"}"frameworks":{"net10.0":{"targetAlias":"net10.0","dependencies":{"WolverineFx.Nats":{"target":"Package","version":"[5.13.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json","packagesToPrune":{"Microsoft.AspNetCore":"(,10.0.32767]","Microsoft.AspNetCore.Antiforgery":"(,10.0.32767]","Microsoft.AspNetCore.App":"(,10.0.32767]","Microsoft.AspNetCore.Authentication":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.BearerToken":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Cookies":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Core":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.OAuth":"(,10.0.32767]","Microsoft.AspNetCore.Authorization":"(,10.0.32767]","Microsoft.AspNetCore.Authorization.Policy":"(,10.0.32767]","Microsoft.AspNetCore.Components":"(,10.0.32767]","Microsoft.AspNetCore.Components.Authorization":"(,10.0.32767]","Microsoft.AspNetCore.Components.Endpoints":"(,10.0.32767]","Microsoft.AspNetCore.Components.Forms":"(,10.0.32767]","Microsoft.AspNetCore.Components.Server":"(,10.0.32767]","Microsoft.AspNetCore.Components.Web":"(,10.0.32767]","Microsoft.AspNetCore.Connections.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.CookiePolicy":"(,10.0.32767]","Microsoft.AspNetCore.Cors":"(,10.0.32767]","Microsoft.AspNetCore.Cryptography.Internal":"(,10.0.32767]","Microsoft.AspNetCore.Cryptography.KeyDerivation":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection.Extensions":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics.HealthChecks":"(,10.0.32767]","Microsoft.AspNetCore.HostFiltering":"(,10.0.32767]","Microsoft.AspNetCore.Hosting":"(,10.0.32767]","Microsoft.AspNetCore.Hosting.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Hosting.Server.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Html.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Http":"(,10.0.32767]","Microsoft.AspNetCore.Http.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Http.Connections":"(,10.0.32767]","Microsoft.AspNetCore.Http.Connections.Common":"(,10.0.32767]","Microsoft.AspNetCore.Http.Extensions":"(,10.0.32767]","Microsoft.AspNetCore.Http.Features":"(,10.0.32767]","Microsoft.AspNetCore.Http.Results":"(,10.0.32767]","Microsoft.AspNetCore.HttpLogging":"(,10.0.32767]","Microsoft.AspNetCore.HttpOverrides":"(,10.0.32767]","Microsoft.AspNetCore.HttpsPolicy":"(,10.0.32767]","Microsoft.AspNetCore.Identity":"(,10.0.32767]","Microsoft.AspNetCore.Localization":"(,10.0.32767]","Microsoft.AspNetCore.Localization.Routing":"(,10.0.32767]","Microsoft.AspNetCore.Metadata":"(,10.0.32767]","Microsoft.AspNetCore.Mvc":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.ApiExplorer":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Core":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Cors":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.DataAnnotations":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Formatters.Json":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Formatters.Xml":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Localization":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Razor":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.RazorPages":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.TagHelpers":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.ViewFeatures":"(,10.0.32767]","Microsoft.AspNetCore.OutputCaching":"(,10.0.32767]","Microsoft.AspNetCore.RateLimiting":"(,10.0.32767]","Microsoft.AspNetCore.Razor":"(,10.0.32767]","Microsoft.AspNetCore.Razor.Runtime":"(,10.0.32767]","Microsoft.AspNetCore.RequestDecompression":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCaching":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCaching.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCompression":"(,10.0.32767]","Microsoft.AspNetCore.Rewrite":"(,10.0.32767]","Microsoft.AspNetCore.Routing":"(,10.0.32767]","Microsoft.AspNetCore.Routing.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Server.HttpSys":"(,10.0.32767]","Microsoft.AspNetCore.Server.IIS":"(,10.0.32767]","Microsoft.AspNetCore.Server.IISIntegration":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Core":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.Quic":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets":"(,10.0.32767]","Microsoft.AspNetCore.Session":"(,10.0.32767]","Microsoft.AspNetCore.SignalR":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Common":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Core":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Protocols.Json":"(,10.0.32767]","Microsoft.AspNetCore.StaticAssets":"(,10.0.32767]","Microsoft.AspNetCore.StaticFiles":"(,10.0.32767]","Microsoft.AspNetCore.WebSockets":"(,10.0.32767]","Microsoft.AspNetCore.WebUtilities":"(,10.0.32767]","Microsoft.CSharp":"(,4.7.32767]","Microsoft.Extensions.Caching.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Caching.Memory":"(,10.0.32767]","Microsoft.Extensions.Configuration":"(,10.0.32767]","Microsoft.Extensions.Configuration.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Configuration.Binder":"(,10.0.32767]","Microsoft.Extensions.Configuration.CommandLine":"(,10.0.32767]","Microsoft.Extensions.Configuration.EnvironmentVariables":"(,10.0.32767]","Microsoft.Extensions.Configuration.FileExtensions":"(,10.0.32767]","Microsoft.Extensions.Configuration.Ini":"(,10.0.32767]","Microsoft.Extensions.Configuration.Json":"(,10.0.32767]","Microsoft.Extensions.Configuration.KeyPerFile":"(,10.0.32767]","Microsoft.Extensions.Configuration.UserSecrets":"(,10.0.32767]","Microsoft.Extensions.Configuration.Xml":"(,10.0.32767]","Microsoft.Extensions.DependencyInjection":"(,10.0.32767]","Microsoft.Extensions.DependencyInjection.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Diagnostics":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.HealthChecks":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Features":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Abstractions":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Composite":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Physical":"(,10.0.32767]","Microsoft.Extensions.FileSystemGlobbing":"(,10.0.32767]","Microsoft.Extensions.Hosting":"(,10.0.32767]","Microsoft.Extensions.Hosting.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Http":"(,10.0.32767]","Microsoft.Extensions.Identity.Core":"(,10.0.32767]","Microsoft.Extensions.Identity.Stores":"(,10.0.32767]","Microsoft.Extensions.Localization":"(,10.0.32767]","Microsoft.Extensions.Localization.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Logging":"(,10.0.32767]","Microsoft.Extensions.Logging.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Logging.Configuration":"(,10.0.32767]","Microsoft.Extensions.Logging.Console":"(,10.0.32767]","Microsoft.Extensions.Logging.Debug":"(,10.0.32767]","Microsoft.Extensions.Logging.EventLog":"(,10.0.32767]","Microsoft.Extensions.Logging.EventSource":"(,10.0.32767]","Microsoft.Extensions.Logging.TraceSource":"(,10.0.32767]","Microsoft.Extensions.ObjectPool":"(,10.0.32767]","Microsoft.Extensions.Options":"(,10.0.32767]","Microsoft.Extensions.Options.ConfigurationExtensions":"(,10.0.32767]","Microsoft.Extensions.Options.DataAnnotations":"(,10.0.32767]","Microsoft.Extensions.Primitives":"(,10.0.32767]","Microsoft.Extensions.Validation":"(,10.0.32767]","Microsoft.Extensions.WebEncoders":"(,10.0.32767]","Microsoft.JSInterop":"(,10.0.32767]","Microsoft.Net.Http.Headers":"(,10.0.32767]","Microsoft.VisualBasic":"(,10.4.32767]","Microsoft.Win32.Primitives":"(,4.3.32767]","Microsoft.Win32.Registry":"(,5.0.32767]","runtime.any.System.Collections":"(,4.3.32767]","runtime.any.System.Diagnostics.Tools":"(,4.3.32767]","runtime.any.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.any.System.Globalization":"(,4.3.32767]","runtime.any.System.Globalization.Calendars":"(,4.3.32767]","runtime.any.System.IO":"(,4.3.32767]","runtime.any.System.Reflection":"(,4.3.32767]","runtime.any.System.Reflection.Extensions":"(,4.3.32767]","runtime.any.System.Reflection.Primitives":"(,4.3.32767]","runtime.any.System.Resources.ResourceManager":"(,4.3.32767]","runtime.any.System.Runtime":"(,4.3.32767]","runtime.any.System.Runtime.Handles":"(,4.3.32767]","runtime.any.System.Runtime.InteropServices":"(,4.3.32767]","runtime.any.System.Text.Encoding":"(,4.3.32767]","runtime.any.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.any.System.Threading.Tasks":"(,4.3.32767]","runtime.any.System.Threading.Timer":"(,4.3.32767]","runtime.aot.System.Collections":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tools":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.aot.System.Globalization":"(,4.3.32767]","runtime.aot.System.Globalization.Calendars":"(,4.3.32767]","runtime.aot.System.IO":"(,4.3.32767]","runtime.aot.System.Reflection":"(,4.3.32767]","runtime.aot.System.Reflection.Extensions":"(,4.3.32767]","runtime.aot.System.Reflection.Primitives":"(,4.3.32767]","runtime.aot.System.Resources.ResourceManager":"(,4.3.32767]","runtime.aot.System.Runtime":"(,4.3.32767]","runtime.aot.System.Runtime.Handles":"(,4.3.32767]","runtime.aot.System.Runtime.InteropServices":"(,4.3.32767]","runtime.aot.System.Text.Encoding":"(,4.3.32767]","runtime.aot.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.aot.System.Threading.Tasks":"(,4.3.32767]","runtime.aot.System.Threading.Timer":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.unix.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.unix.System.Console":"(,4.3.32767]","runtime.unix.System.Diagnostics.Debug":"(,4.3.32767]","runtime.unix.System.IO.FileSystem":"(,4.3.32767]","runtime.unix.System.Net.Primitives":"(,4.3.32767]","runtime.unix.System.Net.Sockets":"(,4.3.32767]","runtime.unix.System.Private.Uri":"(,4.3.32767]","runtime.unix.System.Runtime.Extensions":"(,4.3.32767]","runtime.win.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.win.System.Console":"(,4.3.32767]","runtime.win.System.Diagnostics.Debug":"(,4.3.32767]","runtime.win.System.IO.FileSystem":"(,4.3.32767]","runtime.win.System.Net.Primitives":"(,4.3.32767]","runtime.win.System.Net.Sockets":"(,4.3.32767]","runtime.win.System.Runtime.Extensions":"(,4.3.32767]","runtime.win10-arm-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-arm64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win10-x64-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-x86-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7-x86.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7.System.Private.Uri":"(,4.3.32767]","runtime.win8-arm.runtime.native.System.IO.Compression":"(,4.3.32767]","System.AppContext":"(,4.3.32767]","System.Buffers":"(,5.0.32767]","System.Collections":"(,4.3.32767]","System.Collections.Concurrent":"(,4.3.32767]","System.Collections.Immutable":"(,10.0.32767]","System.Collections.NonGeneric":"(,4.3.32767]","System.Collections.Specialized":"(,4.3.32767]","System.ComponentModel":"(,4.3.32767]","System.ComponentModel.Annotations":"(,4.3.32767]","System.ComponentModel.EventBasedAsync":"(,4.3.32767]","System.ComponentModel.Primitives":"(,4.3.32767]","System.ComponentModel.TypeConverter":"(,4.3.32767]","System.Console":"(,4.3.32767]","System.Data.Common":"(,4.3.32767]","System.Data.DataSetExtensions":"(,4.4.32767]","System.Diagnostics.Contracts":"(,4.3.32767]","System.Diagnostics.Debug":"(,4.3.32767]","System.Diagnostics.DiagnosticSource":"(,10.0.32767]","System.Diagnostics.EventLog":"(,10.0.32767]","System.Diagnostics.FileVersionInfo":"(,4.3.32767]","System.Diagnostics.Process":"(,4.3.32767]","System.Diagnostics.StackTrace":"(,4.3.32767]","System.Diagnostics.TextWriterTraceListener":"(,4.3.32767]","System.Diagnostics.Tools":"(,4.3.32767]","System.Diagnostics.TraceSource":"(,4.3.32767]","System.Diagnostics.Tracing":"(,4.3.32767]","System.Drawing.Primitives":"(,4.3.32767]","System.Dynamic.Runtime":"(,4.3.32767]","System.Formats.Asn1":"(,10.0.32767]","System.Formats.Cbor":"(,10.0.32767]","System.Formats.Tar":"(,10.0.32767]","System.Globalization":"(,4.3.32767]","System.Globalization.Calendars":"(,4.3.32767]","System.Globalization.Extensions":"(,4.3.32767]","System.IO":"(,4.3.32767]","System.IO.Compression":"(,4.3.32767]","System.IO.Compression.ZipFile":"(,4.3.32767]","System.IO.FileSystem":"(,4.3.32767]","System.IO.FileSystem.AccessControl":"(,4.4.32767]","System.IO.FileSystem.DriveInfo":"(,4.3.32767]","System.IO.FileSystem.Primitives":"(,4.3.32767]","System.IO.FileSystem.Watcher":"(,4.3.32767]","System.IO.IsolatedStorage":"(,4.3.32767]","System.IO.MemoryMappedFiles":"(,4.3.32767]","System.IO.Pipelines":"(,10.0.32767]","System.IO.Pipes":"(,4.3.32767]","System.IO.Pipes.AccessControl":"(,5.0.32767]","System.IO.UnmanagedMemoryStream":"(,4.3.32767]","System.Linq":"(,4.3.32767]","System.Linq.AsyncEnumerable":"(,10.0.32767]","System.Linq.Expressions":"(,4.3.32767]","System.Linq.Parallel":"(,4.3.32767]","System.Linq.Queryable":"(,4.3.32767]","System.Memory":"(,5.0.32767]","System.Net.Http":"(,4.3.32767]","System.Net.Http.Json":"(,10.0.32767]","System.Net.NameResolution":"(,4.3.32767]","System.Net.NetworkInformation":"(,4.3.32767]","System.Net.Ping":"(,4.3.32767]","System.Net.Primitives":"(,4.3.32767]","System.Net.Requests":"(,4.3.32767]","System.Net.Security":"(,4.3.32767]","System.Net.ServerSentEvents":"(,10.0.32767]","System.Net.Sockets":"(,4.3.32767]","System.Net.WebHeaderCollection":"(,4.3.32767]","System.Net.WebSockets":"(,4.3.32767]","System.Net.WebSockets.Client":"(,4.3.32767]","System.Numerics.Vectors":"(,5.0.32767]","System.ObjectModel":"(,4.3.32767]","System.Private.DataContractSerialization":"(,4.3.32767]","System.Private.Uri":"(,4.3.32767]","System.Reflection":"(,4.3.32767]","System.Reflection.DispatchProxy":"(,6.0.32767]","System.Reflection.Emit":"(,4.7.32767]","System.Reflection.Emit.ILGeneration":"(,4.7.32767]","System.Reflection.Emit.Lightweight":"(,4.7.32767]","System.Reflection.Extensions":"(,4.3.32767]","System.Reflection.Metadata":"(,10.0.32767]","System.Reflection.Primitives":"(,4.3.32767]","System.Reflection.TypeExtensions":"(,4.3.32767]","System.Resources.Reader":"(,4.3.32767]","System.Resources.ResourceManager":"(,4.3.32767]","System.Resources.Writer":"(,4.3.32767]","System.Runtime":"(,4.3.32767]","System.Runtime.CompilerServices.Unsafe":"(,7.0.32767]","System.Runtime.CompilerServices.VisualC":"(,4.3.32767]","System.Runtime.Extensions":"(,4.3.32767]","System.Runtime.Handles":"(,4.3.32767]","System.Runtime.InteropServices":"(,4.3.32767]","System.Runtime.InteropServices.RuntimeInformation":"(,4.3.32767]","System.Runtime.Loader":"(,4.3.32767]","System.Runtime.Numerics":"(,4.3.32767]","System.Runtime.Serialization.Formatters":"(,4.3.32767]","System.Runtime.Serialization.Json":"(,4.3.32767]","System.Runtime.Serialization.Primitives":"(,4.3.32767]","System.Runtime.Serialization.Xml":"(,4.3.32767]","System.Security.AccessControl":"(,6.0.32767]","System.Security.Claims":"(,4.3.32767]","System.Security.Cryptography.Algorithms":"(,4.3.32767]","System.Security.Cryptography.Cng":"(,5.0.32767]","System.Security.Cryptography.Csp":"(,4.3.32767]","System.Security.Cryptography.Encoding":"(,4.3.32767]","System.Security.Cryptography.OpenSsl":"(,5.0.32767]","System.Security.Cryptography.Primitives":"(,4.3.32767]","System.Security.Cryptography.X509Certificates":"(,4.3.32767]","System.Security.Cryptography.Xml":"(,10.0.32767]","System.Security.Principal":"(,4.3.32767]","System.Security.Principal.Windows":"(,5.0.32767]","System.Security.SecureString":"(,4.3.32767]","System.Text.Encoding":"(,4.3.32767]","System.Text.Encoding.CodePages":"(,10.0.32767]","System.Text.Encoding.Extensions":"(,4.3.32767]","System.Text.Encodings.Web":"(,10.0.32767]","System.Text.Json":"(,10.0.32767]","System.Text.RegularExpressions":"(,4.3.32767]","System.Threading":"(,4.3.32767]","System.Threading.AccessControl":"(,10.0.32767]","System.Threading.Channels":"(,10.0.32767]","System.Threading.Overlapped":"(,4.3.32767]","System.Threading.RateLimiting":"(,10.0.32767]","System.Threading.Tasks":"(,4.3.32767]","System.Threading.Tasks.Dataflow":"(,10.0.32767]","System.Threading.Tasks.Extensions":"(,5.0.32767]","System.Threading.Tasks.Parallel":"(,4.3.32767]","System.Threading.Thread":"(,4.3.32767]","System.Threading.ThreadPool":"(,4.3.32767]","System.Threading.Timer":"(,4.3.32767]","System.ValueTuple":"(,4.5.32767]","System.Xml.ReaderWriter":"(,4.3.32767]","System.Xml.XDocument":"(,4.3.32767]","System.Xml.XmlDocument":"(,4.3.32767]","System.Xml.XmlSerializer":"(,4.3.32767]","System.Xml.XPath":"(,4.3.32767]","System.Xml.XPath.XDocument":"(,5.0.32767]"}}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/rider.project.model.nuget.info b/wolverine-nats/WolverineAndNats/PlainListener/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..6cbdf54 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17700360714263209 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/PlainListener/obj/rider.project.restore.info b/wolverine-nats/WolverineAndNats/PlainListener/obj/rider.project.restore.info new file mode 100644 index 0000000..9d050ae --- /dev/null +++ b/wolverine-nats/WolverineAndNats/PlainListener/obj/rider.project.restore.info @@ -0,0 +1 @@ +17700382162658037 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/Extensions.cs b/wolverine-nats/WolverineAndNats/ServiceDefaults/Extensions.cs new file mode 100644 index 0000000..18cc330 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/Extensions.cs @@ -0,0 +1,130 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Diagnostics.HealthChecks; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Diagnostics.HealthChecks; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.ServiceDiscovery; +using OpenTelemetry; +using OpenTelemetry.Metrics; +using OpenTelemetry.Trace; + +namespace Microsoft.Extensions.Hosting; + +// Adds common Aspire services: service discovery, resilience, health checks, and OpenTelemetry. +// This project should be referenced by each service project in your solution. +// To learn more about using this project, see https://aka.ms/dotnet/aspire/service-defaults +public static class Extensions +{ + private const string HealthEndpointPath = "/health"; + private const string AlivenessEndpointPath = "/alive"; + + public static TBuilder AddServiceDefaults(this TBuilder builder) where TBuilder : IHostApplicationBuilder + { + builder.ConfigureOpenTelemetry(); + + builder.AddDefaultHealthChecks(); + + builder.Services.AddServiceDiscovery(); + + builder.Services.ConfigureHttpClientDefaults(http => + { + // Turn on resilience by default + http.AddStandardResilienceHandler(); + + // Turn on service discovery by default + http.AddServiceDiscovery(); + }); + + // Uncomment the following to restrict the allowed schemes for service discovery. + // builder.Services.Configure(options => + // { + // options.AllowedSchemes = ["https"]; + // }); + + return builder; + } + + public static TBuilder ConfigureOpenTelemetry(this TBuilder builder) + where TBuilder : IHostApplicationBuilder + { + builder.Logging.AddOpenTelemetry(logging => + { + logging.IncludeFormattedMessage = true; + logging.IncludeScopes = true; + }); + + builder.Services.AddOpenTelemetry() + .WithMetrics(metrics => + { + metrics.AddAspNetCoreInstrumentation() + .AddHttpClientInstrumentation() + .AddRuntimeInstrumentation(); + }) + .WithTracing(tracing => + { + tracing.AddSource(builder.Environment.ApplicationName) + .AddAspNetCoreInstrumentation(tracing => + // Exclude health check requests from tracing + tracing.Filter = context => + !context.Request.Path.StartsWithSegments(HealthEndpointPath) + && !context.Request.Path.StartsWithSegments(AlivenessEndpointPath) + ) + // Uncomment the following line to enable gRPC instrumentation (requires the OpenTelemetry.Instrumentation.GrpcNetClient package) + //.AddGrpcClientInstrumentation() + .AddHttpClientInstrumentation(); + }); + + builder.AddOpenTelemetryExporters(); + + return builder; + } + + private static TBuilder AddOpenTelemetryExporters(this TBuilder builder) + where TBuilder : IHostApplicationBuilder + { + var useOtlpExporter = !string.IsNullOrWhiteSpace(builder.Configuration["OTEL_EXPORTER_OTLP_ENDPOINT"]); + + if (useOtlpExporter) + { + builder.Services.AddOpenTelemetry().UseOtlpExporter(); + } + + // Uncomment the following lines to enable the Azure Monitor exporter (requires the Azure.Monitor.OpenTelemetry.AspNetCore package) + //if (!string.IsNullOrEmpty(builder.Configuration["APPLICATIONINSIGHTS_CONNECTION_STRING"])) + //{ + // builder.Services.AddOpenTelemetry() + // .UseAzureMonitor(); + //} + + return builder; + } + + public static TBuilder AddDefaultHealthChecks(this TBuilder builder) + where TBuilder : IHostApplicationBuilder + { + builder.Services.AddHealthChecks() + // Add a default liveness check to ensure app is responsive + .AddCheck("self", () => HealthCheckResult.Healthy(), ["live"]); + + return builder; + } + + public static WebApplication MapDefaultEndpoints(this WebApplication app) + { + // Adding health checks endpoints to applications in non-development environments has security implications. + // See https://aka.ms/dotnet/aspire/healthchecks for details before enabling these endpoints in non-development environments. + if (app.Environment.IsDevelopment()) + { + // All health checks must pass for app to be considered ready to accept traffic after starting + app.MapHealthChecks(HealthEndpointPath); + + // Only health checks tagged with the "live" tag must pass for app to be considered alive + app.MapHealthChecks(AlivenessEndpointPath, new HealthCheckOptions + { + Predicate = r => r.Tags.Contains("live") + }); + } + + return app; + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj b/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj new file mode 100644 index 0000000..938db20 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj @@ -0,0 +1,22 @@ + + + + net10.0 + enable + enable + true + + + + + + + + + + + + + + + diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/bin/Debug/net10.0/ServiceDefaults.deps.json b/wolverine-nats/WolverineAndNats/ServiceDefaults/bin/Debug/net10.0/ServiceDefaults.deps.json new file mode 100644 index 0000000..5ce48a3 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/bin/Debug/net10.0/ServiceDefaults.deps.json @@ -0,0 +1,413 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "ServiceDefaults/1.0.0": { + "dependencies": { + "Microsoft.Extensions.Http.Resilience": "10.1.0", + "Microsoft.Extensions.ServiceDiscovery": "10.1.0", + "OpenTelemetry.Exporter.OpenTelemetryProtocol": "1.14.0", + "OpenTelemetry.Extensions.Hosting": "1.14.0", + "OpenTelemetry.Instrumentation.AspNetCore": "1.14.0", + "OpenTelemetry.Instrumentation.Http": "1.14.0", + "OpenTelemetry.Instrumentation.Runtime": "1.14.0" + }, + "runtime": { + "ServiceDefaults.dll": {} + } + }, + "Microsoft.Extensions.AmbientMetadata.Application/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Telemetry": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Http.Diagnostics": "10.1.0", + "Microsoft.Extensions.Resilience": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Diagnostics.ExceptionSummarization": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0", + "Polly.Extensions": "8.4.2", + "Polly.RateLimiting": "8.4.2" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "dependencies": { + "Microsoft.Extensions.ServiceDiscovery.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "dependencies": { + "Microsoft.Extensions.AmbientMetadata.Application": "10.1.0", + "Microsoft.Extensions.DependencyInjection.AutoActivation": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "dependencies": { + "Microsoft.Extensions.Compliance.Abstractions": "10.1.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "10.100.25.60801" + } + } + }, + "OpenTelemetry/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Api/1.14.0": { + "runtime": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.14.0.1849" + } + } + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "assemblyVersion": "1.14.0.761", + "fileVersion": "1.14.0.761" + } + } + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "assemblyVersion": "1.14.0.774", + "fileVersion": "1.14.0.774" + } + } + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "assemblyVersion": "1.14.0.775", + "fileVersion": "1.14.0.775" + } + } + }, + "Polly.Core/8.4.2": { + "runtime": { + "lib/net8.0/Polly.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + }, + "Polly.Extensions/8.4.2": { + "dependencies": { + "Polly.Core": "8.4.2" + }, + "runtime": { + "lib/net8.0/Polly.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + }, + "Polly.RateLimiting/8.4.2": { + "dependencies": { + "Polly.Core": "8.4.2" + }, + "runtime": { + "lib/net8.0/Polly.RateLimiting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + } + } + }, + "libraries": { + "ServiceDefaults/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.AmbientMetadata.Application/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+T2Ax2fgw7T7nlhio+ZtgSyYGfevHCOXNPqO0vxA+f2HmbtfwAnIwHEE/jm1/4uFRDDP8PEENpxAhbucg+wUWg==", + "path": "microsoft.extensions.ambientmetadata.application/10.1.0", + "hashPath": "microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M3JWrgZMkVzyEybZzNkTiC/e8U1ipXTi8xm8bj+PHHp4AcEmhmIEqnxRS0VHVCKZjLkOPt2hY2CIisUFQ6gqLA==", + "path": "microsoft.extensions.compliance.abstractions/10.1.0", + "hashPath": "microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-O052pqWkdVNXaj3n9E4x6nLL7sG860434gLh7XHhFp/KpyAY9/rCk9NJUinYfQnDkAA8UgCHimVZz+lTjnEwzQ==", + "path": "microsoft.extensions.dependencyinjection.autoactivation/10.1.0", + "hashPath": "microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q76peCoP6vXXf95RLFeMGzcaQs8l3lk+n/ZOTi2i+OLd3R0HzzB0Fswjua4NY1viIbA1s6l1mqRjQbxY7+Jylw==", + "path": "microsoft.extensions.diagnostics.exceptionsummarization/10.1.0", + "hashPath": "microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RA1Egggf5o7/5AI5TIxOmmV7T06X2jvA9nSlJazU++X/pgu48EDAjDflTq/+kAk0FHUm9ZpAiBVdWfOP2opAbQ==", + "path": "microsoft.extensions.http.diagnostics/10.1.0", + "hashPath": "microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rwDoQBB93yQjd1XtcZBnOLRX23LW7Z49TIAp1sn7i2r/pW3y4iB8E+EEL0ZyOPuEZxT9xEVN9y39KWlG1FDPkQ==", + "path": "microsoft.extensions.http.resilience/10.1.0", + "hashPath": "microsoft.extensions.http.resilience.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NzA+c4m2q92qZPjiZLFm+ToeQC3KFqzP+Dr/1pV5y9d7H/hDM2Yxno0kcw5DGpSvS0s6Pwsp+FWMdk/kXBPZ7g==", + "path": "microsoft.extensions.resilience/10.1.0", + "hashPath": "microsoft.extensions.resilience.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b78YWSrwXQI/pSzKIe/TO1lC2FcBfrux6+AmgTRStKcJYHNU1r8ii1GICRNv37CobIcaW8w33LW+xmThqIG/bg==", + "path": "microsoft.extensions.servicediscovery/10.1.0", + "hashPath": "microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uNPOkiRJx6J01aoHQBoX+QR6ZmQpIYdg/OO9+x/M3lkY6JTHBxp3pohcOyEe9l77MT8+3fVEP84/Uw+JODkA0Q==", + "path": "microsoft.extensions.servicediscovery.abstractions/10.1.0", + "hashPath": "microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OFnpwOBRZZXMMySvM7eJsEQ87ED5SaRbxHg/an1u89MWHw0mXUUbx5WPb5XFN0uS8kJPe6M+ZMRYwRP0nJeDPA==", + "path": "microsoft.extensions.telemetry/10.1.0", + "hashPath": "microsoft.extensions.telemetry.10.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0jAF2b0YJ1LOtunmo3PzSoJOx/ThhcGH5Y5kaV0jeM0BUlyr9orjg+fH5YabqnPSmwcN/DSTj0iZ7UwDISn5ag==", + "path": "microsoft.extensions.telemetry.abstractions/10.1.0", + "hashPath": "microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512" + }, + "OpenTelemetry/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aiPBAr1+0dPDItH++MQQr5UgMf4xiybruzNlAoYYMYN3UUk+mGRcoKuZy4Z4rhhWUZIpK2Xhe7wUUXSTM32duQ==", + "path": "opentelemetry/1.14.0", + "hashPath": "opentelemetry.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Api/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-foHci6viUw1f3gUB8qzz3Rk02xZIWMo299X0rxK0MoOWok/3dUVru+KKdY7WIoSHwRGpxGKkmAz9jIk2RFNbsQ==", + "path": "opentelemetry.api/1.14.0", + "hashPath": "opentelemetry.api.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/lxOM92v+zU5I0rGl5tXAGz6EJtxk2MvzZ0VN6F6L5pMqT6s6RCXnGWXg6fW+vtZJsllBlQaf/VLPTzgefJpg==", + "path": "opentelemetry.api.providerbuilderextensions/1.14.0", + "hashPath": "opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7ELExeje+T/KOywHuHwZBGQNtYlepUaYRFXWgoEaT1iKpFJVwOlE1Y2+uqHI2QQmah0Ue+XgRmDy924vWHfJ6Q==", + "path": "opentelemetry.exporter.opentelemetryprotocol/1.14.0", + "hashPath": "opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZAxkCIa3Q3YWZ1sGrolXfkhPqn2PFSz2Cel74em/fATZgY5ixlw6MQp2icmqKCz4C7M1W2G0b92K3rX8mOtFRg==", + "path": "opentelemetry.extensions.hosting/1.14.0", + "hashPath": "opentelemetry.extensions.hosting.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NQAQpFa3a4ofPUYwxcwtNPGpuRNwwx1HM7MnLEESYjYkhfhER+PqqGywW65rWd7bJEc1/IaL+xbmHH99pYDE0A==", + "path": "opentelemetry.instrumentation.aspnetcore/1.14.0", + "hashPath": "opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uH8X1fYnywrgaUrSbemKvFiFkBwY7ZbBU7Wh4A/ORQmdpF3G/5STidY4PlK4xYuIv9KkdMXH/vkpvzQcayW70g==", + "path": "opentelemetry.instrumentation.http/1.14.0", + "hashPath": "opentelemetry.instrumentation.http.1.14.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6o4JDOQaKv6bInAYZxuyxxfMKr6hFpwLnKEgQ+q+oBNA9Fm1sysjFCOzRzk7U0WD86LsRPXX+chv1vJIg7cfg==", + "path": "opentelemetry.instrumentation.runtime/1.14.0", + "hashPath": "opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512" + }, + "Polly.Core/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BpE2I6HBYYA5tF0Vn4eoQOGYTYIK1BlF5EXVgkWGn3mqUUjbXAr13J6fZVbp7Q3epRR8yshacBMlsHMhpOiV3g==", + "path": "polly.core/8.4.2", + "hashPath": "polly.core.8.4.2.nupkg.sha512" + }, + "Polly.Extensions/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GZ9vRVmR0jV2JtZavt+pGUsQ1O1cuRKG7R7VOZI6ZDy9y6RNPvRvXK1tuS4ffUrv8L0FTea59oEuQzgS0R7zSA==", + "path": "polly.extensions/8.4.2", + "hashPath": "polly.extensions.8.4.2.nupkg.sha512" + }, + "Polly.RateLimiting/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehTImQ/eUyO07VYW2WvwSmU9rRH200SKJ/3jku9rOkyWE0A2JxNFmAVms8dSn49QLSjmjFRRSgfNyOgr/2PSmA==", + "path": "polly.ratelimiting/8.4.2", + "hashPath": "polly.ratelimiting.8.4.2.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/bin/Debug/net10.0/ServiceDefaults.dll b/wolverine-nats/WolverineAndNats/ServiceDefaults/bin/Debug/net10.0/ServiceDefaults.dll new file mode 100644 index 0000000..f8273ad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ServiceDefaults/bin/Debug/net10.0/ServiceDefaults.dll differ diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/bin/Debug/net10.0/ServiceDefaults.pdb b/wolverine-nats/WolverineAndNats/ServiceDefaults/bin/Debug/net10.0/ServiceDefaults.pdb new file mode 100644 index 0000000..eafc129 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ServiceDefaults/bin/Debug/net10.0/ServiceDefaults.pdb differ diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.AssemblyInfo.cs b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.AssemblyInfo.cs new file mode 100644 index 0000000..3528f9b --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ServiceDefaults")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+029fc808861743407d1014ffb7cabf40b443645a")] +[assembly: System.Reflection.AssemblyProductAttribute("ServiceDefaults")] +[assembly: System.Reflection.AssemblyTitleAttribute("ServiceDefaults")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.AssemblyInfoInputs.cache b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b956226 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +301514835ac4fa4817256e784d56e78f7085d4779c489a1f191638eb829e079a diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.GeneratedMSBuildEditorConfig.editorconfig b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..78b08ec --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ServiceDefaults +build_property.ProjectDir = /Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.GlobalUsings.g.cs b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.assets.cache b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.assets.cache new file mode 100644 index 0000000..6e8d9ef Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.assets.cache differ diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.csproj.AssemblyReference.cache b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.csproj.AssemblyReference.cache new file mode 100644 index 0000000..72ef653 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.csproj.AssemblyReference.cache differ diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.csproj.CoreCompileInputs.cache b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a7308d7 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a7cf9c76160c53c7b7bae7f466269ee5fe8b97e9aaf57e9cc3a07e0704ceb46b diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.csproj.FileListAbsolute.txt b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..7e78264 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.csproj.FileListAbsolute.txt @@ -0,0 +1,13 @@ +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/bin/Debug/net10.0/ServiceDefaults.deps.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/bin/Debug/net10.0/ServiceDefaults.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/bin/Debug/net10.0/ServiceDefaults.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.csproj.AssemblyReference.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.GeneratedMSBuildEditorConfig.editorconfig +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.AssemblyInfoInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.AssemblyInfo.cs +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.csproj.CoreCompileInputs.cache +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.sourcelink.json +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/refint/ServiceDefaults.dll +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.pdb +/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ref/ServiceDefaults.dll diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.dll b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.dll new file mode 100644 index 0000000..f8273ad Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.dll differ diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.pdb b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.pdb new file mode 100644 index 0000000..eafc129 Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.pdb differ diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.sourcelink.json b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.sourcelink.json new file mode 100644 index 0000000..a43e21e --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ServiceDefaults.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/Users/jeffrygonzalez/work/reference/*":"https://raw.githubusercontent.com/HypertheoryTraining/reference/029fc808861743407d1014ffb7cabf40b443645a/*"}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ref/ServiceDefaults.dll b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ref/ServiceDefaults.dll new file mode 100644 index 0000000..cc00c6a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/ref/ServiceDefaults.dll differ diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/refint/ServiceDefaults.dll b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/refint/ServiceDefaults.dll new file mode 100644 index 0000000..cc00c6a Binary files /dev/null and b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/Debug/net10.0/refint/ServiceDefaults.dll differ diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/ServiceDefaults.csproj.nuget.dgspec.json b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/ServiceDefaults.csproj.nuget.dgspec.json new file mode 100644 index 0000000..57cfc3f --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/ServiceDefaults.csproj.nuget.dgspec.json @@ -0,0 +1,514 @@ +{ + "format": 1, + "restore": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": {} + }, + "projects": { + "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj", + "projectName": "ServiceDefaults", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.Extensions.Http.Resilience": { + "target": "Package", + "version": "[10.1.0, )" + }, + "Microsoft.Extensions.ServiceDiscovery": { + "target": "Package", + "version": "[10.1.0, )" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Extensions.Hosting": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.AspNetCore": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.Http": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.Runtime": { + "target": "Package", + "version": "[1.14.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/ServiceDefaults.csproj.nuget.g.props b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/ServiceDefaults.csproj.nuget.g.props new file mode 100644 index 0000000..e0bc6a5 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/ServiceDefaults.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/jeffrygonzalez/.nuget/packages/ + /Users/jeffrygonzalez/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/ServiceDefaults.csproj.nuget.g.targets b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/ServiceDefaults.csproj.nuget.g.targets new file mode 100644 index 0000000..b8b43c9 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/ServiceDefaults.csproj.nuget.g.targets @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/project.assets.json b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/project.assets.json new file mode 100644 index 0000000..2ec08e8 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/project.assets.json @@ -0,0 +1,1471 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Microsoft.Extensions.AmbientMetadata.Application/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Telemetry": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Http.Diagnostics": "10.1.0", + "Microsoft.Extensions.Resilience": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Http.Resilience.targets": {} + } + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Diagnostics.ExceptionSummarization": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0", + "Polly.Extensions": "8.4.2", + "Polly.RateLimiting": "8.4.2" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Resilience.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ServiceDiscovery.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.AmbientMetadata.Application": "10.1.0", + "Microsoft.Extensions.DependencyInjection.AutoActivation": "10.1.0", + "Microsoft.Extensions.Telemetry.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Compliance.Abstractions": "10.1.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.props": {}, + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.targets": {} + } + }, + "OpenTelemetry/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Api/1.14.0": { + "type": "package", + "compile": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry": "1.14.0" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".dll.sigstore.json;.xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".dll.sigstore.json;.xml" + } + } + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api": "[1.14.0, 2.0.0)" + }, + "compile": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { + "related": ".xml" + } + } + }, + "Polly.Core/8.4.2": { + "type": "package", + "compile": { + "lib/net8.0/Polly.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Polly.Extensions/8.4.2": { + "type": "package", + "dependencies": { + "Polly.Core": "8.4.2" + }, + "compile": { + "lib/net8.0/Polly.Extensions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.Extensions.dll": { + "related": ".pdb;.xml" + } + } + }, + "Polly.RateLimiting/8.4.2": { + "type": "package", + "dependencies": { + "Polly.Core": "8.4.2" + }, + "compile": { + "lib/net8.0/Polly.RateLimiting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Polly.RateLimiting.dll": { + "related": ".pdb;.xml" + } + } + } + } + }, + "libraries": { + "Microsoft.Extensions.AmbientMetadata.Application/10.1.0": { + "sha512": "+T2Ax2fgw7T7nlhio+ZtgSyYGfevHCOXNPqO0vxA+f2HmbtfwAnIwHEE/jm1/4uFRDDP8PEENpxAhbucg+wUWg==", + "type": "package", + "path": "microsoft.extensions.ambientmetadata.application/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.AmbientMetadata.Application.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net10.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net462/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net462/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net8.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net8.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/net9.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/net9.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "lib/netstandard2.0/Microsoft.Extensions.AmbientMetadata.Application.dll", + "lib/netstandard2.0/Microsoft.Extensions.AmbientMetadata.Application.xml", + "microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512", + "microsoft.extensions.ambientmetadata.application.nuspec" + ] + }, + "Microsoft.Extensions.Compliance.Abstractions/10.1.0": { + "sha512": "M3JWrgZMkVzyEybZzNkTiC/e8U1ipXTi8xm8bj+PHHp4AcEmhmIEqnxRS0VHVCKZjLkOPt2hY2CIisUFQ6gqLA==", + "type": "package", + "path": "microsoft.extensions.compliance.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Compliance.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Compliance.Abstractions.xml", + "microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.compliance.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/10.1.0": { + "sha512": "O052pqWkdVNXaj3n9E4x6nLL7sG860434gLh7XHhFp/KpyAY9/rCk9NJUinYfQnDkAA8UgCHimVZz+lTjnEwzQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.autoactivation/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.AutoActivation.xml", + "microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.autoactivation.nuspec" + ] + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/10.1.0": { + "sha512": "Q76peCoP6vXXf95RLFeMGzcaQs8l3lk+n/ZOTi2i+OLd3R0HzzB0Fswjua4NY1viIbA1s6l1mqRjQbxY7+Jylw==", + "type": "package", + "path": "microsoft.extensions.diagnostics.exceptionsummarization/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml", + "microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512", + "microsoft.extensions.diagnostics.exceptionsummarization.nuspec" + ] + }, + "Microsoft.Extensions.Http.Diagnostics/10.1.0": { + "sha512": "RA1Egggf5o7/5AI5TIxOmmV7T06X2jvA9nSlJazU++X/pgu48EDAjDflTq/+kAk0FHUm9ZpAiBVdWfOP2opAbQ==", + "type": "package", + "path": "microsoft.extensions.http.diagnostics/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Http.Diagnostics.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net10.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net462/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/net9.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/net9.0/Microsoft.Extensions.Http.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.Diagnostics.xml", + "microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512", + "microsoft.extensions.http.diagnostics.nuspec" + ] + }, + "Microsoft.Extensions.Http.Resilience/10.1.0": { + "sha512": "rwDoQBB93yQjd1XtcZBnOLRX23LW7Z49TIAp1sn7i2r/pW3y4iB8E+EEL0ZyOPuEZxT9xEVN9y39KWlG1FDPkQ==", + "type": "package", + "path": "microsoft.extensions.http.resilience/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Http.Resilience.net462.targets", + "buildTransitive/net462/Microsoft.Extensions.Http.Resilience.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Http.Resilience.targets", + "lib/net10.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net10.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/net462/Microsoft.Extensions.Http.Resilience.dll", + "lib/net462/Microsoft.Extensions.Http.Resilience.xml", + "lib/net8.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net8.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/net9.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/net9.0/Microsoft.Extensions.Http.Resilience.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.Resilience.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.Resilience.xml", + "microsoft.extensions.http.resilience.10.1.0.nupkg.sha512", + "microsoft.extensions.http.resilience.nuspec" + ] + }, + "Microsoft.Extensions.Resilience/10.1.0": { + "sha512": "NzA+c4m2q92qZPjiZLFm+ToeQC3KFqzP+Dr/1pV5y9d7H/hDM2Yxno0kcw5DGpSvS0s6Pwsp+FWMdk/kXBPZ7g==", + "type": "package", + "path": "microsoft.extensions.resilience/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Resilience.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Resilience.dll", + "lib/net10.0/Microsoft.Extensions.Resilience.xml", + "lib/net462/Microsoft.Extensions.Resilience.dll", + "lib/net462/Microsoft.Extensions.Resilience.xml", + "lib/net8.0/Microsoft.Extensions.Resilience.dll", + "lib/net8.0/Microsoft.Extensions.Resilience.xml", + "lib/net9.0/Microsoft.Extensions.Resilience.dll", + "lib/net9.0/Microsoft.Extensions.Resilience.xml", + "lib/netstandard2.0/Microsoft.Extensions.Resilience.dll", + "lib/netstandard2.0/Microsoft.Extensions.Resilience.xml", + "microsoft.extensions.resilience.10.1.0.nupkg.sha512", + "microsoft.extensions.resilience.nuspec" + ] + }, + "Microsoft.Extensions.ServiceDiscovery/10.1.0": { + "sha512": "b78YWSrwXQI/pSzKIe/TO1lC2FcBfrux6+AmgTRStKcJYHNU1r8ii1GICRNv37CobIcaW8w33LW+xmThqIG/bg==", + "type": "package", + "path": "microsoft.extensions.servicediscovery/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.xml", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.dll", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.xml", + "microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512", + "microsoft.extensions.servicediscovery.nuspec" + ] + }, + "Microsoft.Extensions.ServiceDiscovery.Abstractions/10.1.0": { + "sha512": "uNPOkiRJx6J01aoHQBoX+QR6ZmQpIYdg/OO9+x/M3lkY6JTHBxp3pohcOyEe9l77MT8+3fVEP84/Uw+JODkA0Q==", + "type": "package", + "path": "microsoft.extensions.servicediscovery.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net462/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.ServiceDiscovery.Abstractions.xml", + "microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.servicediscovery.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Telemetry/10.1.0": { + "sha512": "OFnpwOBRZZXMMySvM7eJsEQ87ED5SaRbxHg/an1u89MWHw0mXUUbx5WPb5XFN0uS8kJPe6M+ZMRYwRP0nJeDPA==", + "type": "package", + "path": "microsoft.extensions.telemetry/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "buildTransitive/net462/Microsoft.Extensions.Telemetry.targets", + "buildTransitive/net8.0/_._", + "lib/net10.0/Microsoft.Extensions.Telemetry.dll", + "lib/net10.0/Microsoft.Extensions.Telemetry.xml", + "lib/net462/Microsoft.Extensions.Telemetry.dll", + "lib/net462/Microsoft.Extensions.Telemetry.xml", + "lib/net8.0/Microsoft.Extensions.Telemetry.dll", + "lib/net8.0/Microsoft.Extensions.Telemetry.xml", + "lib/net9.0/Microsoft.Extensions.Telemetry.dll", + "lib/net9.0/Microsoft.Extensions.Telemetry.xml", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.dll", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.xml", + "microsoft.extensions.telemetry.10.1.0.nupkg.sha512", + "microsoft.extensions.telemetry.nuspec" + ] + }, + "Microsoft.Extensions.Telemetry.Abstractions/10.1.0": { + "sha512": "0jAF2b0YJ1LOtunmo3PzSoJOx/ThhcGH5Y5kaV0jeM0BUlyr9orjg+fH5YabqnPSmwcN/DSTj0iZ7UwDISn5ag==", + "type": "package", + "path": "microsoft.extensions.telemetry.abstractions/10.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "analyzers/dotnet/cs/Microsoft.Gen.Logging.dll", + "analyzers/dotnet/cs/Microsoft.Gen.Metrics.dll", + "buildTransitive/net462/Microsoft.Extensions.Telemetry.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Telemetry.Abstractions.props", + "buildTransitive/net6.0/Microsoft.Extensions.Telemetry.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.props", + "buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Telemetry.Abstractions.xml", + "microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512", + "microsoft.extensions.telemetry.abstractions.nuspec" + ] + }, + "OpenTelemetry/1.14.0": { + "sha512": "aiPBAr1+0dPDItH++MQQr5UgMf4xiybruzNlAoYYMYN3UUk+mGRcoKuZy4Z4rhhWUZIpK2Xhe7wUUXSTM32duQ==", + "type": "package", + "path": "opentelemetry/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.dll", + "lib/net10.0/OpenTelemetry.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.xml", + "lib/net462/OpenTelemetry.dll", + "lib/net462/OpenTelemetry.dll.sigstore.json", + "lib/net462/OpenTelemetry.xml", + "lib/net8.0/OpenTelemetry.dll", + "lib/net8.0/OpenTelemetry.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.xml", + "lib/net9.0/OpenTelemetry.dll", + "lib/net9.0/OpenTelemetry.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.xml", + "lib/netstandard2.0/OpenTelemetry.dll", + "lib/netstandard2.0/OpenTelemetry.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.xml", + "lib/netstandard2.1/OpenTelemetry.dll", + "lib/netstandard2.1/OpenTelemetry.dll.sigstore.json", + "lib/netstandard2.1/OpenTelemetry.xml", + "opentelemetry-icon-color.png", + "opentelemetry.1.14.0.nupkg.sha512", + "opentelemetry.nuspec" + ] + }, + "OpenTelemetry.Api/1.14.0": { + "sha512": "foHci6viUw1f3gUB8qzz3Rk02xZIWMo299X0rxK0MoOWok/3dUVru+KKdY7WIoSHwRGpxGKkmAz9jIk2RFNbsQ==", + "type": "package", + "path": "opentelemetry.api/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Api.dll", + "lib/net10.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Api.xml", + "lib/net462/OpenTelemetry.Api.dll", + "lib/net462/OpenTelemetry.Api.dll.sigstore.json", + "lib/net462/OpenTelemetry.Api.xml", + "lib/net8.0/OpenTelemetry.Api.dll", + "lib/net8.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Api.xml", + "lib/net9.0/OpenTelemetry.Api.dll", + "lib/net9.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Api.xml", + "lib/netstandard2.0/OpenTelemetry.Api.dll", + "lib/netstandard2.0/OpenTelemetry.Api.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Api.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.1.14.0.nupkg.sha512", + "opentelemetry.api.nuspec" + ] + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.14.0": { + "sha512": "i/lxOM92v+zU5I0rGl5tXAGz6EJtxk2MvzZ0VN6F6L5pMqT6s6RCXnGWXg6fW+vtZJsllBlQaf/VLPTzgefJpg==", + "type": "package", + "path": "opentelemetry.api.providerbuilderextensions/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512", + "opentelemetry.api.providerbuilderextensions.nuspec" + ] + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.14.0": { + "sha512": "7ELExeje+T/KOywHuHwZBGQNtYlepUaYRFXWgoEaT1iKpFJVwOlE1Y2+uqHI2QQmah0Ue+XgRmDy924vWHfJ6Q==", + "type": "package", + "path": "opentelemetry.exporter.opentelemetryprotocol/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "opentelemetry-icon-color.png", + "opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512", + "opentelemetry.exporter.opentelemetryprotocol.nuspec" + ] + }, + "OpenTelemetry.Extensions.Hosting/1.14.0": { + "sha512": "ZAxkCIa3Q3YWZ1sGrolXfkhPqn2PFSz2Cel74em/fATZgY5ixlw6MQp2icmqKCz4C7M1W2G0b92K3rX8mOtFRg==", + "type": "package", + "path": "opentelemetry.extensions.hosting/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net10.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net462/OpenTelemetry.Extensions.Hosting.xml", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.xml", + "opentelemetry-icon-color.png", + "opentelemetry.extensions.hosting.1.14.0.nupkg.sha512", + "opentelemetry.extensions.hosting.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.14.0": { + "sha512": "NQAQpFa3a4ofPUYwxcwtNPGpuRNwwx1HM7MnLEESYjYkhfhER+PqqGywW65rWd7bJEc1/IaL+xbmHH99pYDE0A==", + "type": "package", + "path": "opentelemetry.instrumentation.aspnetcore/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.aspnetcore.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.Http/1.14.0": { + "sha512": "uH8X1fYnywrgaUrSbemKvFiFkBwY7ZbBU7Wh4A/ORQmdpF3G/5STidY4PlK4xYuIv9KkdMXH/vkpvzQcayW70g==", + "type": "package", + "path": "opentelemetry.instrumentation.http/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.Http.xml", + "lib/net462/OpenTelemetry.Instrumentation.Http.dll", + "lib/net462/OpenTelemetry.Instrumentation.Http.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.Http.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.http.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.http.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.Runtime/1.14.0": { + "sha512": "Z6o4JDOQaKv6bInAYZxuyxxfMKr6hFpwLnKEgQ+q+oBNA9Fm1sysjFCOzRzk7U0WD86LsRPXX+chv1vJIg7cfg==", + "type": "package", + "path": "opentelemetry.instrumentation.runtime/1.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/net462/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net462/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.Runtime.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Runtime.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Runtime.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512", + "opentelemetry.instrumentation.runtime.nuspec" + ] + }, + "Polly.Core/8.4.2": { + "sha512": "BpE2I6HBYYA5tF0Vn4eoQOGYTYIK1BlF5EXVgkWGn3mqUUjbXAr13J6fZVbp7Q3epRR8yshacBMlsHMhpOiV3g==", + "type": "package", + "path": "polly.core/8.4.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Polly.Core.dll", + "lib/net462/Polly.Core.pdb", + "lib/net462/Polly.Core.xml", + "lib/net472/Polly.Core.dll", + "lib/net472/Polly.Core.pdb", + "lib/net472/Polly.Core.xml", + "lib/net6.0/Polly.Core.dll", + "lib/net6.0/Polly.Core.pdb", + "lib/net6.0/Polly.Core.xml", + "lib/net8.0/Polly.Core.dll", + "lib/net8.0/Polly.Core.pdb", + "lib/net8.0/Polly.Core.xml", + "lib/netstandard2.0/Polly.Core.dll", + "lib/netstandard2.0/Polly.Core.pdb", + "lib/netstandard2.0/Polly.Core.xml", + "package-icon.png", + "package-readme.md", + "polly.core.8.4.2.nupkg.sha512", + "polly.core.nuspec" + ] + }, + "Polly.Extensions/8.4.2": { + "sha512": "GZ9vRVmR0jV2JtZavt+pGUsQ1O1cuRKG7R7VOZI6ZDy9y6RNPvRvXK1tuS4ffUrv8L0FTea59oEuQzgS0R7zSA==", + "type": "package", + "path": "polly.extensions/8.4.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Polly.Extensions.dll", + "lib/net462/Polly.Extensions.pdb", + "lib/net462/Polly.Extensions.xml", + "lib/net472/Polly.Extensions.dll", + "lib/net472/Polly.Extensions.pdb", + "lib/net472/Polly.Extensions.xml", + "lib/net6.0/Polly.Extensions.dll", + "lib/net6.0/Polly.Extensions.pdb", + "lib/net6.0/Polly.Extensions.xml", + "lib/net8.0/Polly.Extensions.dll", + "lib/net8.0/Polly.Extensions.pdb", + "lib/net8.0/Polly.Extensions.xml", + "lib/netstandard2.0/Polly.Extensions.dll", + "lib/netstandard2.0/Polly.Extensions.pdb", + "lib/netstandard2.0/Polly.Extensions.xml", + "package-icon.png", + "package-readme.md", + "polly.extensions.8.4.2.nupkg.sha512", + "polly.extensions.nuspec" + ] + }, + "Polly.RateLimiting/8.4.2": { + "sha512": "ehTImQ/eUyO07VYW2WvwSmU9rRH200SKJ/3jku9rOkyWE0A2JxNFmAVms8dSn49QLSjmjFRRSgfNyOgr/2PSmA==", + "type": "package", + "path": "polly.ratelimiting/8.4.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Polly.RateLimiting.dll", + "lib/net462/Polly.RateLimiting.pdb", + "lib/net462/Polly.RateLimiting.xml", + "lib/net472/Polly.RateLimiting.dll", + "lib/net472/Polly.RateLimiting.pdb", + "lib/net472/Polly.RateLimiting.xml", + "lib/net6.0/Polly.RateLimiting.dll", + "lib/net6.0/Polly.RateLimiting.pdb", + "lib/net6.0/Polly.RateLimiting.xml", + "lib/net8.0/Polly.RateLimiting.dll", + "lib/net8.0/Polly.RateLimiting.pdb", + "lib/net8.0/Polly.RateLimiting.xml", + "lib/netstandard2.0/Polly.RateLimiting.dll", + "lib/netstandard2.0/Polly.RateLimiting.pdb", + "lib/netstandard2.0/Polly.RateLimiting.xml", + "package-icon.png", + "package-readme.md", + "polly.ratelimiting.8.4.2.nupkg.sha512", + "polly.ratelimiting.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Microsoft.Extensions.Http.Resilience >= 10.1.0", + "Microsoft.Extensions.ServiceDiscovery >= 10.1.0", + "OpenTelemetry.Exporter.OpenTelemetryProtocol >= 1.14.0", + "OpenTelemetry.Extensions.Hosting >= 1.14.0", + "OpenTelemetry.Instrumentation.AspNetCore >= 1.14.0", + "OpenTelemetry.Instrumentation.Http >= 1.14.0", + "OpenTelemetry.Instrumentation.Runtime >= 1.14.0" + ] + }, + "packageFolders": { + "/Users/jeffrygonzalez/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj", + "projectName": "ServiceDefaults", + "projectPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj", + "packagesPath": "/Users/jeffrygonzalez/.nuget/packages/", + "outputPath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/jeffrygonzalez/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.Extensions.Http.Resilience": { + "target": "Package", + "version": "[10.1.0, )" + }, + "Microsoft.Extensions.ServiceDiscovery": { + "target": "Package", + "version": "[10.1.0, )" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Extensions.Hosting": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.AspNetCore": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.Http": { + "target": "Package", + "version": "[1.14.0, )" + }, + "OpenTelemetry.Instrumentation.Runtime": { + "target": "Package", + "version": "[1.14.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/project.nuget.cache b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/project.nuget.cache new file mode 100644 index 0000000..368655d --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/project.nuget.cache @@ -0,0 +1,31 @@ +{ + "version": 2, + "dgSpecHash": "AWUdClxs4mo=", + "success": true, + "projectFilePath": "/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj", + "expectedPackageFiles": [ + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.ambientmetadata.application/10.1.0/microsoft.extensions.ambientmetadata.application.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.compliance.abstractions/10.1.0/microsoft.extensions.compliance.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.dependencyinjection.autoactivation/10.1.0/microsoft.extensions.dependencyinjection.autoactivation.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.diagnostics.exceptionsummarization/10.1.0/microsoft.extensions.diagnostics.exceptionsummarization.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.http.diagnostics/10.1.0/microsoft.extensions.http.diagnostics.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.http.resilience/10.1.0/microsoft.extensions.http.resilience.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.resilience/10.1.0/microsoft.extensions.resilience.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.servicediscovery/10.1.0/microsoft.extensions.servicediscovery.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.servicediscovery.abstractions/10.1.0/microsoft.extensions.servicediscovery.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.telemetry/10.1.0/microsoft.extensions.telemetry.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/microsoft.extensions.telemetry.abstractions/10.1.0/microsoft.extensions.telemetry.abstractions.10.1.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry/1.14.0/opentelemetry.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.api/1.14.0/opentelemetry.api.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.api.providerbuilderextensions/1.14.0/opentelemetry.api.providerbuilderextensions.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.exporter.opentelemetryprotocol/1.14.0/opentelemetry.exporter.opentelemetryprotocol.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.extensions.hosting/1.14.0/opentelemetry.extensions.hosting.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.aspnetcore/1.14.0/opentelemetry.instrumentation.aspnetcore.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.http/1.14.0/opentelemetry.instrumentation.http.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/opentelemetry.instrumentation.runtime/1.14.0/opentelemetry.instrumentation.runtime.1.14.0.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.core/8.4.2/polly.core.8.4.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.extensions/8.4.2/polly.extensions.8.4.2.nupkg.sha512", + "/Users/jeffrygonzalez/.nuget/packages/polly.ratelimiting/8.4.2/polly.ratelimiting.8.4.2.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/project.packagespec.json b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/project.packagespec.json new file mode 100644 index 0000000..0ad0c95 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj","projectName":"ServiceDefaults","projectPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/ServiceDefaults.csproj","outputPath":"/Users/jeffrygonzalez/work/reference/examples/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net10.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net10.0":{"targetAlias":"net10.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"all"},"SdkAnalysisLevel":"10.0.100"}"frameworks":{"net10.0":{"targetAlias":"net10.0","dependencies":{"Microsoft.Extensions.Http.Resilience":{"target":"Package","version":"[10.1.0, )"},"Microsoft.Extensions.ServiceDiscovery":{"target":"Package","version":"[10.1.0, )"},"OpenTelemetry.Exporter.OpenTelemetryProtocol":{"target":"Package","version":"[1.14.0, )"},"OpenTelemetry.Extensions.Hosting":{"target":"Package","version":"[1.14.0, )"},"OpenTelemetry.Instrumentation.AspNetCore":{"target":"Package","version":"[1.14.0, )"},"OpenTelemetry.Instrumentation.Http":{"target":"Package","version":"[1.14.0, )"},"OpenTelemetry.Instrumentation.Runtime":{"target":"Package","version":"[1.14.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json","packagesToPrune":{"Microsoft.AspNetCore":"(,10.0.32767]","Microsoft.AspNetCore.Antiforgery":"(,10.0.32767]","Microsoft.AspNetCore.App":"(,10.0.32767]","Microsoft.AspNetCore.Authentication":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.BearerToken":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Cookies":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.Core":"(,10.0.32767]","Microsoft.AspNetCore.Authentication.OAuth":"(,10.0.32767]","Microsoft.AspNetCore.Authorization":"(,10.0.32767]","Microsoft.AspNetCore.Authorization.Policy":"(,10.0.32767]","Microsoft.AspNetCore.Components":"(,10.0.32767]","Microsoft.AspNetCore.Components.Authorization":"(,10.0.32767]","Microsoft.AspNetCore.Components.Endpoints":"(,10.0.32767]","Microsoft.AspNetCore.Components.Forms":"(,10.0.32767]","Microsoft.AspNetCore.Components.Server":"(,10.0.32767]","Microsoft.AspNetCore.Components.Web":"(,10.0.32767]","Microsoft.AspNetCore.Connections.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.CookiePolicy":"(,10.0.32767]","Microsoft.AspNetCore.Cors":"(,10.0.32767]","Microsoft.AspNetCore.Cryptography.Internal":"(,10.0.32767]","Microsoft.AspNetCore.Cryptography.KeyDerivation":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.DataProtection.Extensions":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Diagnostics.HealthChecks":"(,10.0.32767]","Microsoft.AspNetCore.HostFiltering":"(,10.0.32767]","Microsoft.AspNetCore.Hosting":"(,10.0.32767]","Microsoft.AspNetCore.Hosting.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Hosting.Server.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Html.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Http":"(,10.0.32767]","Microsoft.AspNetCore.Http.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Http.Connections":"(,10.0.32767]","Microsoft.AspNetCore.Http.Connections.Common":"(,10.0.32767]","Microsoft.AspNetCore.Http.Extensions":"(,10.0.32767]","Microsoft.AspNetCore.Http.Features":"(,10.0.32767]","Microsoft.AspNetCore.Http.Results":"(,10.0.32767]","Microsoft.AspNetCore.HttpLogging":"(,10.0.32767]","Microsoft.AspNetCore.HttpOverrides":"(,10.0.32767]","Microsoft.AspNetCore.HttpsPolicy":"(,10.0.32767]","Microsoft.AspNetCore.Identity":"(,10.0.32767]","Microsoft.AspNetCore.Localization":"(,10.0.32767]","Microsoft.AspNetCore.Localization.Routing":"(,10.0.32767]","Microsoft.AspNetCore.Metadata":"(,10.0.32767]","Microsoft.AspNetCore.Mvc":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.ApiExplorer":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Core":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Cors":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.DataAnnotations":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Formatters.Json":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Formatters.Xml":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Localization":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.Razor":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.RazorPages":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.TagHelpers":"(,10.0.32767]","Microsoft.AspNetCore.Mvc.ViewFeatures":"(,10.0.32767]","Microsoft.AspNetCore.OutputCaching":"(,10.0.32767]","Microsoft.AspNetCore.RateLimiting":"(,10.0.32767]","Microsoft.AspNetCore.Razor":"(,10.0.32767]","Microsoft.AspNetCore.Razor.Runtime":"(,10.0.32767]","Microsoft.AspNetCore.RequestDecompression":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCaching":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCaching.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.ResponseCompression":"(,10.0.32767]","Microsoft.AspNetCore.Rewrite":"(,10.0.32767]","Microsoft.AspNetCore.Routing":"(,10.0.32767]","Microsoft.AspNetCore.Routing.Abstractions":"(,10.0.32767]","Microsoft.AspNetCore.Server.HttpSys":"(,10.0.32767]","Microsoft.AspNetCore.Server.IIS":"(,10.0.32767]","Microsoft.AspNetCore.Server.IISIntegration":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Core":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.Quic":"(,10.0.32767]","Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets":"(,10.0.32767]","Microsoft.AspNetCore.Session":"(,10.0.32767]","Microsoft.AspNetCore.SignalR":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Common":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Core":"(,10.0.32767]","Microsoft.AspNetCore.SignalR.Protocols.Json":"(,10.0.32767]","Microsoft.AspNetCore.StaticAssets":"(,10.0.32767]","Microsoft.AspNetCore.StaticFiles":"(,10.0.32767]","Microsoft.AspNetCore.WebSockets":"(,10.0.32767]","Microsoft.AspNetCore.WebUtilities":"(,10.0.32767]","Microsoft.CSharp":"(,4.7.32767]","Microsoft.Extensions.Caching.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Caching.Memory":"(,10.0.32767]","Microsoft.Extensions.Configuration":"(,10.0.32767]","Microsoft.Extensions.Configuration.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Configuration.Binder":"(,10.0.32767]","Microsoft.Extensions.Configuration.CommandLine":"(,10.0.32767]","Microsoft.Extensions.Configuration.EnvironmentVariables":"(,10.0.32767]","Microsoft.Extensions.Configuration.FileExtensions":"(,10.0.32767]","Microsoft.Extensions.Configuration.Ini":"(,10.0.32767]","Microsoft.Extensions.Configuration.Json":"(,10.0.32767]","Microsoft.Extensions.Configuration.KeyPerFile":"(,10.0.32767]","Microsoft.Extensions.Configuration.UserSecrets":"(,10.0.32767]","Microsoft.Extensions.Configuration.Xml":"(,10.0.32767]","Microsoft.Extensions.DependencyInjection":"(,10.0.32767]","Microsoft.Extensions.DependencyInjection.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Diagnostics":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.HealthChecks":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Features":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Abstractions":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Composite":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Physical":"(,10.0.32767]","Microsoft.Extensions.FileSystemGlobbing":"(,10.0.32767]","Microsoft.Extensions.Hosting":"(,10.0.32767]","Microsoft.Extensions.Hosting.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Http":"(,10.0.32767]","Microsoft.Extensions.Identity.Core":"(,10.0.32767]","Microsoft.Extensions.Identity.Stores":"(,10.0.32767]","Microsoft.Extensions.Localization":"(,10.0.32767]","Microsoft.Extensions.Localization.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Logging":"(,10.0.32767]","Microsoft.Extensions.Logging.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Logging.Configuration":"(,10.0.32767]","Microsoft.Extensions.Logging.Console":"(,10.0.32767]","Microsoft.Extensions.Logging.Debug":"(,10.0.32767]","Microsoft.Extensions.Logging.EventLog":"(,10.0.32767]","Microsoft.Extensions.Logging.EventSource":"(,10.0.32767]","Microsoft.Extensions.Logging.TraceSource":"(,10.0.32767]","Microsoft.Extensions.ObjectPool":"(,10.0.32767]","Microsoft.Extensions.Options":"(,10.0.32767]","Microsoft.Extensions.Options.ConfigurationExtensions":"(,10.0.32767]","Microsoft.Extensions.Options.DataAnnotations":"(,10.0.32767]","Microsoft.Extensions.Primitives":"(,10.0.32767]","Microsoft.Extensions.Validation":"(,10.0.32767]","Microsoft.Extensions.WebEncoders":"(,10.0.32767]","Microsoft.JSInterop":"(,10.0.32767]","Microsoft.Net.Http.Headers":"(,10.0.32767]","Microsoft.VisualBasic":"(,10.4.32767]","Microsoft.Win32.Primitives":"(,4.3.32767]","Microsoft.Win32.Registry":"(,5.0.32767]","runtime.any.System.Collections":"(,4.3.32767]","runtime.any.System.Diagnostics.Tools":"(,4.3.32767]","runtime.any.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.any.System.Globalization":"(,4.3.32767]","runtime.any.System.Globalization.Calendars":"(,4.3.32767]","runtime.any.System.IO":"(,4.3.32767]","runtime.any.System.Reflection":"(,4.3.32767]","runtime.any.System.Reflection.Extensions":"(,4.3.32767]","runtime.any.System.Reflection.Primitives":"(,4.3.32767]","runtime.any.System.Resources.ResourceManager":"(,4.3.32767]","runtime.any.System.Runtime":"(,4.3.32767]","runtime.any.System.Runtime.Handles":"(,4.3.32767]","runtime.any.System.Runtime.InteropServices":"(,4.3.32767]","runtime.any.System.Text.Encoding":"(,4.3.32767]","runtime.any.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.any.System.Threading.Tasks":"(,4.3.32767]","runtime.any.System.Threading.Timer":"(,4.3.32767]","runtime.aot.System.Collections":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tools":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.aot.System.Globalization":"(,4.3.32767]","runtime.aot.System.Globalization.Calendars":"(,4.3.32767]","runtime.aot.System.IO":"(,4.3.32767]","runtime.aot.System.Reflection":"(,4.3.32767]","runtime.aot.System.Reflection.Extensions":"(,4.3.32767]","runtime.aot.System.Reflection.Primitives":"(,4.3.32767]","runtime.aot.System.Resources.ResourceManager":"(,4.3.32767]","runtime.aot.System.Runtime":"(,4.3.32767]","runtime.aot.System.Runtime.Handles":"(,4.3.32767]","runtime.aot.System.Runtime.InteropServices":"(,4.3.32767]","runtime.aot.System.Text.Encoding":"(,4.3.32767]","runtime.aot.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.aot.System.Threading.Tasks":"(,4.3.32767]","runtime.aot.System.Threading.Timer":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.unix.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.unix.System.Console":"(,4.3.32767]","runtime.unix.System.Diagnostics.Debug":"(,4.3.32767]","runtime.unix.System.IO.FileSystem":"(,4.3.32767]","runtime.unix.System.Net.Primitives":"(,4.3.32767]","runtime.unix.System.Net.Sockets":"(,4.3.32767]","runtime.unix.System.Private.Uri":"(,4.3.32767]","runtime.unix.System.Runtime.Extensions":"(,4.3.32767]","runtime.win.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.win.System.Console":"(,4.3.32767]","runtime.win.System.Diagnostics.Debug":"(,4.3.32767]","runtime.win.System.IO.FileSystem":"(,4.3.32767]","runtime.win.System.Net.Primitives":"(,4.3.32767]","runtime.win.System.Net.Sockets":"(,4.3.32767]","runtime.win.System.Runtime.Extensions":"(,4.3.32767]","runtime.win10-arm-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-arm64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win10-x64-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-x86-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7-x86.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7.System.Private.Uri":"(,4.3.32767]","runtime.win8-arm.runtime.native.System.IO.Compression":"(,4.3.32767]","System.AppContext":"(,4.3.32767]","System.Buffers":"(,5.0.32767]","System.Collections":"(,4.3.32767]","System.Collections.Concurrent":"(,4.3.32767]","System.Collections.Immutable":"(,10.0.32767]","System.Collections.NonGeneric":"(,4.3.32767]","System.Collections.Specialized":"(,4.3.32767]","System.ComponentModel":"(,4.3.32767]","System.ComponentModel.Annotations":"(,4.3.32767]","System.ComponentModel.EventBasedAsync":"(,4.3.32767]","System.ComponentModel.Primitives":"(,4.3.32767]","System.ComponentModel.TypeConverter":"(,4.3.32767]","System.Console":"(,4.3.32767]","System.Data.Common":"(,4.3.32767]","System.Data.DataSetExtensions":"(,4.4.32767]","System.Diagnostics.Contracts":"(,4.3.32767]","System.Diagnostics.Debug":"(,4.3.32767]","System.Diagnostics.DiagnosticSource":"(,10.0.32767]","System.Diagnostics.EventLog":"(,10.0.32767]","System.Diagnostics.FileVersionInfo":"(,4.3.32767]","System.Diagnostics.Process":"(,4.3.32767]","System.Diagnostics.StackTrace":"(,4.3.32767]","System.Diagnostics.TextWriterTraceListener":"(,4.3.32767]","System.Diagnostics.Tools":"(,4.3.32767]","System.Diagnostics.TraceSource":"(,4.3.32767]","System.Diagnostics.Tracing":"(,4.3.32767]","System.Drawing.Primitives":"(,4.3.32767]","System.Dynamic.Runtime":"(,4.3.32767]","System.Formats.Asn1":"(,10.0.32767]","System.Formats.Cbor":"(,10.0.32767]","System.Formats.Tar":"(,10.0.32767]","System.Globalization":"(,4.3.32767]","System.Globalization.Calendars":"(,4.3.32767]","System.Globalization.Extensions":"(,4.3.32767]","System.IO":"(,4.3.32767]","System.IO.Compression":"(,4.3.32767]","System.IO.Compression.ZipFile":"(,4.3.32767]","System.IO.FileSystem":"(,4.3.32767]","System.IO.FileSystem.AccessControl":"(,4.4.32767]","System.IO.FileSystem.DriveInfo":"(,4.3.32767]","System.IO.FileSystem.Primitives":"(,4.3.32767]","System.IO.FileSystem.Watcher":"(,4.3.32767]","System.IO.IsolatedStorage":"(,4.3.32767]","System.IO.MemoryMappedFiles":"(,4.3.32767]","System.IO.Pipelines":"(,10.0.32767]","System.IO.Pipes":"(,4.3.32767]","System.IO.Pipes.AccessControl":"(,5.0.32767]","System.IO.UnmanagedMemoryStream":"(,4.3.32767]","System.Linq":"(,4.3.32767]","System.Linq.AsyncEnumerable":"(,10.0.32767]","System.Linq.Expressions":"(,4.3.32767]","System.Linq.Parallel":"(,4.3.32767]","System.Linq.Queryable":"(,4.3.32767]","System.Memory":"(,5.0.32767]","System.Net.Http":"(,4.3.32767]","System.Net.Http.Json":"(,10.0.32767]","System.Net.NameResolution":"(,4.3.32767]","System.Net.NetworkInformation":"(,4.3.32767]","System.Net.Ping":"(,4.3.32767]","System.Net.Primitives":"(,4.3.32767]","System.Net.Requests":"(,4.3.32767]","System.Net.Security":"(,4.3.32767]","System.Net.ServerSentEvents":"(,10.0.32767]","System.Net.Sockets":"(,4.3.32767]","System.Net.WebHeaderCollection":"(,4.3.32767]","System.Net.WebSockets":"(,4.3.32767]","System.Net.WebSockets.Client":"(,4.3.32767]","System.Numerics.Vectors":"(,5.0.32767]","System.ObjectModel":"(,4.3.32767]","System.Private.DataContractSerialization":"(,4.3.32767]","System.Private.Uri":"(,4.3.32767]","System.Reflection":"(,4.3.32767]","System.Reflection.DispatchProxy":"(,6.0.32767]","System.Reflection.Emit":"(,4.7.32767]","System.Reflection.Emit.ILGeneration":"(,4.7.32767]","System.Reflection.Emit.Lightweight":"(,4.7.32767]","System.Reflection.Extensions":"(,4.3.32767]","System.Reflection.Metadata":"(,10.0.32767]","System.Reflection.Primitives":"(,4.3.32767]","System.Reflection.TypeExtensions":"(,4.3.32767]","System.Resources.Reader":"(,4.3.32767]","System.Resources.ResourceManager":"(,4.3.32767]","System.Resources.Writer":"(,4.3.32767]","System.Runtime":"(,4.3.32767]","System.Runtime.CompilerServices.Unsafe":"(,7.0.32767]","System.Runtime.CompilerServices.VisualC":"(,4.3.32767]","System.Runtime.Extensions":"(,4.3.32767]","System.Runtime.Handles":"(,4.3.32767]","System.Runtime.InteropServices":"(,4.3.32767]","System.Runtime.InteropServices.RuntimeInformation":"(,4.3.32767]","System.Runtime.Loader":"(,4.3.32767]","System.Runtime.Numerics":"(,4.3.32767]","System.Runtime.Serialization.Formatters":"(,4.3.32767]","System.Runtime.Serialization.Json":"(,4.3.32767]","System.Runtime.Serialization.Primitives":"(,4.3.32767]","System.Runtime.Serialization.Xml":"(,4.3.32767]","System.Security.AccessControl":"(,6.0.32767]","System.Security.Claims":"(,4.3.32767]","System.Security.Cryptography.Algorithms":"(,4.3.32767]","System.Security.Cryptography.Cng":"(,5.0.32767]","System.Security.Cryptography.Csp":"(,4.3.32767]","System.Security.Cryptography.Encoding":"(,4.3.32767]","System.Security.Cryptography.OpenSsl":"(,5.0.32767]","System.Security.Cryptography.Primitives":"(,4.3.32767]","System.Security.Cryptography.X509Certificates":"(,4.3.32767]","System.Security.Cryptography.Xml":"(,10.0.32767]","System.Security.Principal":"(,4.3.32767]","System.Security.Principal.Windows":"(,5.0.32767]","System.Security.SecureString":"(,4.3.32767]","System.Text.Encoding":"(,4.3.32767]","System.Text.Encoding.CodePages":"(,10.0.32767]","System.Text.Encoding.Extensions":"(,4.3.32767]","System.Text.Encodings.Web":"(,10.0.32767]","System.Text.Json":"(,10.0.32767]","System.Text.RegularExpressions":"(,4.3.32767]","System.Threading":"(,4.3.32767]","System.Threading.AccessControl":"(,10.0.32767]","System.Threading.Channels":"(,10.0.32767]","System.Threading.Overlapped":"(,4.3.32767]","System.Threading.RateLimiting":"(,10.0.32767]","System.Threading.Tasks":"(,4.3.32767]","System.Threading.Tasks.Dataflow":"(,10.0.32767]","System.Threading.Tasks.Extensions":"(,5.0.32767]","System.Threading.Tasks.Parallel":"(,4.3.32767]","System.Threading.Thread":"(,4.3.32767]","System.Threading.ThreadPool":"(,4.3.32767]","System.Threading.Timer":"(,4.3.32767]","System.ValueTuple":"(,4.5.32767]","System.Xml.ReaderWriter":"(,4.3.32767]","System.Xml.XDocument":"(,4.3.32767]","System.Xml.XmlDocument":"(,4.3.32767]","System.Xml.XmlSerializer":"(,4.3.32767]","System.Xml.XPath":"(,4.3.32767]","System.Xml.XPath.XDocument":"(,5.0.32767]"}}} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/rider.project.model.nuget.info b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..eb82b12 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17700360421522211 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/rider.project.restore.info b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/rider.project.restore.info new file mode 100644 index 0000000..9aefd15 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/ServiceDefaults/obj/rider.project.restore.info @@ -0,0 +1 @@ +17700382162643236 \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/WolverineAndNats.slnx b/wolverine-nats/WolverineAndNats/WolverineAndNats.slnx new file mode 100644 index 0000000..6bc3fcd --- /dev/null +++ b/wolverine-nats/WolverineAndNats/WolverineAndNats.slnx @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/wolverine-nats/WolverineAndNats/docs/README.md b/wolverine-nats/WolverineAndNats/docs/README.md new file mode 100644 index 0000000..79b0a26 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/docs/README.md @@ -0,0 +1,7 @@ +# Using NATS with Wolverine + +## Projects + +### ApiOne + + diff --git a/wolverine-nats/WolverineAndNats/docs/demo.http b/wolverine-nats/WolverineAndNats/docs/demo.http new file mode 100644 index 0000000..6cffbd1 --- /dev/null +++ b/wolverine-nats/WolverineAndNats/docs/demo.http @@ -0,0 +1,38 @@ +POST https://localhost:7131/messages +Content-Type: application/json + +{ + "message": "Hello from ApiOne" +} + + +### + +# ApiTwo will sum up the numbers - + +POST https://localhost:7131/math +Content-Type: application/json + +{ + "numbers": [1, 2, 3, 4, 5, 6, 7, 8, 9] +} + + +### +POST https://localhost:7131/users +Content-Type: application/json + +{ + "name": "Barbara Sea Cow" +} + +### +GET https://localhost:7204/users + +### +PUT https://localhost:7131/users/462dd463-3dfd-41c8-be9f-52f5cb3489d0/name +Content-Type: application/json + +{ + "name": "Barbara Manatee" +} \ No newline at end of file diff --git a/wolverine-nats/WolverineAndNats/docs/patterns.excalidraw b/wolverine-nats/WolverineAndNats/docs/patterns.excalidraw new file mode 100644 index 0000000..9d6507e --- /dev/null +++ b/wolverine-nats/WolverineAndNats/docs/patterns.excalidraw @@ -0,0 +1,2828 @@ +{ + "type": "excalidraw", + "version": 2, + "source": "https://marketplace.visualstudio.com/items?itemName=pomdtr.excalidraw-editor", + "elements": [ + { + "id": "zXA1N07KXcVjO0vVToHdy", + "type": "rectangle", + "x": 956.515625, + "y": 369.75, + "width": 372.83984375, + "height": 195.7734375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a0", + "roundness": { + "type": 3 + }, + "seed": 297650923, + "version": 40, + "versionNonce": 2119552005, + "isDeleted": false, + "boundElements": [ + { + "id": "w3Lb8fA4VekEp65zbYcJC", + "type": "text" + }, + { + "id": "_SCUNarbML8XGF4lwshEQ", + "type": "arrow" + }, + { + "id": "i3ygqF-EUOyPPXsPMJMfj", + "type": "arrow" + } + ], + "updated": 1770037383001, + "link": null, + "locked": false + }, + { + "id": "w3Lb8fA4VekEp65zbYcJC", + "type": "text", + "x": 1096.7355651855469, + "y": 450.13671875, + "width": 92.39996337890625, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a1", + "roundness": null, + "seed": 1765488011, + "version": 24, + "versionNonce": 1438808165, + "isDeleted": false, + "boundElements": null, + "updated": 1770037383001, + "link": null, + "locked": false, + "text": "ApiOne", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "zXA1N07KXcVjO0vVToHdy", + "originalText": "ApiOne", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "OMkCqrUrU0weLB0R7UWyD", + "type": "rectangle", + "x": 952.74609375, + "y": 640.984375, + "width": 372.83984375, + "height": 195.7734375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a2", + "roundness": { + "type": 3 + }, + "seed": 1324502059, + "version": 134, + "versionNonce": 331391691, + "isDeleted": false, + "boundElements": [ + { + "id": "2KT20xrildx8lv37unk4Z", + "type": "text" + }, + { + "id": "uNFX-ozgJvPmwN7HwSiTS", + "type": "arrow" + } + ], + "updated": 1770037383001, + "link": null, + "locked": false + }, + { + "id": "2KT20xrildx8lv37unk4Z", + "type": "text", + "x": 1092.9660339355469, + "y": 721.37109375, + "width": 92.39996337890625, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a3", + "roundness": null, + "seed": 651005643, + "version": 125, + "versionNonce": 838869957, + "isDeleted": false, + "boundElements": null, + "updated": 1770037383001, + "link": null, + "locked": false, + "text": "ApiTwo", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "OMkCqrUrU0weLB0R7UWyD", + "originalText": "ApiTwo", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "dCkkE0k3jjMzccVf8n5zs", + "type": "rectangle", + "x": 953.40234375, + "y": 889.83984375, + "width": 372.83984375, + "height": 195.7734375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a4", + "roundness": { + "type": 3 + }, + "seed": 1936162155, + "version": 179, + "versionNonce": 2622309, + "isDeleted": false, + "boundElements": [ + { + "id": "lWf_vZA1_wc1359QGSNHU", + "type": "text" + }, + { + "id": "SpgGWbZpWfUGYPnrxVo2_", + "type": "arrow" + } + ], + "updated": 1770037383001, + "link": null, + "locked": false + }, + { + "id": "lWf_vZA1_wc1359QGSNHU", + "type": "text", + "x": 1039.7223052978516, + "y": 970.2265625, + "width": 200.19992065429688, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a5", + "roundness": null, + "seed": 694283, + "version": 183, + "versionNonce": 1144087333, + "isDeleted": false, + "boundElements": null, + "updated": 1770037383001, + "link": null, + "locked": false, + "text": "PlainListener", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "dCkkE0k3jjMzccVf8n5zs", + "originalText": "PlainListener", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "voc1daIhHr_gqOaxAfhMz", + "type": "ellipse", + "x": 1738.80078125, + "y": 564.95703125, + "width": 296.234375, + "height": 296.234375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a6", + "roundness": { + "type": 2 + }, + "seed": 1253138091, + "version": 121, + "versionNonce": 2027426155, + "isDeleted": false, + "boundElements": [ + { + "id": "iL_kVHQd6g82j-9payrFV", + "type": "text" + }, + { + "id": "i3ygqF-EUOyPPXsPMJMfj", + "type": "arrow" + }, + { + "id": "uNFX-ozgJvPmwN7HwSiTS", + "type": "arrow" + }, + { + "id": "SpgGWbZpWfUGYPnrxVo2_", + "type": "arrow" + }, + { + "id": "xcEp23R_Pd0dFP868pu1B", + "type": "arrow" + } + ], + "updated": 1770037383001, + "link": null, + "locked": false + }, + { + "id": "iL_kVHQd6g82j-9payrFV", + "type": "text", + "x": 1855.883313265502, + "y": 695.3395510584706, + "width": 61.5999755859375, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a7", + "roundness": null, + "seed": 772165963, + "version": 60, + "versionNonce": 818132613, + "isDeleted": false, + "boundElements": null, + "updated": 1770037383001, + "link": null, + "locked": false, + "text": "Nats", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "voc1daIhHr_gqOaxAfhMz", + "originalText": "Nats", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "_SCUNarbML8XGF4lwshEQ", + "type": "arrow", + "x": 956.78125, + "y": 470.453125, + "width": 189.24609375, + "height": 0.875, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a8", + "roundness": { + "type": 2 + }, + "seed": 1264840683, + "version": 63, + "versionNonce": 1394106091, + "isDeleted": false, + "boundElements": null, + "updated": 1770037383001, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -189.24609375, + -0.875 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "zXA1N07KXcVjO0vVToHdy", + "focus": -0.03723707542636013, + "gap": 1 + }, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "circle_outline", + "elbowed": false + }, + { + "id": "vxsP6h66_mOq71OD9Wfe9", + "type": "text", + "x": 509.7890625, + "y": 450.86328125, + "width": 215.59991455078125, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a9", + "roundness": null, + "seed": 886356619, + "version": 73, + "versionNonce": 1003636645, + "isDeleted": false, + "boundElements": null, + "updated": 1770037383001, + "link": null, + "locked": false, + "text": "POST /messages", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "POST /messages", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "i3ygqF-EUOyPPXsPMJMfj", + "type": "arrow", + "x": 1331.375, + "y": 452.015625, + "width": 421.125, + "height": 184.2421875, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aA", + "roundness": { + "type": 2 + }, + "seed": 1460875563, + "version": 159, + "versionNonce": 1347524933, + "isDeleted": false, + "boundElements": null, + "updated": 1770037383001, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 421.125, + 184.2421875 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "zXA1N07KXcVjO0vVToHdy", + "focus": -0.5464800747202242, + "gap": 2.01953125 + }, + "endBinding": { + "elementId": "voc1daIhHr_gqOaxAfhMz", + "focus": 0.08457953891349154, + "gap": 6.701902382485138 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "uNFX-ozgJvPmwN7HwSiTS", + "type": "arrow", + "x": 1739.96875, + "y": 703.96875, + "width": 404.3046875, + "height": 19.19140625, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aB", + "roundness": { + "type": 2 + }, + "seed": 596235211, + "version": 126, + "versionNonce": 1243826571, + "isDeleted": false, + "boundElements": null, + "updated": 1770037383001, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -404.3046875, + 19.19140625 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "voc1daIhHr_gqOaxAfhMz", + "focus": 0.1036481999254298, + "gap": 1 + }, + "endBinding": { + "elementId": "OMkCqrUrU0weLB0R7UWyD", + "focus": -0.059807864767974186, + "gap": 10.078125 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "SpgGWbZpWfUGYPnrxVo2_", + "type": "arrow", + "x": 1753.2967523825062, + "y": 780.7891804223964, + "width": 420.81094610392347, + "height": 219.91105355754246, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aC", + "roundness": { + "type": 2 + }, + "seed": 2052268651, + "version": 96, + "versionNonce": 1404577957, + "isDeleted": false, + "boundElements": null, + "updated": 1770037383001, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -420.81094610392347, + 219.91105355754246 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "voc1daIhHr_gqOaxAfhMz", + "focus": 0.008418026446723114, + "gap": 1.68249707184011 + }, + "endBinding": { + "elementId": "dCkkE0k3jjMzccVf8n5zs", + "focus": 0.5777241713000142, + "gap": 7.08984375 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "xAH3Mj1klo3d1KSZkPEsz", + "type": "rectangle", + "x": 953.40234375, + "y": 1126.3828125, + "width": 372.83984375, + "height": 195.7734375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aD", + "roundness": { + "type": 3 + }, + "seed": 1413061899, + "version": 253, + "versionNonce": 763121349, + "isDeleted": false, + "boundElements": [ + { + "id": "Nc25VVGZK_8KUrKWJvjMn", + "type": "text" + }, + { + "id": "SpgGWbZpWfUGYPnrxVo2_", + "type": "arrow" + }, + { + "id": "xcEp23R_Pd0dFP868pu1B", + "type": "arrow" + } + ], + "updated": 1770037383001, + "link": null, + "locked": false + }, + { + "id": "Nc25VVGZK_8KUrKWJvjMn", + "type": "text", + "x": 1039.7223052978516, + "y": 1206.76953125, + "width": 200.19992065429688, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aE", + "roundness": null, + "seed": 750240683, + "version": 257, + "versionNonce": 846503397, + "isDeleted": false, + "boundElements": null, + "updated": 1770037383001, + "link": null, + "locked": false, + "text": "PlainListener", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "xAH3Mj1klo3d1KSZkPEsz", + "originalText": "PlainListener", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "xcEp23R_Pd0dFP868pu1B", + "type": "arrow", + "x": 1815.328125, + "y": 838.781005859375, + "width": 482.68359375, + "height": 385.78125, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aF", + "roundness": { + "type": 2 + }, + "seed": 737678923, + "version": 88, + "versionNonce": 28827691, + "isDeleted": false, + "boundElements": null, + "updated": 1770037383001, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -482.68359375, + 385.78125 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "voc1daIhHr_gqOaxAfhMz", + "focus": -0.2569961117460755, + "gap": 3.454469242975875 + }, + "endBinding": { + "elementId": "xAH3Mj1klo3d1KSZkPEsz", + "focus": 0.6254195272951419, + "gap": 6.40234375 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "UlQnvAnulYT2IG53YyqMz", + "type": "text", + "x": 508.8515625, + "y": 158.019287109375, + "width": 871.199462890625, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aG", + "roundness": null, + "seed": 282399979, + "version": 127, + "versionNonce": 1650672453, + "isDeleted": false, + "boundElements": null, + "updated": 1770037383001, + "link": null, + "locked": false, + "text": "Message Queue with Fanout - Sending Messages", + "fontSize": 36, + "fontFamily": 8, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Message Queue with Fanout - Sending Messages", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "NQUTU6GRnN8wXKLmlhg2y", + "type": "text", + "x": 617.34375, + "y": 228.636474609375, + "width": 200.19992065429688, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aH", + "roundness": null, + "seed": 1524187019, + "version": 76, + "versionNonce": 1241813669, + "isDeleted": false, + "boundElements": null, + "updated": 1770037383001, + "link": null, + "locked": false, + "text": "Not durable. ", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Not durable. ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Mc6DolW_eBB6czuPpMn9t", + "type": "rectangle", + "x": 906.0078125, + "y": 1751.265625, + "width": 372.83984375, + "height": 195.7734375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aI", + "roundness": { + "type": 3 + }, + "seed": 717294795, + "version": 219, + "versionNonce": 1374623813, + "isDeleted": false, + "boundElements": [ + { + "id": "TykgaqYj-j58Vpo3yW7WN", + "type": "text" + }, + { + "id": "G2OpMFtCDraT35LVoZofx", + "type": "arrow" + }, + { + "id": "Gesaj8PZeCqlPt99gphmE", + "type": "arrow" + }, + { + "id": "5X1A9qpDpIwim33MF0Ld5", + "type": "arrow" + } + ], + "updated": 1770037472872, + "link": null, + "locked": false + }, + { + "id": "TykgaqYj-j58Vpo3yW7WN", + "type": "text", + "x": 1046.2277526855469, + "y": 1831.65234375, + "width": 92.39996337890625, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aJ", + "roundness": null, + "seed": 1748712299, + "version": 203, + "versionNonce": 22046021, + "isDeleted": false, + "boundElements": null, + "updated": 1770037393533, + "link": null, + "locked": false, + "text": "ApiOne", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "Mc6DolW_eBB6czuPpMn9t", + "originalText": "ApiOne", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "77BJQIMQd61vo1K1DaMzo", + "type": "rectangle", + "x": 902.23828125, + "y": 2022.5, + "width": 372.83984375, + "height": 195.7734375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aK", + "roundness": { + "type": 3 + }, + "seed": 503282853, + "version": 313, + "versionNonce": 883758437, + "isDeleted": false, + "boundElements": [ + { + "id": "mCldtS-yT4sz0aDYqlZZS", + "type": "text" + }, + { + "id": "KsgiIZogwFtjcYwil74El", + "type": "arrow" + }, + { + "id": "srx1dy9P-p0FMtGjM9uel", + "type": "arrow" + } + ], + "updated": 1770037462035, + "link": null, + "locked": false + }, + { + "id": "mCldtS-yT4sz0aDYqlZZS", + "type": "text", + "x": 1042.4582214355469, + "y": 2102.88671875, + "width": 92.39996337890625, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aL", + "roundness": null, + "seed": 747806725, + "version": 304, + "versionNonce": 1924471493, + "isDeleted": false, + "boundElements": null, + "updated": 1770037393533, + "link": null, + "locked": false, + "text": "ApiTwo", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "77BJQIMQd61vo1K1DaMzo", + "originalText": "ApiTwo", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "NFUiroxJLcOHipHc5lbZZ", + "type": "ellipse", + "x": 1688.29296875, + "y": 1946.47265625, + "width": 296.234375, + "height": 296.234375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aO", + "roundness": { + "type": 2 + }, + "seed": 658854341, + "version": 303, + "versionNonce": 677705093, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "f64fe-WfwK6ISRpOinCwf" + }, + { + "id": "Gesaj8PZeCqlPt99gphmE", + "type": "arrow" + }, + { + "id": "KsgiIZogwFtjcYwil74El", + "type": "arrow" + }, + { + "id": "srx1dy9P-p0FMtGjM9uel", + "type": "arrow" + }, + { + "id": "5X1A9qpDpIwim33MF0Ld5", + "type": "arrow" + } + ], + "updated": 1770037472872, + "link": null, + "locked": false + }, + { + "id": "f64fe-WfwK6ISRpOinCwf", + "type": "text", + "x": 1805.375500765502, + "y": 2076.8551760584705, + "width": 61.5999755859375, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aP", + "roundness": null, + "seed": 1577188645, + "version": 239, + "versionNonce": 1990558469, + "isDeleted": false, + "boundElements": null, + "updated": 1770037393533, + "link": null, + "locked": false, + "text": "Nats", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "NFUiroxJLcOHipHc5lbZZ", + "originalText": "Nats", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "G2OpMFtCDraT35LVoZofx", + "type": "arrow", + "x": 906.2734375, + "y": 1851.96875, + "width": 189.24609375, + "height": 0.875, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aQ", + "roundness": { + "type": 2 + }, + "seed": 542271947, + "version": 424, + "versionNonce": 454387147, + "isDeleted": false, + "boundElements": null, + "updated": 1770037393845, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -189.24609375, + -0.875 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "Mc6DolW_eBB6czuPpMn9t", + "focus": -0.03723707542636134, + "gap": 1 + }, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "circle_outline", + "elbowed": false + }, + { + "id": "-wQHt_FbEH49k8sc6DEUO", + "type": "text", + "x": 320.7578125, + "y": 1825.98828125, + "width": 215.59991455078125, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aR", + "roundness": null, + "seed": 1885783819, + "version": 282, + "versionNonce": 1690353797, + "isDeleted": false, + "boundElements": null, + "updated": 1770037513293, + "link": null, + "locked": false, + "text": "POST /math - 1", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "POST /math - 1", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Gesaj8PZeCqlPt99gphmE", + "type": "arrow", + "x": 1280.8671875, + "y": 1833.53125, + "width": 421.125, + "height": 184.2421875, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aS", + "roundness": { + "type": 2 + }, + "seed": 622352773, + "version": 705, + "versionNonce": 24525003, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "FcAsTYhDasc6M46cKsbfp" + } + ], + "updated": 1770037519164, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 421.125, + 184.2421875 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "Mc6DolW_eBB6czuPpMn9t", + "focus": -0.5464800747202243, + "gap": 2.01953125 + }, + "endBinding": { + "elementId": "NFUiroxJLcOHipHc5lbZZ", + "focus": 0.0845795389134904, + "gap": 6.701902382485138 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "FcAsTYhDasc6M46cKsbfp", + "type": "text", + "x": 1483.7296905517578, + "y": 1908.15234375, + "width": 15.399993896484375, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aSV", + "roundness": null, + "seed": 270338891, + "version": 4, + "versionNonce": 2056876709, + "isDeleted": false, + "boundElements": null, + "updated": 1770037517283, + "link": null, + "locked": false, + "text": "2", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "Gesaj8PZeCqlPt99gphmE", + "originalText": "2", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "KsgiIZogwFtjcYwil74El", + "type": "arrow", + "x": 1686.55859375, + "y": 2102.9609375, + "width": 404.625, + "height": 19.3828125, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aT", + "roundness": { + "type": 2 + }, + "seed": 79403429, + "version": 755, + "versionNonce": 404648677, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "5gq2exRf7GF5-jRI4tFZD" + } + ], + "updated": 1770037521896, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -404.625, + 19.3828125 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "NFUiroxJLcOHipHc5lbZZ", + "focus": -0.007684509712808215, + "gap": 1.9680082864688822 + }, + "endBinding": { + "elementId": "77BJQIMQd61vo1K1DaMzo", + "focus": 0.10499780314879699, + "gap": 6.85546875 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "5gq2exRf7GF5-jRI4tFZD", + "type": "text", + "x": 1476.5460968017578, + "y": 2095.15234375, + "width": 15.399993896484375, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aTV", + "roundness": null, + "seed": 195572517, + "version": 5, + "versionNonce": 1348618411, + "isDeleted": false, + "boundElements": null, + "updated": 1770037519998, + "link": null, + "locked": false, + "text": "3", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "KsgiIZogwFtjcYwil74El", + "originalText": "3", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Q-uHp3mYTuhj1f4HSiIib", + "type": "text", + "x": 458.34375, + "y": 1539.534912109375, + "width": 118.7999267578125, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aY", + "roundness": null, + "seed": 1616106757, + "version": 313, + "versionNonce": 439021515, + "isDeleted": false, + "boundElements": null, + "updated": 1770037399265, + "link": null, + "locked": false, + "text": "Pubsub", + "fontSize": 36, + "fontFamily": 8, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pubsub", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Ff7myzMEbMvRJo_6Cs42R", + "type": "text", + "x": 566.8359375, + "y": 1610.152099609375, + "width": 200.19992065429688, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aZ", + "roundness": null, + "seed": 727062315, + "version": 256, + "versionNonce": 1655461285, + "isDeleted": false, + "boundElements": null, + "updated": 1770037393533, + "link": null, + "locked": false, + "text": "Not durable. ", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Not durable. ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "srx1dy9P-p0FMtGjM9uel", + "type": "arrow", + "x": 1277.453125, + "y": 2168.4725341796875, + "width": 414.875, + "height": 17.30078125, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aa", + "roundness": { + "type": 2 + }, + "seed": 1996542667, + "version": 102, + "versionNonce": 1179221739, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "hVYApru0MFE7ADwII-UE7" + } + ], + "updated": 1770037525526, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 414.875, + -17.30078125 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "77BJQIMQd61vo1K1DaMzo", + "focus": 0.5296085878993994, + "gap": 2.375 + }, + "endBinding": { + "elementId": "NFUiroxJLcOHipHc5lbZZ", + "focus": -0.3277740288389153, + "gap": 6.6766889148775235 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "hVYApru0MFE7ADwII-UE7", + "type": "text", + "x": 1477.1906280517578, + "y": 2142.3221435546875, + "width": 15.399993896484375, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aaV", + "roundness": null, + "seed": 82157669, + "version": 5, + "versionNonce": 1231853189, + "isDeleted": false, + "boundElements": null, + "updated": 1770037523941, + "link": null, + "locked": false, + "text": "4", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "srx1dy9P-p0FMtGjM9uel", + "originalText": "4", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "5X1A9qpDpIwim33MF0Ld5", + "type": "arrow", + "x": 1693.296875, + "y": 2044.3319091796875, + "width": 416.28125, + "height": 170.97265625, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ac", + "roundness": { + "type": 2 + }, + "seed": 1551614277, + "version": 220, + "versionNonce": 704458437, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "FyRn21clJnVbH_vztlcTu" + } + ], + "updated": 1770037534403, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -416.28125, + -170.97265625 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "NFUiroxJLcOHipHc5lbZZ", + "focus": -0.04077861888512447, + "gap": 3.5642921124280145 + }, + "endBinding": { + "elementId": "Mc6DolW_eBB6czuPpMn9t", + "focus": -0.29581754013333766, + "gap": 1.83203125 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "FyRn21clJnVbH_vztlcTu", + "type": "text", + "x": 1477.4562530517578, + "y": 1941.3455810546875, + "width": 15.399993896484375, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ad", + "roundness": null, + "seed": 386904363, + "version": 5, + "versionNonce": 990233291, + "isDeleted": false, + "boundElements": null, + "updated": 1770037526315, + "link": null, + "locked": false, + "text": "5", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "5X1A9qpDpIwim33MF0Ld5", + "originalText": "5", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "p7U5ZtOGZUAngHVa1f1p2", + "type": "text", + "x": 326.7265625, + "y": 1953.3006591796875, + "width": 153.99993896484375, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ae", + "roundness": null, + "seed": 400954027, + "version": 112, + "versionNonce": 950477541, + "isDeleted": false, + "boundElements": null, + "updated": 1770037547850, + "link": null, + "locked": false, + "text": "200 Ok - 6", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "200 Ok - 6", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "QsSFv51x_reZROki5Bn5T", + "type": "rectangle", + "x": 901.068359375, + "y": 2774.5223388671875, + "width": 372.83984375, + "height": 195.7734375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ag", + "roundness": { + "type": 3 + }, + "seed": 1003237387, + "version": 161, + "versionNonce": 74071787, + "isDeleted": false, + "boundElements": [ + { + "id": "mhBazj3qnMDJ5wW_UfFaE", + "type": "text" + }, + { + "id": "3aByRNVRr3ZmTsVsxNWt7", + "type": "arrow" + }, + { + "id": "okQXxexNmFGmOXbbrBij6", + "type": "arrow" + }, + { + "id": "FvY7SjX3LadHte9Pb10Mk", + "type": "arrow" + } + ], + "updated": 1770037677316, + "link": null, + "locked": false + }, + { + "id": "mhBazj3qnMDJ5wW_UfFaE", + "type": "text", + "x": 1041.2882995605469, + "y": 2854.9090576171875, + "width": 92.39996337890625, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ah", + "roundness": null, + "seed": 1249900203, + "version": 144, + "versionNonce": 343068075, + "isDeleted": false, + "boundElements": [], + "updated": 1770037588400, + "link": null, + "locked": false, + "text": "ApiOne", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "QsSFv51x_reZROki5Bn5T", + "originalText": "ApiOne", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "DJvPN5qFH9afRV8x_7wdz", + "type": "rectangle", + "x": 897.298828125, + "y": 3045.7567138671875, + "width": 372.83984375, + "height": 195.7734375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#96f2d7", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ai", + "roundness": { + "type": 3 + }, + "seed": 1749150027, + "version": 255, + "versionNonce": 972178123, + "isDeleted": false, + "boundElements": [ + { + "id": "fAZFbW2wsk7W-sYk9hg_j", + "type": "text" + }, + { + "id": "0PP-pj-n9gJfSBpUVjj2J", + "type": "arrow" + } + ], + "updated": 1770037900821, + "link": null, + "locked": false + }, + { + "id": "fAZFbW2wsk7W-sYk9hg_j", + "type": "text", + "x": 1037.5187683105469, + "y": 3126.1434326171875, + "width": 92.39996337890625, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aj", + "roundness": null, + "seed": 1785497579, + "version": 245, + "versionNonce": 690298923, + "isDeleted": false, + "boundElements": [], + "updated": 1770037588400, + "link": null, + "locked": false, + "text": "ApiTwo", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "DJvPN5qFH9afRV8x_7wdz", + "originalText": "ApiTwo", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "bG1QjyAqSlkfpx93Wzo2a", + "type": "rectangle", + "x": 897.955078125, + "y": 3294.6121826171875, + "width": 372.83984375, + "height": 195.7734375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#d0bfff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ak", + "roundness": { + "type": 3 + }, + "seed": 386552459, + "version": 302, + "versionNonce": 37731813, + "isDeleted": false, + "boundElements": [ + { + "id": "L868qjfnawOtuj4emWKDB", + "type": "text" + }, + { + "id": "ff_GwALyJEoDZM-Xktzc-", + "type": "arrow" + } + ], + "updated": 1770038058767, + "link": null, + "locked": false + }, + { + "id": "L868qjfnawOtuj4emWKDB", + "type": "text", + "x": 984.2750396728516, + "y": 3374.9989013671875, + "width": 200.19992065429688, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "al", + "roundness": null, + "seed": 248891691, + "version": 303, + "versionNonce": 968748043, + "isDeleted": false, + "boundElements": [], + "updated": 1770037588400, + "link": null, + "locked": false, + "text": "PlainListener", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "bG1QjyAqSlkfpx93Wzo2a", + "originalText": "PlainListener", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "waItm5K7j9KBJ0a8YB6pH", + "type": "ellipse", + "x": 1505.705078125, + "y": 2987.6824951171875, + "width": 296.234375, + "height": 296.234375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#a5d8ff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "am", + "roundness": { + "type": 2 + }, + "seed": 2000251851, + "version": 318, + "versionNonce": 645988811, + "isDeleted": false, + "boundElements": [ + { + "id": "4bYr1wXiRcWqbchCr-P15", + "type": "text" + }, + { + "id": "okQXxexNmFGmOXbbrBij6", + "type": "arrow" + }, + { + "id": "0PP-pj-n9gJfSBpUVjj2J", + "type": "arrow" + }, + { + "id": "q7c4LiLshr5X5F506MA6i", + "type": "arrow" + } + ], + "updated": 1770038040342, + "link": null, + "locked": false + }, + { + "id": "4bYr1wXiRcWqbchCr-P15", + "type": "text", + "x": 1622.787610140502, + "y": 3118.065014925658, + "width": 61.5999755859375, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "an", + "roundness": null, + "seed": 1682946667, + "version": 253, + "versionNonce": 960358085, + "isDeleted": false, + "boundElements": [], + "updated": 1770037814796, + "link": null, + "locked": false, + "text": "Nats", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "waItm5K7j9KBJ0a8YB6pH", + "originalText": "Nats", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "3aByRNVRr3ZmTsVsxNWt7", + "type": "arrow", + "x": 901.333984375, + "y": 2875.2254638671875, + "width": 189.24609375, + "height": 0.875, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ao", + "roundness": { + "type": 2 + }, + "seed": 48444683, + "version": 301, + "versionNonce": 497244741, + "isDeleted": false, + "boundElements": [], + "updated": 1770037588555, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -189.24609375, + -0.875 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "QsSFv51x_reZROki5Bn5T", + "focus": -0.037237075426357055, + "gap": 1 + }, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "circle_outline", + "elbowed": false + }, + { + "id": "3N4ItYxXLLaJiQrhxpXdt", + "type": "text", + "x": 454.341796875, + "y": 2855.6356201171875, + "width": 169.39993286132812, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ap", + "roundness": null, + "seed": 40786859, + "version": 198, + "versionNonce": 909956459, + "isDeleted": false, + "boundElements": [], + "updated": 1770037761371, + "link": null, + "locked": false, + "text": "POST /users", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "POST /users", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "okQXxexNmFGmOXbbrBij6", + "type": "arrow", + "x": 1275.6924755699613, + "y": 2873.955996811623, + "width": 257.76331313336755, + "height": 164.4739686163589, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aq", + "roundness": { + "type": 2 + }, + "seed": 1058778699, + "version": 586, + "versionNonce": 1153353253, + "isDeleted": false, + "boundElements": [], + "updated": 1770037814796, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 257.76331313336755, + 164.4739686163589 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "QsSFv51x_reZROki5Bn5T", + "focus": -0.5464800747202252, + "gap": 2.01953125 + }, + "endBinding": { + "elementId": "waItm5K7j9KBJ0a8YB6pH", + "focus": 0.08457953891348963, + "gap": 6.701902382485138 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "0PP-pj-n9gJfSBpUVjj2J", + "type": "arrow", + "x": 1505.1307808381991, + "y": 3124.54011069785, + "width": 226.15942582360572, + "height": 6.931519033394579, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ar", + "roundness": { + "type": 2 + }, + "seed": 734375147, + "version": 553, + "versionNonce": 531413381, + "isDeleted": false, + "boundElements": [], + "updated": 1770037814796, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -226.15942582360572, + 6.931519033394579 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "waItm5K7j9KBJ0a8YB6pH", + "focus": 0.10364819992542942, + "gap": 1 + }, + "endBinding": { + "elementId": "DJvPN5qFH9afRV8x_7wdz", + "focus": -0.0598078647679759, + "gap": 10.078125 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "UO6X9HPP7EA6UZPetXAFv", + "type": "rectangle", + "x": 897.955078125, + "y": 3531.1551513671875, + "width": 372.83984375, + "height": 195.7734375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#d0bfff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "at", + "roundness": { + "type": 3 + }, + "seed": 233418283, + "version": 376, + "versionNonce": 911328357, + "isDeleted": false, + "boundElements": [ + { + "id": "tKonvAOl_jRRXwIGDr9wL", + "type": "text" + }, + { + "id": "qZ9OENwrjbe8TomPhxWso", + "type": "arrow" + }, + { + "id": "6zZT7ZpAyffxXh8btJNZN", + "type": "arrow" + } + ], + "updated": 1770038064576, + "link": null, + "locked": false + }, + { + "id": "tKonvAOl_jRRXwIGDr9wL", + "type": "text", + "x": 984.2750396728516, + "y": 3611.5418701171875, + "width": 200.19992065429688, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "au", + "roundness": null, + "seed": 344502475, + "version": 377, + "versionNonce": 729902283, + "isDeleted": false, + "boundElements": [], + "updated": 1770037588400, + "link": null, + "locked": false, + "text": "PlainListener", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "UO6X9HPP7EA6UZPetXAFv", + "originalText": "PlainListener", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "cZV4FXnv1aoIXYKw4Bslf", + "type": "text", + "x": 453.404296875, + "y": 2562.7916259765625, + "width": 475.19970703125, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aw", + "roundness": null, + "seed": 786774539, + "version": 273, + "versionNonce": 1057084523, + "isDeleted": false, + "boundElements": [], + "updated": 1770037595741, + "link": null, + "locked": false, + "text": "Streaming with JetStream", + "fontSize": 36, + "fontFamily": 8, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Streaming with JetStream", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "UOTQRvDakS-qdmPMsbTyb", + "type": "text", + "x": 561.689453125, + "y": 2633.4205322265625, + "width": 585.1997680664062, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ax", + "roundness": null, + "seed": 1239924907, + "version": 235, + "versionNonce": 157708837, + "isDeleted": false, + "boundElements": [], + "updated": 1770037607356, + "link": null, + "locked": false, + "text": "Durable - Consumers and Stream Created", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Durable - Consumers and Stream Created", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "pROBnzCl7UA7vmG7tUoHJ", + "type": "rectangle", + "x": 1892.92578125, + "y": 2830.645263671875, + "width": 312.51953125, + "height": 72.828125, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#a5d8ff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ay", + "roundness": null, + "seed": 2054010789, + "version": 237, + "versionNonce": 741943269, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "xMgDz7NjpFKiEvfM5lm_q" + }, + { + "id": "FvY7SjX3LadHte9Pb10Mk", + "type": "arrow" + } + ], + "updated": 1770037817479, + "link": null, + "locked": false + }, + { + "id": "xMgDz7NjpFKiEvfM5lm_q", + "type": "text", + "x": 1933.6855926513672, + "y": 2849.559326171875, + "width": 230.99990844726562, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "az", + "roundness": null, + "seed": 1779753893, + "version": 192, + "versionNonce": 1962206021, + "isDeleted": false, + "boundElements": null, + "updated": 1770037817479, + "link": null, + "locked": false, + "text": "Stream \"PEOPLE\"", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "pROBnzCl7UA7vmG7tUoHJ", + "originalText": "Stream \"PEOPLE\"", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "FvY7SjX3LadHte9Pb10Mk", + "type": "arrow", + "x": 1274.7926450469743, + "y": 2854.197141662318, + "width": 617.133136203026, + "height": 0.7788835862620545, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b00", + "roundness": { + "type": 2 + }, + "seed": 1659529125, + "version": 183, + "versionNonce": 1499607717, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "dK0qCnowgNzWgsPYtY7cA" + } + ], + "updated": 1770037817479, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 617.133136203026, + -0.7788835862620545 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "QsSFv51x_reZROki5Bn5T", + "focus": -0.18319093938429623, + "gap": 1 + }, + "endBinding": { + "elementId": "pROBnzCl7UA7vmG7tUoHJ", + "focus": 0.3780114639511963, + "gap": 1 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "dK0qCnowgNzWgsPYtY7cA", + "type": "text", + "x": 1414.6586151123047, + "y": 2757.725341796875, + "width": 107.79995727539062, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b01", + "roundness": null, + "seed": 949505573, + "version": 9, + "versionNonce": 289909893, + "isDeleted": false, + "boundElements": null, + "updated": 1770037686115, + "link": null, + "locked": false, + "text": "defines", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "FvY7SjX3LadHte9Pb10Mk", + "originalText": "defines", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "tfp0QzQlPu7qHQf1sGBgm", + "type": "text", + "x": 2010.51171875, + "y": 2709.403076171875, + "width": 939.399658203125, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b02", + "roundness": null, + "seed": 620224165, + "version": 136, + "versionNonce": 662020037, + "isDeleted": false, + "boundElements": null, + "updated": 1770037750346, + "link": null, + "locked": false, + "text": "subject is \"people.>\" which means \"people.ANYTHING.GOES.HERE\"", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "subject is \"people.>\" which means \"people.ANYTHING.GOES.HERE\"", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "TlcGLtfGSBAKH9JYxJQ6X", + "type": "rectangle", + "x": 1924.3125, + "y": 2976.822509765625, + "width": 476.1367187500002, + "height": 80, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#96f2d7", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b03", + "roundness": null, + "seed": 569963685, + "version": 76, + "versionNonce": 308633797, + "isDeleted": false, + "boundElements": [ + { + "id": "LFwazZnm8IAt-rzWLSC24", + "type": "text" + } + ], + "updated": 1770038007775, + "link": null, + "locked": false + }, + { + "id": "LFwazZnm8IAt-rzWLSC24", + "type": "text", + "x": 2031.4809112548828, + "y": 2981.822509765625, + "width": 261.7998962402344, + "height": 70, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#a5d8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b04", + "roundness": null, + "seed": 1654462469, + "version": 68, + "versionNonce": 799246725, + "isDeleted": false, + "boundElements": null, + "updated": 1770038012619, + "link": null, + "locked": false, + "text": "consumer: api-two\nsubject: people.>", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "TlcGLtfGSBAKH9JYxJQ6X", + "originalText": "consumer: api-two\nsubject: people.>", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "cU08kA8wSSEcC-pfaR07c", + "type": "rectangle", + "x": 1925.19140625, + "y": 3105.185791015625, + "width": 473.51562499999994, + "height": 80, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#d0bfff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b05", + "roundness": null, + "seed": 1985449317, + "version": 387, + "versionNonce": 633990603, + "isDeleted": false, + "boundElements": [ + { + "type": "text", + "id": "cfCs9WqP0SITVJl4dWnVZ" + } + ], + "updated": 1770038026129, + "link": null, + "locked": false + }, + { + "id": "cfCs9WqP0SITVJl4dWnVZ", + "type": "text", + "x": 1977.1492919921875, + "y": 3110.185791015625, + "width": 369.599853515625, + "height": 70, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#a5d8ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b06", + "roundness": null, + "seed": 1169626021, + "version": 414, + "versionNonce": 830471275, + "isDeleted": false, + "boundElements": null, + "updated": 1770038026129, + "link": null, + "locked": false, + "text": "consumer: plain-listener\nsubject: people.created", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "cU08kA8wSSEcC-pfaR07c", + "originalText": "consumer: plain-listener\nsubject: people.created", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "q7c4LiLshr5X5F506MA6i", + "type": "arrow", + "x": 1560.65625, + "y": 3249.228759765625, + "width": 105.359375, + "height": 143.80078125, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#d0bfff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b07", + "roundness": { + "type": 2 + }, + "seed": 1307975083, + "version": 119, + "versionNonce": 1101903979, + "isDeleted": false, + "boundElements": null, + "updated": 1770038049127, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -105.359375, + 143.80078125 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "waItm5K7j9KBJ0a8YB6pH", + "focus": 0.039196125600580715, + "gap": 1.3314184003221736 + }, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "ff_GwALyJEoDZM-Xktzc-", + "type": "arrow", + "x": 1439.078125, + "y": 3399.947509765625, + "width": 154.1015625, + "height": 18.90625, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#d0bfff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b08", + "roundness": { + "type": 2 + }, + "seed": 1987794725, + "version": 66, + "versionNonce": 1668470405, + "isDeleted": false, + "boundElements": null, + "updated": 1770038058767, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -154.1015625, + -18.90625 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": { + "elementId": "bG1QjyAqSlkfpx93Wzo2a", + "focus": -0.29868689210058585, + "gap": 14.181640625 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "6zZT7ZpAyffxXh8btJNZN", + "type": "arrow", + "x": 1439.765625, + "y": 3427.088134765625, + "width": 141.640625, + "height": 205.93359375, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#d0bfff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b09", + "roundness": { + "type": 2 + }, + "seed": 1715349899, + "version": 51, + "versionNonce": 1591979269, + "isDeleted": false, + "boundElements": null, + "updated": 1770038064576, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -141.640625, + 205.93359375 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": { + "elementId": "UO6X9HPP7EA6UZPetXAFv", + "focus": 0.8531649474217814, + "gap": 27.330078125 + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "49HPXy67a1UtksH5eLm8s", + "type": "text", + "x": 1500, + "y": 3418.603759765625, + "width": 338.79986572265625, + "height": 70, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "#d0bfff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0A", + "roundness": null, + "seed": 1669759621, + "version": 35, + "versionNonce": 540676421, + "isDeleted": false, + "boundElements": null, + "updated": 1770038080646, + "link": null, + "locked": false, + "text": "Delivers to one of the\nconsumers.", + "fontSize": 28, + "fontFamily": 8, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Delivers to one of the\nconsumers.", + "autoResize": true, + "lineHeight": 1.25 + } + ], + "appState": { + "gridSize": 20, + "gridStep": 5, + "gridModeEnabled": false, + "viewBackgroundColor": "#ffffff" + }, + "files": {} +} \ No newline at end of file