commit 6ca282d2088e2c62e6b0c2bbc54720117c8dc08f Author: Sam <315859133@qq.com> Date: Sun Feb 1 23:23:56 2026 +0800 feat(auth): create authentication service project structure diff --git a/docs/task-01-create-project-structure.md b/docs/task-01-create-project-structure.md new file mode 100644 index 0000000..8564ec7 --- /dev/null +++ b/docs/task-01-create-project-structure.md @@ -0,0 +1,99 @@ +# Task 1: Create Project Structure + +## Task Description + +**Files:** +- Create: `src/Fengling.AuthService/Fengling.AuthService.csproj` +- Create: `src/Fengling.AuthService/Program.cs` +- Create: `src/Fengling.AuthService/appsettings.json` + +## Implementation Steps + +### Step 1: Create project file + +Run: +```bash +cd /Users/movingsam/Fengling.Refactory.Buiding/src +dotnet new webapi -n Fengling.AuthService -o Fengling.AuthService +``` + +### Step 2: Update project file with dependencies + +Edit: `src/Fengling.AuthService/Fengling.AuthService.csproj` + +```xml + + + net10.0 + enable + enable + + + + + + + + + + + + + + + +``` + +### Step 3: Create appsettings.json + +Create: `src/Fengling.AuthService/appsettings.json` + +```json +{ + "ConnectionStrings": { + "DefaultConnection": "Host=192.168.100.10;Port=5432;Database=fengling_auth;Username=movingsam;Password=sl52788542" + }, + "OpenIddict": { + "Issuer": "https://auth.fengling.local", + "Audience": "fengling-api" + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} +``` + +### Step 4: Commit + +```bash +git add src/Fengling.AuthService/ +git commit -m "feat(auth): create authentication service project structure" +``` + +## Context + +This is the first task of implementing the Fengling Authentication Service. We're building a standalone authentication service using OpenIddict for JWT token issuance and multi-tenant support. This task establishes the basic ASP.NET Core Web API project structure with all necessary dependencies including OpenIddict, EF Core, PostgreSQL, Serilog, and OpenTelemetry. + +**Architecture**: ASP.NET Core Web API with OpenIddict for OAuth2/OIDC, PostgreSQL for user data. + +**Tech Stack**: .NET 10.0, OpenIddict 5.x, EF Core 9.0, PostgreSQL, Serilog, OpenTelemetry. + +**Working Directory**: `/Users/movingsam/Fengling.Refactory.Buiding/src` + +## Verification + +- [ ] Project file created successfully +- [ ] Target framework set to net10.0 +- [ ] All NuGet packages added +- [ ] appsettings.json configured with connection string and OpenIddict settings +- [ ] Project builds successfully +- [ ] Committed to git + +## Notes + +- OpenIddict packages were resolved to version 5.1.0 (latest available) instead of 5.0.2 +- Used .NET 10.0 as target framework diff --git a/src/Fengling.AuthService/Fengling.AuthService.csproj b/src/Fengling.AuthService/Fengling.AuthService.csproj new file mode 100644 index 0000000..38a09d5 --- /dev/null +++ b/src/Fengling.AuthService/Fengling.AuthService.csproj @@ -0,0 +1,20 @@ + + + net9.0 + enable + enable + + + + + + + + + + + + + + + diff --git a/src/Fengling.AuthService/Fengling.AuthService.http b/src/Fengling.AuthService/Fengling.AuthService.http new file mode 100644 index 0000000..2746cc8 --- /dev/null +++ b/src/Fengling.AuthService/Fengling.AuthService.http @@ -0,0 +1,6 @@ +@Fengling.AuthService_HostAddress = http://localhost:5132 + +GET {{Fengling.AuthService_HostAddress}}/weatherforecast/ +Accept: application/json + +### diff --git a/src/Fengling.AuthService/Program.cs b/src/Fengling.AuthService/Program.cs new file mode 100644 index 0000000..ee9d65d --- /dev/null +++ b/src/Fengling.AuthService/Program.cs @@ -0,0 +1,41 @@ +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. +// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi +builder.Services.AddOpenApi(); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) +{ + app.MapOpenApi(); +} + +app.UseHttpsRedirection(); + +var summaries = new[] +{ + "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" +}; + +app.MapGet("/weatherforecast", () => +{ + var forecast = Enumerable.Range(1, 5).Select(index => + new WeatherForecast + ( + DateOnly.FromDateTime(DateTime.Now.AddDays(index)), + Random.Shared.Next(-20, 55), + summaries[Random.Shared.Next(summaries.Length)] + )) + .ToArray(); + return forecast; +}) +.WithName("GetWeatherForecast"); + +app.Run(); + +record WeatherForecast(DateOnly Date, int TemperatureC, string? Summary) +{ + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); +} diff --git a/src/Fengling.AuthService/Properties/launchSettings.json b/src/Fengling.AuthService/Properties/launchSettings.json new file mode 100644 index 0000000..b8d0b90 --- /dev/null +++ b/src/Fengling.AuthService/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "http://localhost:5132", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "https://localhost:7150;http://localhost:5132", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Fengling.AuthService/appsettings.Development.json b/src/Fengling.AuthService/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/src/Fengling.AuthService/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/src/Fengling.AuthService/appsettings.json b/src/Fengling.AuthService/appsettings.json new file mode 100644 index 0000000..b0df93d --- /dev/null +++ b/src/Fengling.AuthService/appsettings.json @@ -0,0 +1,16 @@ +{ + "ConnectionStrings": { + "DefaultConnection": "Host=192.168.100.10;Port=5432;Database=fengling_auth;Username=movingsam;Password=sl52788542" + }, + "OpenIddict": { + "Issuer": "https://auth.fengling.local", + "Audience": "fengling-api" + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.dgspec.json b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.dgspec.json new file mode 100644 index 0000000..aa0c7bf --- /dev/null +++ b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.dgspec.json @@ -0,0 +1,127 @@ +{ + "format": 1, + "restore": { + "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj": {} + }, + "projects": { + "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj", + "projectName": "Fengling.AuthService", + "projectPath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj", + "packagesPath": "/Users/movingsam/.nuget/packages/", + "outputPath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/movingsam/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/local/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.0, )" + }, + "OpenIddict.AspNetCore": { + "target": "Package", + "version": "[5.0.2, )" + }, + "OpenIddict.EntityFrameworkCore": { + "target": "Package", + "version": "[5.0.2, )" + }, + "OpenTelemetry": { + "target": "Package", + "version": "[1.10.0, )" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol": { + "target": "Package", + "version": "[1.10.0, )" + }, + "OpenTelemetry.Extensions.Hosting": { + "target": "Package", + "version": "[1.10.0, )" + }, + "OpenTelemetry.Instrumentation.AspNetCore": { + "target": "Package", + "version": "[1.10.0, )" + }, + "Serilog.AspNetCore": { + "target": "Package", + "version": "[8.0.0, )" + }, + "Serilog.Sinks.Console": { + "target": "Package", + "version": "[5.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[9.0.11, 9.0.11]" + }, + { + "name": "Microsoft.NETCore.App.Host.osx-arm64", + "version": "[9.0.11, 9.0.11]" + }, + { + "name": "Microsoft.NETCore.App.Ref", + "version": "[9.0.11, 9.0.11]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.props b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.props new file mode 100644 index 0000000..a377c80 --- /dev/null +++ b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/movingsam/.nuget/packages/ + /Users/movingsam/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + \ No newline at end of file diff --git a/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.targets b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.targets new file mode 100644 index 0000000..73f3887 --- /dev/null +++ b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/Fengling.AuthService/obj/project.assets.json b/src/Fengling.AuthService/obj/project.assets.json new file mode 100644 index 0000000..aeefe27 --- /dev/null +++ b/src/Fengling.AuthService/obj/project.assets.json @@ -0,0 +1,3791 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "Google.Protobuf/3.22.5": { + "type": "package", + "compile": { + "lib/net5.0/Google.Protobuf.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "related": ".pdb;.xml" + } + } + }, + "Grpc.Core.Api/2.52.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "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.52.0": { + "type": "package", + "dependencies": { + "Grpc.Net.Common": "2.52.0", + "Microsoft.Extensions.Logging.Abstractions": "3.0.3" + }, + "compile": { + "lib/net7.0/Grpc.Net.Client.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Grpc.Net.Client.dll": { + "related": ".pdb;.xml" + } + } + }, + "Grpc.Net.Common/2.52.0": { + "type": "package", + "dependencies": { + "Grpc.Core.Api": "2.52.0" + }, + "compile": { + "lib/net7.0/Grpc.Net.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Grpc.Net.Common.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.0", + "Microsoft.Extensions.Identity.Stores": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.0": { + "type": "package" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Diagnostics": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Http.Polly/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Http": "8.0.0", + "Polly": "7.2.4", + "Polly.Extensions.Http": "3.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.0", + "Microsoft.Extensions.Identity.Core": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.IdentityModel.Abstractions/7.2.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/7.2.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "7.2.0" + }, + "compile": { + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/7.2.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "7.2.0" + }, + "compile": { + "lib/net8.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/7.2.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "7.2.0", + "Microsoft.IdentityModel.Tokens": "7.2.0" + }, + "compile": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/7.2.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "7.2.0" + }, + "compile": { + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Npgsql/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "System.Text.Json": "9.0.0" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "[9.0.0, 10.0.0)", + "Microsoft.EntityFrameworkCore.Relational": "[9.0.0, 10.0.0)", + "Npgsql": "9.0.0" + }, + "compile": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + } + }, + "OpenIddict/5.1.0": { + "type": "package", + "dependencies": { + "OpenIddict.Abstractions": "5.1.0", + "OpenIddict.Client": "5.1.0", + "OpenIddict.Client.SystemIntegration": "5.1.0", + "OpenIddict.Client.SystemNetHttp": "5.1.0", + "OpenIddict.Client.WebIntegration": "5.1.0", + "OpenIddict.Core": "5.1.0", + "OpenIddict.Server": "5.1.0", + "OpenIddict.Validation": "5.1.0", + "OpenIddict.Validation.ServerIntegration": "5.1.0", + "OpenIddict.Validation.SystemNetHttp": "5.1.0" + }, + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + } + }, + "OpenIddict.Abstractions/5.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0", + "Microsoft.IdentityModel.Tokens": "7.2.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Abstractions.dll": { + "related": ".xml" + } + } + }, + "OpenIddict.AspNetCore/5.1.0": { + "type": "package", + "dependencies": { + "OpenIddict": "5.1.0", + "OpenIddict.Client.AspNetCore": "5.1.0", + "OpenIddict.Client.DataProtection": "5.1.0", + "OpenIddict.Server.AspNetCore": "5.1.0", + "OpenIddict.Server.DataProtection": "5.1.0", + "OpenIddict.Validation.AspNetCore": "5.1.0", + "OpenIddict.Validation.DataProtection": "5.1.0" + }, + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + } + }, + "OpenIddict.Client/5.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.IdentityModel.JsonWebTokens": "7.2.0", + "Microsoft.IdentityModel.Protocols": "7.2.0", + "OpenIddict.Abstractions": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Client.dll": { + "related": ".xml" + } + } + }, + "OpenIddict.Client.AspNetCore/5.1.0": { + "type": "package", + "dependencies": { + "OpenIddict.Client": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Client.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Client.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenIddict.Client.DataProtection/5.1.0": { + "type": "package", + "dependencies": { + "OpenIddict.Client": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Client.DataProtection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Client.DataProtection.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenIddict.Client.SystemIntegration/5.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", + "OpenIddict.Client": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Client.SystemIntegration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Client.SystemIntegration.dll": { + "related": ".xml" + } + } + }, + "OpenIddict.Client.SystemNetHttp/5.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Http.Polly": "8.0.1", + "OpenIddict.Client": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Client.SystemNetHttp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Client.SystemNetHttp.dll": { + "related": ".xml" + } + } + }, + "OpenIddict.Client.WebIntegration/5.1.0": { + "type": "package", + "dependencies": { + "OpenIddict.Client": "5.1.0", + "OpenIddict.Client.SystemNetHttp": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Client.WebIntegration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Client.WebIntegration.dll": { + "related": ".xml" + } + } + }, + "OpenIddict.Core/5.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Memory": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Options": "8.0.1", + "OpenIddict.Abstractions": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Core.dll": { + "related": ".xml" + } + } + }, + "OpenIddict.EntityFrameworkCore/5.1.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "8.0.1", + "OpenIddict.Core": "5.1.0", + "OpenIddict.EntityFrameworkCore.Models": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "OpenIddict.EntityFrameworkCore.Models/5.1.0": { + "type": "package", + "compile": { + "lib/net8.0/OpenIddict.EntityFrameworkCore.Models.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.EntityFrameworkCore.Models.dll": { + "related": ".xml" + } + } + }, + "OpenIddict.Server/5.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.IdentityModel.JsonWebTokens": "7.2.0", + "OpenIddict.Abstractions": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Server.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Server.dll": { + "related": ".xml" + } + } + }, + "OpenIddict.Server.AspNetCore/5.1.0": { + "type": "package", + "dependencies": { + "OpenIddict.Server": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Server.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Server.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenIddict.Server.DataProtection/5.1.0": { + "type": "package", + "dependencies": { + "OpenIddict.Server": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Server.DataProtection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Server.DataProtection.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenIddict.Validation/5.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.IdentityModel.JsonWebTokens": "7.2.0", + "Microsoft.IdentityModel.Protocols": "7.2.0", + "OpenIddict.Abstractions": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Validation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Validation.dll": { + "related": ".xml" + } + } + }, + "OpenIddict.Validation.AspNetCore/5.1.0": { + "type": "package", + "dependencies": { + "OpenIddict.Validation": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Validation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Validation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenIddict.Validation.DataProtection/5.1.0": { + "type": "package", + "dependencies": { + "OpenIddict.Validation": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Validation.DataProtection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Validation.DataProtection.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenIddict.Validation.ServerIntegration/5.1.0": { + "type": "package", + "dependencies": { + "OpenIddict.Server": "5.1.0", + "OpenIddict.Validation": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Validation.ServerIntegration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Validation.ServerIntegration.dll": { + "related": ".xml" + } + } + }, + "OpenIddict.Validation.SystemNetHttp/5.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Http.Polly": "8.0.1", + "OpenIddict.Validation": "5.1.0" + }, + "compile": { + "lib/net8.0/OpenIddict.Validation.SystemNetHttp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenIddict.Validation.SystemNetHttp.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry/1.10.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.10.0" + }, + "compile": { + "lib/net9.0/OpenTelemetry.dll": { + "related": ".dll-keyless.pem;.dll-keyless.sig;.xml" + } + }, + "runtime": { + "lib/net9.0/OpenTelemetry.dll": { + "related": ".dll-keyless.pem;.dll-keyless.sig;.xml" + } + } + }, + "OpenTelemetry.Api/1.10.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "compile": { + "lib/net9.0/OpenTelemetry.Api.dll": { + "related": ".dll-keyless.pem;.dll-keyless.sig;.xml" + } + }, + "runtime": { + "lib/net9.0/OpenTelemetry.Api.dll": { + "related": ".dll-keyless.pem;.dll-keyless.sig;.xml" + } + } + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.10.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "OpenTelemetry.Api": "1.10.0" + }, + "compile": { + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".dll-keyless.pem;.dll-keyless.sig;.xml" + } + }, + "runtime": { + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".dll-keyless.pem;.dll-keyless.sig;.xml" + } + } + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.10.0": { + "type": "package", + "dependencies": { + "Google.Protobuf": "[3.22.5, 4.0.0)", + "Grpc.Net.Client": "[2.52.0, 3.0.0)", + "OpenTelemetry": "1.10.0" + }, + "compile": { + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".dll-keyless.pem;.dll-keyless.sig;.xml" + } + }, + "runtime": { + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".dll-keyless.pem;.dll-keyless.sig;.xml" + } + } + }, + "OpenTelemetry.Extensions.Hosting/1.10.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", + "OpenTelemetry": "1.10.0" + }, + "compile": { + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".dll-keyless.pem;.dll-keyless.sig;.xml" + } + }, + "runtime": { + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".dll-keyless.pem;.dll-keyless.sig;.xml" + } + } + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.10.0": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "[1.10.0, 2.0.0)" + }, + "compile": { + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Polly/7.2.4": { + "type": "package", + "compile": { + "lib/netstandard2.0/Polly.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Polly.dll": { + "related": ".pdb;.xml" + } + } + }, + "Polly.Extensions.Http/3.0.0": { + "type": "package", + "dependencies": { + "Polly": "7.1.0" + }, + "compile": { + "lib/netstandard2.0/Polly.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Polly.Extensions.Http.dll": { + "related": ".xml" + } + } + }, + "Serilog/3.1.1": { + "type": "package", + "compile": { + "lib/net7.0/Serilog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Serilog.dll": { + "related": ".xml" + } + } + }, + "Serilog.AspNetCore/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Hosting": "8.0.0", + "Serilog.Extensions.Logging": "8.0.0", + "Serilog.Formatting.Compact": "2.0.0", + "Serilog.Settings.Configuration": "8.0.0", + "Serilog.Sinks.Console": "5.0.0", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "5.0.0" + }, + "compile": { + "lib/net8.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Serilog.Extensions.Hosting/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Logging": "8.0.0" + }, + "compile": { + "lib/net8.0/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + } + }, + "Serilog.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1" + }, + "compile": { + "lib/net8.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Serilog.Formatting.Compact/2.0.0": { + "type": "package", + "dependencies": { + "Serilog": "3.1.0" + }, + "compile": { + "lib/net7.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + } + }, + "Serilog.Settings.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.0", + "Serilog": "3.1.1" + }, + "compile": { + "lib/net8.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Console/5.0.1": { + "type": "package", + "dependencies": { + "Serilog": "3.1.1" + }, + "compile": { + "lib/net7.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/System.Text.Json.targets": {} + } + } + } + }, + "libraries": { + "Google.Protobuf/3.22.5": { + "sha512": "tTMtDZPbLxJew8pk7NBdqhLqC4OipfkZdwPuCEUNr2AoDo1siUGcxFqJK0wDewTL8ge5Cjrb16CToMPxBUHMGA==", + "type": "package", + "path": "google.protobuf/3.22.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "google.protobuf.3.22.5.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.Core.Api/2.52.0": { + "sha512": "SQiPyBczG4vKPmI6Fd+O58GcxxDSFr6nfRAJuBDUNj+PgdokhjWJvZE/La1c09AkL2FVm/jrDloG89nkzmVF7A==", + "type": "package", + "path": "grpc.core.api/2.52.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "grpc.core.api.2.52.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/netstandard1.5/Grpc.Core.Api.dll", + "lib/netstandard1.5/Grpc.Core.Api.pdb", + "lib/netstandard1.5/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.52.0": { + "sha512": "hWVH9g/Nnjz40ni//2S8UIOyEmhueQREoZIkD0zKHEPqLxXcNlbp4eebXIOicZtkwDSx0TFz9NpkbecEDn6rBw==", + "type": "package", + "path": "grpc.net.client/2.52.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "grpc.net.client.2.52.0.nupkg.sha512", + "grpc.net.client.nuspec", + "lib/net5.0/Grpc.Net.Client.dll", + "lib/net5.0/Grpc.Net.Client.pdb", + "lib/net5.0/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/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.Common/2.52.0": { + "sha512": "di9qzpdx525IxumZdYmu6sG2y/gXJyYeZ1ruFUzB9BJ1nj4kU1/dTAioNCMt1VLRvNVDqh8S8B1oBdKhHJ4xRg==", + "type": "package", + "path": "grpc.net.common/2.52.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "grpc.net.common.2.52.0.nupkg.sha512", + "grpc.net.common.nuspec", + "lib/net5.0/Grpc.Net.Common.dll", + "lib/net5.0/Grpc.Net.Common.pdb", + "lib/net5.0/Grpc.Net.Common.xml", + "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/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" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.0": { + "sha512": "M1dzTEl+2+RqT4vWcqEpWasPXHd58wC93U7QMlmPSmx+qixyVxCQjZ183wr7Wa68b4pF7wC501MU9rdA0ZNhMg==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.9.0.0.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.0": { + "sha512": "9X4cx2IHNpYb9ka984BjDpJnKkindW17Z2kR/RI5pbTcbVUVMJjiAKnBhAqH24KtAEf1AU64LD60byzCn0/n8w==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "microsoft.aspnetcore.cryptography.keyderivation.9.0.0.nupkg.sha512", + "microsoft.aspnetcore.cryptography.keyderivation.nuspec" + ] + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.0": { + "sha512": "fwQkBQGaiRKDQWBc7PXxDiDXtsUsRPL88Jp0CqjqoDhd9p5uHSyuv6g3ALq2EbCvKcWk/7pOKsJiDomPvp/ptA==", + "type": "package", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml", + "microsoft.aspnetcore.identity.entityframeworkcore.9.0.0.nupkg.sha512", + "microsoft.aspnetcore.identity.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/9.0.0": { + "sha512": "wpG+nfnfDAw87R3ovAsUmjr3MZ4tYXf6bFqEPVAIKE6IfPml3DS//iX0DBnf8kWn5ZHSO5oi1m4d/Jf+1LifJQ==", + "type": "package", + "path": "microsoft.entityframeworkcore/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.9.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.0": { + "sha512": "fnmifFL8KaA4ZNLCVgfjCWhZUFxkrDInx5hR4qG7Q8IEaSiy/6VOSRFyx55oH7MV4y7wM3J3EE90nSpcVBI44Q==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.9.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.0": { + "sha512": "Qje+DzXJOKiXF72SL0XxNlDtTkvWWvmwknuZtFahY5hIQpRKO59qnGuERIQ3qlzuq5x4bAJ8WMbgU5DLhBgeOQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "microsoft.entityframeworkcore.analyzers.9.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.0": { + "sha512": "j+msw6fWgAE9M3Q/5B9Uhv7pdAdAQUvFPJAiBJmoy+OXvehVbfbCE8ftMAa51Uo2ZeiqVnHShhnv4Y4UJJmUzA==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.9.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.0": { + "sha512": "FPWZAa9c0H4dvOj351iR1jkUIs4u9ykL4Bm592yhjDyO5lCoWd+TMAHx2EMbarzUvCvgjWjJIoC6//Q9kH6YhA==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/9.0.0": { + "sha512": "zbnPX/JQ0pETRSUG9fNPBvpIq42Aufvs15gGYyNIMhCun9yhmWihz0WgsI7bSDPjxWTKBf8oX/zv6v2uZ3W9OQ==", + "type": "package", + "path": "microsoft.extensions.caching.memory/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.9.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "sha512": "YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", + "type": "package", + "path": "microsoft.extensions.configuration/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "sha512": "lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "sha512": "RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "sha512": "MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "sha512": "+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "sha512": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics/8.0.0": { + "sha512": "3PZp/YSkIXrF7QK7PfC1bkyRYwqOHpWFad8Qx+4wkuumAeXo1NHaxpS9LboNA9OvNSAu+QOVlXbMyoY+pHSqcw==", + "type": "package", + "path": "microsoft.extensions.diagnostics/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets", + "lib/net462/Microsoft.Extensions.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.xml", + "lib/net6.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net6.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net7.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net7.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml", + "microsoft.extensions.diagnostics.8.0.0.nupkg.sha512", + "microsoft.extensions.diagnostics.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "sha512": "1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", + "type": "package", + "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.diagnostics.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "sha512": "uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "sha512": "yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Http/8.0.0": { + "sha512": "cWz4caHwvx0emoYe7NkHPxII/KkTI8R/LC9qdqJqnKv2poTJ4e2qqPGQqvRoQ5kaSA4FU5IV3qFAuLuOhoqULQ==", + "type": "package", + "path": "microsoft.extensions.http/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Http.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Http.targets", + "lib/net462/Microsoft.Extensions.Http.dll", + "lib/net462/Microsoft.Extensions.Http.xml", + "lib/net6.0/Microsoft.Extensions.Http.dll", + "lib/net6.0/Microsoft.Extensions.Http.xml", + "lib/net7.0/Microsoft.Extensions.Http.dll", + "lib/net7.0/Microsoft.Extensions.Http.xml", + "lib/net8.0/Microsoft.Extensions.Http.dll", + "lib/net8.0/Microsoft.Extensions.Http.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.xml", + "microsoft.extensions.http.8.0.0.nupkg.sha512", + "microsoft.extensions.http.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Http.Polly/8.0.1": { + "sha512": "UOX9uZLKQsJ6COAHT65jXU2P7Az+6283DxvOO2/+JIjeX6HafgbO8b7U4Ms2bQi2ztp/gIQ1MnNlVWPdJlOOaw==", + "type": "package", + "path": "microsoft.extensions.http.polly/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.xml", + "microsoft.extensions.http.polly.8.0.1.nupkg.sha512", + "microsoft.extensions.http.polly.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Core/9.0.0": { + "sha512": "+cQjUs8PIheIMALzrf/e4gW6A/yOK8XYBxeEmAfLvVIaV9lsBGvVT0zjEZ1KPQDJ9nUeQ9uAw077J7LPUwv8wA==", + "type": "package", + "path": "microsoft.extensions.identity.core/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Core.dll", + "lib/net462/Microsoft.Extensions.Identity.Core.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Core.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml", + "microsoft.extensions.identity.core.9.0.0.nupkg.sha512", + "microsoft.extensions.identity.core.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Stores/9.0.0": { + "sha512": "XG3opf0KgWoYAUdLRhrIvI46W+/E45Ov8rzgwr0omrq5u06MCrsuMm0nPmd+pIWjMXRxbBk1uL47zGyW1lI5Hw==", + "type": "package", + "path": "microsoft.extensions.identity.stores/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Stores.dll", + "lib/net462/Microsoft.Extensions.Identity.Stores.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml", + "microsoft.extensions.identity.stores.9.0.0.nupkg.sha512", + "microsoft.extensions.identity.stores.nuspec" + ] + }, + "Microsoft.Extensions.Logging/9.0.0": { + "sha512": "crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "type": "package", + "path": "microsoft.extensions.logging/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "sha512": "g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "sha512": "H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/9.0.0": { + "sha512": "y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "type": "package", + "path": "microsoft.extensions.options/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "sha512": "Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "sha512": "N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "type": "package", + "path": "microsoft.extensions.primitives/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IdentityModel.Abstractions/7.2.0": { + "sha512": "7YgmrhCORuOP8miZJLdQhSEzyHdD5PfRjaqINbqSzS9LKEfOoHq8S9o4FVmK9Mu7Gts8MfL46sshwCk4AgjNyw==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.7.2.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/7.2.0": { + "sha512": "zLFA9IBxDWw6Y1nz2PPZyQvF+ZZ4aW1pwgtwusQB39lgxOc2xVqZ8gitsuT1rwyuIbchGOWbax4fsJ8OgGRxSQ==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.7.2.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/7.2.0": { + "sha512": "U15cZGq0JfkFXKDaDalq75WKGJniZnV0D6tCbaqc/NgLpIIO/Sq56PGr1v9fhPmXW2xb6ParGFfZkfryewmpWQ==", + "type": "package", + "path": "microsoft.identitymodel.logging/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/net8.0/Microsoft.IdentityModel.Logging.dll", + "lib/net8.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.7.2.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/7.2.0": { + "sha512": "V0shZekRJDwoOjqeg79M2I/Mg+PXq2DWGVymW6h2CbWOwxqHItHF3QH9Tex8cKUSEY+4/NWDUvP5c48um2xNvw==", + "type": "package", + "path": "microsoft.identitymodel.protocols/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/net8.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net8.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.7.2.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/7.2.0": { + "sha512": "ycDxTRKNG2ad+y8166YuE0vqbzONEcgoZhMeOfqOoC4GDNOGEYlMoSS+Qm6n/GBHgW6FNmNxpXOUJLRMbJxcWQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.7.2.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Npgsql/9.0.0": { + "sha512": "zu1nCRt0gWP/GR0reYgg0Bl5o8qyNV7mVAgzAbVLRiAd1CYXcf/9nrubPH0mt93u8iGTKmYqWaLVECEAcE6IfQ==", + "type": "package", + "path": "npgsql/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "npgsql.9.0.0.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.0": { + "sha512": "ObngKFRLMBAeMqQzK7SC0Q6WZtWw0imPmEkVPo12yLVF3fioz2TN+w0mhNMJ5cVd/sLB2u+jei0bmA9sDMtkMw==", + "type": "package", + "path": "npgsql.entityframeworkcore.postgresql/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", + "npgsql.entityframeworkcore.postgresql.9.0.0.nupkg.sha512", + "npgsql.entityframeworkcore.postgresql.nuspec", + "postgresql.png" + ] + }, + "OpenIddict/5.1.0": { + "sha512": "uCKbNAHeNi3kgcpMjLEdiKp8rmJmYtvgwmeYA9Q0wtFTlgNe6Kim6g4VWDWgT42tglBL44gN6ScjxxCVkyIq/Q==", + "type": "package", + "path": "openiddict/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/_._", + "lib/net472/_._", + "lib/net48/_._", + "lib/net6.0-windows10.0.17763/_._", + "lib/net6.0-windows7.0/_._", + "lib/net6.0/_._", + "lib/net7.0-windows10.0.17763/_._", + "lib/net7.0-windows7.0/_._", + "lib/net7.0/_._", + "lib/net8.0-windows10.0.17763/_._", + "lib/net8.0-windows7.0/_._", + "lib/net8.0/_._", + "lib/netstandard2.0/_._", + "lib/netstandard2.1/_._", + "openiddict.5.1.0.nupkg.sha512", + "openiddict.nuspec" + ] + }, + "OpenIddict.Abstractions/5.1.0": { + "sha512": "Pn5Cb+IcdGYJ3T4gCT6rw3QivTnxiimsXcx3+muMHfP/46smlH9kCDjMoc0X6O8tYAm21KFGTZAsUaeXkW92dQ==", + "type": "package", + "path": "openiddict.abstractions/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Abstractions.dll", + "lib/net461/OpenIddict.Abstractions.xml", + "lib/net472/OpenIddict.Abstractions.dll", + "lib/net472/OpenIddict.Abstractions.xml", + "lib/net48/OpenIddict.Abstractions.dll", + "lib/net48/OpenIddict.Abstractions.xml", + "lib/net6.0/OpenIddict.Abstractions.dll", + "lib/net6.0/OpenIddict.Abstractions.xml", + "lib/net7.0/OpenIddict.Abstractions.dll", + "lib/net7.0/OpenIddict.Abstractions.xml", + "lib/net8.0/OpenIddict.Abstractions.dll", + "lib/net8.0/OpenIddict.Abstractions.xml", + "lib/netstandard2.0/OpenIddict.Abstractions.dll", + "lib/netstandard2.0/OpenIddict.Abstractions.xml", + "lib/netstandard2.1/OpenIddict.Abstractions.dll", + "lib/netstandard2.1/OpenIddict.Abstractions.xml", + "openiddict.abstractions.5.1.0.nupkg.sha512", + "openiddict.abstractions.nuspec" + ] + }, + "OpenIddict.AspNetCore/5.1.0": { + "sha512": "wJs5z/jUIuEzjecShQbnsv9WBFIz4LC50d5xOpGt5/kz1/WYD430L3p3vTom9BWRNNTRbHdEe0DGgVnHalLl2Q==", + "type": "package", + "path": "openiddict.aspnetcore/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/_._", + "lib/net472/_._", + "lib/net48/_._", + "lib/net6.0/_._", + "lib/net7.0/_._", + "lib/net8.0/_._", + "openiddict.aspnetcore.5.1.0.nupkg.sha512", + "openiddict.aspnetcore.nuspec" + ] + }, + "OpenIddict.Client/5.1.0": { + "sha512": "6+iNROrb3wFX+s7N3VrPjqJTv9qVExWERovK0SpY6RTugOquxRaSWO7BZLhaqO5BPpt6tlvR+Ls4XbjbHn6IYA==", + "type": "package", + "path": "openiddict.client/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Client.dll", + "lib/net461/OpenIddict.Client.xml", + "lib/net472/OpenIddict.Client.dll", + "lib/net472/OpenIddict.Client.xml", + "lib/net48/OpenIddict.Client.dll", + "lib/net48/OpenIddict.Client.xml", + "lib/net6.0/OpenIddict.Client.dll", + "lib/net6.0/OpenIddict.Client.xml", + "lib/net7.0/OpenIddict.Client.dll", + "lib/net7.0/OpenIddict.Client.xml", + "lib/net8.0/OpenIddict.Client.dll", + "lib/net8.0/OpenIddict.Client.xml", + "lib/netstandard2.0/OpenIddict.Client.dll", + "lib/netstandard2.0/OpenIddict.Client.xml", + "lib/netstandard2.1/OpenIddict.Client.dll", + "lib/netstandard2.1/OpenIddict.Client.xml", + "openiddict.client.5.1.0.nupkg.sha512", + "openiddict.client.nuspec" + ] + }, + "OpenIddict.Client.AspNetCore/5.1.0": { + "sha512": "AD5AF2OdfLE8xn4yzR7gd3lAOX/CG5c4OcNSTQDgnfnIzuwRxCdvx4cB+krOzbVSUYCkT7HKYdavNqGUI6lRAg==", + "type": "package", + "path": "openiddict.client.aspnetcore/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Client.AspNetCore.dll", + "lib/net461/OpenIddict.Client.AspNetCore.xml", + "lib/net472/OpenIddict.Client.AspNetCore.dll", + "lib/net472/OpenIddict.Client.AspNetCore.xml", + "lib/net48/OpenIddict.Client.AspNetCore.dll", + "lib/net48/OpenIddict.Client.AspNetCore.xml", + "lib/net6.0/OpenIddict.Client.AspNetCore.dll", + "lib/net6.0/OpenIddict.Client.AspNetCore.xml", + "lib/net7.0/OpenIddict.Client.AspNetCore.dll", + "lib/net7.0/OpenIddict.Client.AspNetCore.xml", + "lib/net8.0/OpenIddict.Client.AspNetCore.dll", + "lib/net8.0/OpenIddict.Client.AspNetCore.xml", + "openiddict.client.aspnetcore.5.1.0.nupkg.sha512", + "openiddict.client.aspnetcore.nuspec" + ] + }, + "OpenIddict.Client.DataProtection/5.1.0": { + "sha512": "hOsKyX1QBWZAAkiP4AFFQb4TjkzQmomBmof1GrjhruwXf624Br1neiJejZIclfkCfqC69QXP4u4gRC0s3tQFPA==", + "type": "package", + "path": "openiddict.client.dataprotection/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Client.DataProtection.dll", + "lib/net461/OpenIddict.Client.DataProtection.xml", + "lib/net472/OpenIddict.Client.DataProtection.dll", + "lib/net472/OpenIddict.Client.DataProtection.xml", + "lib/net48/OpenIddict.Client.DataProtection.dll", + "lib/net48/OpenIddict.Client.DataProtection.xml", + "lib/net6.0/OpenIddict.Client.DataProtection.dll", + "lib/net6.0/OpenIddict.Client.DataProtection.xml", + "lib/net7.0/OpenIddict.Client.DataProtection.dll", + "lib/net7.0/OpenIddict.Client.DataProtection.xml", + "lib/net8.0/OpenIddict.Client.DataProtection.dll", + "lib/net8.0/OpenIddict.Client.DataProtection.xml", + "lib/netstandard2.0/OpenIddict.Client.DataProtection.dll", + "lib/netstandard2.0/OpenIddict.Client.DataProtection.xml", + "lib/netstandard2.1/OpenIddict.Client.DataProtection.dll", + "lib/netstandard2.1/OpenIddict.Client.DataProtection.xml", + "openiddict.client.dataprotection.5.1.0.nupkg.sha512", + "openiddict.client.dataprotection.nuspec" + ] + }, + "OpenIddict.Client.SystemIntegration/5.1.0": { + "sha512": "D0I/wrFYU8tCnrxPA7J152YwaFuo+2VJ2+nBMu+H8bZ/0sUhITd/kxXi92Fg0CRfFqWK8J3+0RWBwRFMoqqV3g==", + "type": "package", + "path": "openiddict.client.systemintegration/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Client.SystemIntegration.dll", + "lib/net461/OpenIddict.Client.SystemIntegration.xml", + "lib/net472/OpenIddict.Client.SystemIntegration.dll", + "lib/net472/OpenIddict.Client.SystemIntegration.xml", + "lib/net48/OpenIddict.Client.SystemIntegration.dll", + "lib/net48/OpenIddict.Client.SystemIntegration.xml", + "lib/net6.0-windows10.0.17763/OpenIddict.Client.SystemIntegration.dll", + "lib/net6.0-windows10.0.17763/OpenIddict.Client.SystemIntegration.xml", + "lib/net6.0-windows7.0/OpenIddict.Client.SystemIntegration.dll", + "lib/net6.0-windows7.0/OpenIddict.Client.SystemIntegration.xml", + "lib/net6.0/OpenIddict.Client.SystemIntegration.dll", + "lib/net6.0/OpenIddict.Client.SystemIntegration.xml", + "lib/net7.0-windows10.0.17763/OpenIddict.Client.SystemIntegration.dll", + "lib/net7.0-windows10.0.17763/OpenIddict.Client.SystemIntegration.xml", + "lib/net7.0-windows7.0/OpenIddict.Client.SystemIntegration.dll", + "lib/net7.0-windows7.0/OpenIddict.Client.SystemIntegration.xml", + "lib/net7.0/OpenIddict.Client.SystemIntegration.dll", + "lib/net7.0/OpenIddict.Client.SystemIntegration.xml", + "lib/net8.0-windows10.0.17763/OpenIddict.Client.SystemIntegration.dll", + "lib/net8.0-windows10.0.17763/OpenIddict.Client.SystemIntegration.xml", + "lib/net8.0-windows7.0/OpenIddict.Client.SystemIntegration.dll", + "lib/net8.0-windows7.0/OpenIddict.Client.SystemIntegration.xml", + "lib/net8.0/OpenIddict.Client.SystemIntegration.dll", + "lib/net8.0/OpenIddict.Client.SystemIntegration.xml", + "lib/netstandard2.0/OpenIddict.Client.SystemIntegration.dll", + "lib/netstandard2.0/OpenIddict.Client.SystemIntegration.xml", + "lib/netstandard2.1/OpenIddict.Client.SystemIntegration.dll", + "lib/netstandard2.1/OpenIddict.Client.SystemIntegration.xml", + "openiddict.client.systemintegration.5.1.0.nupkg.sha512", + "openiddict.client.systemintegration.nuspec" + ] + }, + "OpenIddict.Client.SystemNetHttp/5.1.0": { + "sha512": "znnEt86krVsrLHrn42fBRq45/hvEmg8f56UULOWUiHn2Tsnv6AYs293tLViVSAZSeFJj/0EQZ2cfCyMdxuCJ1w==", + "type": "package", + "path": "openiddict.client.systemnethttp/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Client.SystemNetHttp.dll", + "lib/net461/OpenIddict.Client.SystemNetHttp.xml", + "lib/net472/OpenIddict.Client.SystemNetHttp.dll", + "lib/net472/OpenIddict.Client.SystemNetHttp.xml", + "lib/net48/OpenIddict.Client.SystemNetHttp.dll", + "lib/net48/OpenIddict.Client.SystemNetHttp.xml", + "lib/net6.0/OpenIddict.Client.SystemNetHttp.dll", + "lib/net6.0/OpenIddict.Client.SystemNetHttp.xml", + "lib/net7.0/OpenIddict.Client.SystemNetHttp.dll", + "lib/net7.0/OpenIddict.Client.SystemNetHttp.xml", + "lib/net8.0/OpenIddict.Client.SystemNetHttp.dll", + "lib/net8.0/OpenIddict.Client.SystemNetHttp.xml", + "lib/netstandard2.0/OpenIddict.Client.SystemNetHttp.dll", + "lib/netstandard2.0/OpenIddict.Client.SystemNetHttp.xml", + "lib/netstandard2.1/OpenIddict.Client.SystemNetHttp.dll", + "lib/netstandard2.1/OpenIddict.Client.SystemNetHttp.xml", + "openiddict.client.systemnethttp.5.1.0.nupkg.sha512", + "openiddict.client.systemnethttp.nuspec" + ] + }, + "OpenIddict.Client.WebIntegration/5.1.0": { + "sha512": "KMW1xrdxmS1MnD8bWnF6MadwhXdCF8ovqMmbMJz4ZZEedRsY8Lh92jTvDCDsjLa9856r4iFQweZXNihrGEzwhA==", + "type": "package", + "path": "openiddict.client.webintegration/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Client.WebIntegration.dll", + "lib/net461/OpenIddict.Client.WebIntegration.xml", + "lib/net472/OpenIddict.Client.WebIntegration.dll", + "lib/net472/OpenIddict.Client.WebIntegration.xml", + "lib/net48/OpenIddict.Client.WebIntegration.dll", + "lib/net48/OpenIddict.Client.WebIntegration.xml", + "lib/net6.0/OpenIddict.Client.WebIntegration.dll", + "lib/net6.0/OpenIddict.Client.WebIntegration.xml", + "lib/net7.0/OpenIddict.Client.WebIntegration.dll", + "lib/net7.0/OpenIddict.Client.WebIntegration.xml", + "lib/net8.0/OpenIddict.Client.WebIntegration.dll", + "lib/net8.0/OpenIddict.Client.WebIntegration.xml", + "lib/netstandard2.0/OpenIddict.Client.WebIntegration.dll", + "lib/netstandard2.0/OpenIddict.Client.WebIntegration.xml", + "lib/netstandard2.1/OpenIddict.Client.WebIntegration.dll", + "lib/netstandard2.1/OpenIddict.Client.WebIntegration.xml", + "openiddict.client.webintegration.5.1.0.nupkg.sha512", + "openiddict.client.webintegration.nuspec" + ] + }, + "OpenIddict.Core/5.1.0": { + "sha512": "RhsAPboEZ3iBLimMsqC0fQ4rVIW6XMpGWnlXPfxpmVlPHqHIcO3Nd+kLJwCxChijbYfF4eCAi2sUMHpQBdvyvA==", + "type": "package", + "path": "openiddict.core/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Core.dll", + "lib/net461/OpenIddict.Core.xml", + "lib/net472/OpenIddict.Core.dll", + "lib/net472/OpenIddict.Core.xml", + "lib/net48/OpenIddict.Core.dll", + "lib/net48/OpenIddict.Core.xml", + "lib/net6.0/OpenIddict.Core.dll", + "lib/net6.0/OpenIddict.Core.xml", + "lib/net7.0/OpenIddict.Core.dll", + "lib/net7.0/OpenIddict.Core.xml", + "lib/net8.0/OpenIddict.Core.dll", + "lib/net8.0/OpenIddict.Core.xml", + "lib/netstandard2.0/OpenIddict.Core.dll", + "lib/netstandard2.0/OpenIddict.Core.xml", + "lib/netstandard2.1/OpenIddict.Core.dll", + "lib/netstandard2.1/OpenIddict.Core.xml", + "openiddict.core.5.1.0.nupkg.sha512", + "openiddict.core.nuspec" + ] + }, + "OpenIddict.EntityFrameworkCore/5.1.0": { + "sha512": "AdYdgF8tdp3cY4SOsh7EzUlbOrrj+XZoQZ8Wlv9QdIRlKyBNGdgMEIu1sUHLadNw57/aTHBVe4b3ByEFAl1/Sg==", + "type": "package", + "path": "openiddict.entityframeworkcore/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.EntityFrameworkCore.dll", + "lib/net461/OpenIddict.EntityFrameworkCore.xml", + "lib/net472/OpenIddict.EntityFrameworkCore.dll", + "lib/net472/OpenIddict.EntityFrameworkCore.xml", + "lib/net48/OpenIddict.EntityFrameworkCore.dll", + "lib/net48/OpenIddict.EntityFrameworkCore.xml", + "lib/net6.0/OpenIddict.EntityFrameworkCore.dll", + "lib/net6.0/OpenIddict.EntityFrameworkCore.xml", + "lib/net7.0/OpenIddict.EntityFrameworkCore.dll", + "lib/net7.0/OpenIddict.EntityFrameworkCore.xml", + "lib/net8.0/OpenIddict.EntityFrameworkCore.dll", + "lib/net8.0/OpenIddict.EntityFrameworkCore.xml", + "lib/netstandard2.0/OpenIddict.EntityFrameworkCore.dll", + "lib/netstandard2.0/OpenIddict.EntityFrameworkCore.xml", + "lib/netstandard2.1/OpenIddict.EntityFrameworkCore.dll", + "lib/netstandard2.1/OpenIddict.EntityFrameworkCore.xml", + "openiddict.entityframeworkcore.5.1.0.nupkg.sha512", + "openiddict.entityframeworkcore.nuspec" + ] + }, + "OpenIddict.EntityFrameworkCore.Models/5.1.0": { + "sha512": "TT8jyPZlHiG4EIIi8w5rduRAsFAuqImbDlza/ROX5haC+QDW6GS7NcCZRThpWIgXETtZ1Cna96f/SDplvBmYBw==", + "type": "package", + "path": "openiddict.entityframeworkcore.models/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.EntityFrameworkCore.Models.dll", + "lib/net461/OpenIddict.EntityFrameworkCore.Models.xml", + "lib/net472/OpenIddict.EntityFrameworkCore.Models.dll", + "lib/net472/OpenIddict.EntityFrameworkCore.Models.xml", + "lib/net48/OpenIddict.EntityFrameworkCore.Models.dll", + "lib/net48/OpenIddict.EntityFrameworkCore.Models.xml", + "lib/net6.0/OpenIddict.EntityFrameworkCore.Models.dll", + "lib/net6.0/OpenIddict.EntityFrameworkCore.Models.xml", + "lib/net7.0/OpenIddict.EntityFrameworkCore.Models.dll", + "lib/net7.0/OpenIddict.EntityFrameworkCore.Models.xml", + "lib/net8.0/OpenIddict.EntityFrameworkCore.Models.dll", + "lib/net8.0/OpenIddict.EntityFrameworkCore.Models.xml", + "lib/netstandard2.0/OpenIddict.EntityFrameworkCore.Models.dll", + "lib/netstandard2.0/OpenIddict.EntityFrameworkCore.Models.xml", + "lib/netstandard2.1/OpenIddict.EntityFrameworkCore.Models.dll", + "lib/netstandard2.1/OpenIddict.EntityFrameworkCore.Models.xml", + "openiddict.entityframeworkcore.models.5.1.0.nupkg.sha512", + "openiddict.entityframeworkcore.models.nuspec" + ] + }, + "OpenIddict.Server/5.1.0": { + "sha512": "KOX1DqOiRlfV9YX4YnUWGId3igYvcvJ14mMp7qGOrKF/pSZcvzcAwXWwtrMQd1vauYdDUV4SMNj4itYzwN/jWQ==", + "type": "package", + "path": "openiddict.server/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Server.dll", + "lib/net461/OpenIddict.Server.xml", + "lib/net472/OpenIddict.Server.dll", + "lib/net472/OpenIddict.Server.xml", + "lib/net48/OpenIddict.Server.dll", + "lib/net48/OpenIddict.Server.xml", + "lib/net6.0/OpenIddict.Server.dll", + "lib/net6.0/OpenIddict.Server.xml", + "lib/net7.0/OpenIddict.Server.dll", + "lib/net7.0/OpenIddict.Server.xml", + "lib/net8.0/OpenIddict.Server.dll", + "lib/net8.0/OpenIddict.Server.xml", + "lib/netstandard2.0/OpenIddict.Server.dll", + "lib/netstandard2.0/OpenIddict.Server.xml", + "lib/netstandard2.1/OpenIddict.Server.dll", + "lib/netstandard2.1/OpenIddict.Server.xml", + "openiddict.server.5.1.0.nupkg.sha512", + "openiddict.server.nuspec" + ] + }, + "OpenIddict.Server.AspNetCore/5.1.0": { + "sha512": "msxeZl7UrRQCkKy4CuEEhXZIlqD0wTcRU7fSYSZ+yWVHEQSIufiNCWAgKXfaLdd8lFJvaSIEu6Y7l4jXQ12ZtQ==", + "type": "package", + "path": "openiddict.server.aspnetcore/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Server.AspNetCore.dll", + "lib/net461/OpenIddict.Server.AspNetCore.xml", + "lib/net472/OpenIddict.Server.AspNetCore.dll", + "lib/net472/OpenIddict.Server.AspNetCore.xml", + "lib/net48/OpenIddict.Server.AspNetCore.dll", + "lib/net48/OpenIddict.Server.AspNetCore.xml", + "lib/net6.0/OpenIddict.Server.AspNetCore.dll", + "lib/net6.0/OpenIddict.Server.AspNetCore.xml", + "lib/net7.0/OpenIddict.Server.AspNetCore.dll", + "lib/net7.0/OpenIddict.Server.AspNetCore.xml", + "lib/net8.0/OpenIddict.Server.AspNetCore.dll", + "lib/net8.0/OpenIddict.Server.AspNetCore.xml", + "openiddict.server.aspnetcore.5.1.0.nupkg.sha512", + "openiddict.server.aspnetcore.nuspec" + ] + }, + "OpenIddict.Server.DataProtection/5.1.0": { + "sha512": "HB+SMowcS15FKTE3QFqAACGJlbT7XvtlKmtZ81aANZm+U96t9yckc0f1dEUAkCOemah6WFzmfCjEv8Wxbfn2pQ==", + "type": "package", + "path": "openiddict.server.dataprotection/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Server.DataProtection.dll", + "lib/net461/OpenIddict.Server.DataProtection.xml", + "lib/net472/OpenIddict.Server.DataProtection.dll", + "lib/net472/OpenIddict.Server.DataProtection.xml", + "lib/net48/OpenIddict.Server.DataProtection.dll", + "lib/net48/OpenIddict.Server.DataProtection.xml", + "lib/net6.0/OpenIddict.Server.DataProtection.dll", + "lib/net6.0/OpenIddict.Server.DataProtection.xml", + "lib/net7.0/OpenIddict.Server.DataProtection.dll", + "lib/net7.0/OpenIddict.Server.DataProtection.xml", + "lib/net8.0/OpenIddict.Server.DataProtection.dll", + "lib/net8.0/OpenIddict.Server.DataProtection.xml", + "lib/netstandard2.0/OpenIddict.Server.DataProtection.dll", + "lib/netstandard2.0/OpenIddict.Server.DataProtection.xml", + "lib/netstandard2.1/OpenIddict.Server.DataProtection.dll", + "lib/netstandard2.1/OpenIddict.Server.DataProtection.xml", + "openiddict.server.dataprotection.5.1.0.nupkg.sha512", + "openiddict.server.dataprotection.nuspec" + ] + }, + "OpenIddict.Validation/5.1.0": { + "sha512": "OHeGooeaC9TmieBkn/cjS8Vwx52koAPQ7paIaBtdlyiX537KpoFd99BGtxyFGydezT+TueZeqPWAeQpUVUgeIg==", + "type": "package", + "path": "openiddict.validation/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Validation.dll", + "lib/net461/OpenIddict.Validation.xml", + "lib/net472/OpenIddict.Validation.dll", + "lib/net472/OpenIddict.Validation.xml", + "lib/net48/OpenIddict.Validation.dll", + "lib/net48/OpenIddict.Validation.xml", + "lib/net6.0/OpenIddict.Validation.dll", + "lib/net6.0/OpenIddict.Validation.xml", + "lib/net7.0/OpenIddict.Validation.dll", + "lib/net7.0/OpenIddict.Validation.xml", + "lib/net8.0/OpenIddict.Validation.dll", + "lib/net8.0/OpenIddict.Validation.xml", + "lib/netstandard2.0/OpenIddict.Validation.dll", + "lib/netstandard2.0/OpenIddict.Validation.xml", + "lib/netstandard2.1/OpenIddict.Validation.dll", + "lib/netstandard2.1/OpenIddict.Validation.xml", + "openiddict.validation.5.1.0.nupkg.sha512", + "openiddict.validation.nuspec" + ] + }, + "OpenIddict.Validation.AspNetCore/5.1.0": { + "sha512": "PVXMmTYKCMPDgsjOccy8rSWfmAewSXpQmD2CI1OALKOhMcur9lSUQn9St2HtN2jAUkWIiejpgszZx6h1kpNIFg==", + "type": "package", + "path": "openiddict.validation.aspnetcore/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Validation.AspNetCore.dll", + "lib/net461/OpenIddict.Validation.AspNetCore.xml", + "lib/net472/OpenIddict.Validation.AspNetCore.dll", + "lib/net472/OpenIddict.Validation.AspNetCore.xml", + "lib/net48/OpenIddict.Validation.AspNetCore.dll", + "lib/net48/OpenIddict.Validation.AspNetCore.xml", + "lib/net6.0/OpenIddict.Validation.AspNetCore.dll", + "lib/net6.0/OpenIddict.Validation.AspNetCore.xml", + "lib/net7.0/OpenIddict.Validation.AspNetCore.dll", + "lib/net7.0/OpenIddict.Validation.AspNetCore.xml", + "lib/net8.0/OpenIddict.Validation.AspNetCore.dll", + "lib/net8.0/OpenIddict.Validation.AspNetCore.xml", + "openiddict.validation.aspnetcore.5.1.0.nupkg.sha512", + "openiddict.validation.aspnetcore.nuspec" + ] + }, + "OpenIddict.Validation.DataProtection/5.1.0": { + "sha512": "7WCNl0QnATdwqx3O3ZzQlxoRHavn4jd5lxSec0PYbjpm/Xfe4iEMFfK+sl7AwDJw4gHzqsCnEMjgzMX6VVCQWQ==", + "type": "package", + "path": "openiddict.validation.dataprotection/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Validation.DataProtection.dll", + "lib/net461/OpenIddict.Validation.DataProtection.xml", + "lib/net472/OpenIddict.Validation.DataProtection.dll", + "lib/net472/OpenIddict.Validation.DataProtection.xml", + "lib/net48/OpenIddict.Validation.DataProtection.dll", + "lib/net48/OpenIddict.Validation.DataProtection.xml", + "lib/net6.0/OpenIddict.Validation.DataProtection.dll", + "lib/net6.0/OpenIddict.Validation.DataProtection.xml", + "lib/net7.0/OpenIddict.Validation.DataProtection.dll", + "lib/net7.0/OpenIddict.Validation.DataProtection.xml", + "lib/net8.0/OpenIddict.Validation.DataProtection.dll", + "lib/net8.0/OpenIddict.Validation.DataProtection.xml", + "lib/netstandard2.0/OpenIddict.Validation.DataProtection.dll", + "lib/netstandard2.0/OpenIddict.Validation.DataProtection.xml", + "lib/netstandard2.1/OpenIddict.Validation.DataProtection.dll", + "lib/netstandard2.1/OpenIddict.Validation.DataProtection.xml", + "openiddict.validation.dataprotection.5.1.0.nupkg.sha512", + "openiddict.validation.dataprotection.nuspec" + ] + }, + "OpenIddict.Validation.ServerIntegration/5.1.0": { + "sha512": "mnjGiFHsxw5vUytY8Kejff7kg3rlVZj+UKhQGoiLg0/ar7X6apUCJJuu/+UErXXPbw3V0Up8l5xNzkPTYboCKQ==", + "type": "package", + "path": "openiddict.validation.serverintegration/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Validation.ServerIntegration.dll", + "lib/net461/OpenIddict.Validation.ServerIntegration.xml", + "lib/net472/OpenIddict.Validation.ServerIntegration.dll", + "lib/net472/OpenIddict.Validation.ServerIntegration.xml", + "lib/net48/OpenIddict.Validation.ServerIntegration.dll", + "lib/net48/OpenIddict.Validation.ServerIntegration.xml", + "lib/net6.0/OpenIddict.Validation.ServerIntegration.dll", + "lib/net6.0/OpenIddict.Validation.ServerIntegration.xml", + "lib/net7.0/OpenIddict.Validation.ServerIntegration.dll", + "lib/net7.0/OpenIddict.Validation.ServerIntegration.xml", + "lib/net8.0/OpenIddict.Validation.ServerIntegration.dll", + "lib/net8.0/OpenIddict.Validation.ServerIntegration.xml", + "lib/netstandard2.0/OpenIddict.Validation.ServerIntegration.dll", + "lib/netstandard2.0/OpenIddict.Validation.ServerIntegration.xml", + "lib/netstandard2.1/OpenIddict.Validation.ServerIntegration.dll", + "lib/netstandard2.1/OpenIddict.Validation.ServerIntegration.xml", + "openiddict.validation.serverintegration.5.1.0.nupkg.sha512", + "openiddict.validation.serverintegration.nuspec" + ] + }, + "OpenIddict.Validation.SystemNetHttp/5.1.0": { + "sha512": "NY4KAf6mVSZ7RolfN2nlLwWwwbh1V1heD9+Mb0wseifMegi+O9ObGQrA3X6g4u1nJX7ohnkmtzrCBjJ5CUdcCw==", + "type": "package", + "path": "openiddict.validation.systemnethttp/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net461/OpenIddict.Validation.SystemNetHttp.dll", + "lib/net461/OpenIddict.Validation.SystemNetHttp.xml", + "lib/net472/OpenIddict.Validation.SystemNetHttp.dll", + "lib/net472/OpenIddict.Validation.SystemNetHttp.xml", + "lib/net48/OpenIddict.Validation.SystemNetHttp.dll", + "lib/net48/OpenIddict.Validation.SystemNetHttp.xml", + "lib/net6.0/OpenIddict.Validation.SystemNetHttp.dll", + "lib/net6.0/OpenIddict.Validation.SystemNetHttp.xml", + "lib/net7.0/OpenIddict.Validation.SystemNetHttp.dll", + "lib/net7.0/OpenIddict.Validation.SystemNetHttp.xml", + "lib/net8.0/OpenIddict.Validation.SystemNetHttp.dll", + "lib/net8.0/OpenIddict.Validation.SystemNetHttp.xml", + "lib/netstandard2.0/OpenIddict.Validation.SystemNetHttp.dll", + "lib/netstandard2.0/OpenIddict.Validation.SystemNetHttp.xml", + "lib/netstandard2.1/OpenIddict.Validation.SystemNetHttp.dll", + "lib/netstandard2.1/OpenIddict.Validation.SystemNetHttp.xml", + "openiddict.validation.systemnethttp.5.1.0.nupkg.sha512", + "openiddict.validation.systemnethttp.nuspec" + ] + }, + "OpenTelemetry/1.10.0": { + "sha512": "YUWnKsu0qsD7SO45r6a6nm6dAB3kVZ4Qf5DClU9xG+ObKV2beg0VJwX3U85pAaEhE/IBFp1C8Fj7L3F6gNjpeg==", + "type": "package", + "path": "opentelemetry/1.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/OpenTelemetry.dll", + "lib/net462/OpenTelemetry.dll-keyless.pem", + "lib/net462/OpenTelemetry.dll-keyless.sig", + "lib/net462/OpenTelemetry.xml", + "lib/net8.0/OpenTelemetry.dll", + "lib/net8.0/OpenTelemetry.dll-keyless.pem", + "lib/net8.0/OpenTelemetry.dll-keyless.sig", + "lib/net8.0/OpenTelemetry.xml", + "lib/net9.0/OpenTelemetry.dll", + "lib/net9.0/OpenTelemetry.dll-keyless.pem", + "lib/net9.0/OpenTelemetry.dll-keyless.sig", + "lib/net9.0/OpenTelemetry.xml", + "lib/netstandard2.0/OpenTelemetry.dll", + "lib/netstandard2.0/OpenTelemetry.dll-keyless.pem", + "lib/netstandard2.0/OpenTelemetry.dll-keyless.sig", + "lib/netstandard2.0/OpenTelemetry.xml", + "lib/netstandard2.1/OpenTelemetry.dll", + "lib/netstandard2.1/OpenTelemetry.dll-keyless.pem", + "lib/netstandard2.1/OpenTelemetry.dll-keyless.sig", + "lib/netstandard2.1/OpenTelemetry.xml", + "opentelemetry-icon-color.png", + "opentelemetry.1.10.0.nupkg.sha512", + "opentelemetry.nuspec" + ] + }, + "OpenTelemetry.Api/1.10.0": { + "sha512": "HcmxppwGFna1oY8cLX6hZ/nU1dw07UutfOVCltrbVE3RNYwRD7qFdQRtQQAoKZnbXE9yW4QMdtohcLClNFOk8w==", + "type": "package", + "path": "opentelemetry.api/1.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/OpenTelemetry.Api.dll", + "lib/net462/OpenTelemetry.Api.dll-keyless.pem", + "lib/net462/OpenTelemetry.Api.dll-keyless.sig", + "lib/net462/OpenTelemetry.Api.xml", + "lib/net8.0/OpenTelemetry.Api.dll", + "lib/net8.0/OpenTelemetry.Api.dll-keyless.pem", + "lib/net8.0/OpenTelemetry.Api.dll-keyless.sig", + "lib/net8.0/OpenTelemetry.Api.xml", + "lib/net9.0/OpenTelemetry.Api.dll", + "lib/net9.0/OpenTelemetry.Api.dll-keyless.pem", + "lib/net9.0/OpenTelemetry.Api.dll-keyless.sig", + "lib/net9.0/OpenTelemetry.Api.xml", + "lib/netstandard2.0/OpenTelemetry.Api.dll", + "lib/netstandard2.0/OpenTelemetry.Api.dll-keyless.pem", + "lib/netstandard2.0/OpenTelemetry.Api.dll-keyless.sig", + "lib/netstandard2.0/OpenTelemetry.Api.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.1.10.0.nupkg.sha512", + "opentelemetry.api.nuspec" + ] + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.10.0": { + "sha512": "cu+jYs6WdZjNohM1LriHRBs9JvpuWrdU8/Iz+DRoC0DkfKIlFubsp4lsoiKJm/aCgDBLAyvLmMna3Y3pMM8WpA==", + "type": "package", + "path": "opentelemetry.api.providerbuilderextensions/1.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll-keyless.pem", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll-keyless.sig", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll-keyless.pem", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll-keyless.sig", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll-keyless.pem", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll-keyless.sig", + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll-keyless.pem", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll-keyless.sig", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.providerbuilderextensions.1.10.0.nupkg.sha512", + "opentelemetry.api.providerbuilderextensions.nuspec" + ] + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.10.0": { + "sha512": "kdSehZAg5Q1CJPoOFPmq4eLSsWOn/ETtP4hsGum6ymM3FgIhklXZEXB61u8WaVdJNkk050CGUgQjGRGCt5UEqQ==", + "type": "package", + "path": "opentelemetry.exporter.opentelemetryprotocol/1.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll-keyless.pem", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll-keyless.sig", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll-keyless.pem", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll-keyless.sig", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll-keyless.pem", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll-keyless.sig", + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll-keyless.pem", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll-keyless.sig", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll-keyless.pem", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll-keyless.sig", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "opentelemetry-icon-color.png", + "opentelemetry.exporter.opentelemetryprotocol.1.10.0.nupkg.sha512", + "opentelemetry.exporter.opentelemetryprotocol.nuspec" + ] + }, + "OpenTelemetry.Extensions.Hosting/1.10.0": { + "sha512": "luLe3deRmThvJd8+Oav4ohg+S3DoXnxDx06+GBinAgmVi873C9YPzA0dJlXG1Zeh7uFajzMtLhskaDejQYCFWw==", + "type": "package", + "path": "opentelemetry.extensions.hosting/1.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll-keyless.pem", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll-keyless.sig", + "lib/net462/OpenTelemetry.Extensions.Hosting.xml", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll-keyless.pem", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll-keyless.sig", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll-keyless.pem", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll-keyless.sig", + "lib/net9.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll-keyless.pem", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll-keyless.sig", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.xml", + "opentelemetry-icon-color.png", + "opentelemetry.extensions.hosting.1.10.0.nupkg.sha512", + "opentelemetry.extensions.hosting.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.10.0": { + "sha512": "8tZ3rg6A/H8c68aAxTfwwPsaZH5/hn1oe4OHP6IN9Pmego/f7lEzJNSyO0X40k6G5cSYoKMwO7HRMijxLQkxcA==", + "type": "package", + "path": "opentelemetry.instrumentation.aspnetcore/1.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "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.10.0.nupkg.sha512", + "opentelemetry.instrumentation.aspnetcore.nuspec" + ] + }, + "Polly/7.2.4": { + "sha512": "bw00Ck5sh6ekduDE3mnCo1ohzuad946uslCDEENu3091+6UKnBuKLo4e+yaNcCzXxOZCXWY2gV4a35+K1d4LDA==", + "type": "package", + "path": "polly/7.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net461/Polly.dll", + "lib/net461/Polly.pdb", + "lib/net461/Polly.xml", + "lib/net472/Polly.dll", + "lib/net472/Polly.pdb", + "lib/net472/Polly.xml", + "lib/netstandard1.1/Polly.dll", + "lib/netstandard1.1/Polly.pdb", + "lib/netstandard1.1/Polly.xml", + "lib/netstandard2.0/Polly.dll", + "lib/netstandard2.0/Polly.pdb", + "lib/netstandard2.0/Polly.xml", + "package-icon.png", + "polly.7.2.4.nupkg.sha512", + "polly.nuspec" + ] + }, + "Polly.Extensions.Http/3.0.0": { + "sha512": "drrG+hB3pYFY7w1c3BD+lSGYvH2oIclH8GRSehgfyP5kjnFnHKQuuBhuHLv+PWyFuaTDyk/vfRpnxOzd11+J8g==", + "type": "package", + "path": "polly.extensions.http/3.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/Polly.Extensions.Http.dll", + "lib/netstandard1.1/Polly.Extensions.Http.xml", + "lib/netstandard2.0/Polly.Extensions.Http.dll", + "lib/netstandard2.0/Polly.Extensions.Http.xml", + "polly.extensions.http.3.0.0.nupkg.sha512", + "polly.extensions.http.nuspec" + ] + }, + "Serilog/3.1.1": { + "sha512": "P6G4/4Kt9bT635bhuwdXlJ2SCqqn2nhh4gqFqQueCOr9bK/e7W9ll/IoX1Ter948cV2Z/5+5v8pAfJYUISY03A==", + "type": "package", + "path": "serilog/3.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.dll", + "lib/net462/Serilog.xml", + "lib/net471/Serilog.dll", + "lib/net471/Serilog.xml", + "lib/net5.0/Serilog.dll", + "lib/net5.0/Serilog.xml", + "lib/net6.0/Serilog.dll", + "lib/net6.0/Serilog.xml", + "lib/net7.0/Serilog.dll", + "lib/net7.0/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.3.1.1.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.AspNetCore/8.0.0": { + "sha512": "FAjtKPZ4IzqFQBqZKPv6evcXK/F0ls7RoXI/62Pnx2igkDZ6nZ/jn/C/FxVATqQbEQvtqP+KViWYIe4NZIHa2w==", + "type": "package", + "path": "serilog.aspnetcore/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.AspNetCore.dll", + "lib/net462/Serilog.AspNetCore.xml", + "lib/net6.0/Serilog.AspNetCore.dll", + "lib/net6.0/Serilog.AspNetCore.xml", + "lib/net7.0/Serilog.AspNetCore.dll", + "lib/net7.0/Serilog.AspNetCore.xml", + "lib/net8.0/Serilog.AspNetCore.dll", + "lib/net8.0/Serilog.AspNetCore.xml", + "lib/netstandard2.0/Serilog.AspNetCore.dll", + "lib/netstandard2.0/Serilog.AspNetCore.xml", + "serilog.aspnetcore.8.0.0.nupkg.sha512", + "serilog.aspnetcore.nuspec" + ] + }, + "Serilog.Extensions.Hosting/8.0.0": { + "sha512": "db0OcbWeSCvYQkHWu6n0v40N4kKaTAXNjlM3BKvcbwvNzYphQFcBR+36eQ/7hMMwOkJvAyLC2a9/jNdUL5NjtQ==", + "type": "package", + "path": "serilog.extensions.hosting/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.Extensions.Hosting.dll", + "lib/net462/Serilog.Extensions.Hosting.xml", + "lib/net6.0/Serilog.Extensions.Hosting.dll", + "lib/net6.0/Serilog.Extensions.Hosting.xml", + "lib/net7.0/Serilog.Extensions.Hosting.dll", + "lib/net7.0/Serilog.Extensions.Hosting.xml", + "lib/net8.0/Serilog.Extensions.Hosting.dll", + "lib/net8.0/Serilog.Extensions.Hosting.xml", + "lib/netstandard2.0/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.0/Serilog.Extensions.Hosting.xml", + "serilog.extensions.hosting.8.0.0.nupkg.sha512", + "serilog.extensions.hosting.nuspec" + ] + }, + "Serilog.Extensions.Logging/8.0.0": { + "sha512": "YEAMWu1UnWgf1c1KP85l1SgXGfiVo0Rz6x08pCiPOIBt2Qe18tcZLvdBUuV5o1QHvrs8FAry9wTIhgBRtjIlEg==", + "type": "package", + "path": "serilog.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Serilog.Extensions.Logging.dll", + "lib/net462/Serilog.Extensions.Logging.xml", + "lib/net6.0/Serilog.Extensions.Logging.dll", + "lib/net6.0/Serilog.Extensions.Logging.xml", + "lib/net7.0/Serilog.Extensions.Logging.dll", + "lib/net7.0/Serilog.Extensions.Logging.xml", + "lib/net8.0/Serilog.Extensions.Logging.dll", + "lib/net8.0/Serilog.Extensions.Logging.xml", + "lib/netstandard2.0/Serilog.Extensions.Logging.dll", + "lib/netstandard2.0/Serilog.Extensions.Logging.xml", + "lib/netstandard2.1/Serilog.Extensions.Logging.dll", + "lib/netstandard2.1/Serilog.Extensions.Logging.xml", + "serilog-extension-nuget.png", + "serilog.extensions.logging.8.0.0.nupkg.sha512", + "serilog.extensions.logging.nuspec" + ] + }, + "Serilog.Formatting.Compact/2.0.0": { + "sha512": "ob6z3ikzFM3D1xalhFuBIK1IOWf+XrQq+H4KeH4VqBcPpNcmUgZlRQ2h3Q7wvthpdZBBoY86qZOI2LCXNaLlNA==", + "type": "package", + "path": "serilog.formatting.compact/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Serilog.Formatting.Compact.dll", + "lib/net462/Serilog.Formatting.Compact.xml", + "lib/net471/Serilog.Formatting.Compact.dll", + "lib/net471/Serilog.Formatting.Compact.xml", + "lib/net6.0/Serilog.Formatting.Compact.dll", + "lib/net6.0/Serilog.Formatting.Compact.xml", + "lib/net7.0/Serilog.Formatting.Compact.dll", + "lib/net7.0/Serilog.Formatting.Compact.xml", + "lib/netstandard2.0/Serilog.Formatting.Compact.dll", + "lib/netstandard2.0/Serilog.Formatting.Compact.xml", + "lib/netstandard2.1/Serilog.Formatting.Compact.dll", + "lib/netstandard2.1/Serilog.Formatting.Compact.xml", + "serilog-extension-nuget.png", + "serilog.formatting.compact.2.0.0.nupkg.sha512", + "serilog.formatting.compact.nuspec" + ] + }, + "Serilog.Settings.Configuration/8.0.0": { + "sha512": "nR0iL5HwKj5v6ULo3/zpP8NMcq9E2pxYA6XKTSWCbugVs4YqPyvaqaKOY+OMpPivKp7zMEpax2UKHnDodbRB0Q==", + "type": "package", + "path": "serilog.settings.configuration/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.Settings.Configuration.dll", + "lib/net462/Serilog.Settings.Configuration.xml", + "lib/net6.0/Serilog.Settings.Configuration.dll", + "lib/net6.0/Serilog.Settings.Configuration.xml", + "lib/net7.0/Serilog.Settings.Configuration.dll", + "lib/net7.0/Serilog.Settings.Configuration.xml", + "lib/net8.0/Serilog.Settings.Configuration.dll", + "lib/net8.0/Serilog.Settings.Configuration.xml", + "lib/netstandard2.0/Serilog.Settings.Configuration.dll", + "lib/netstandard2.0/Serilog.Settings.Configuration.xml", + "serilog.settings.configuration.8.0.0.nupkg.sha512", + "serilog.settings.configuration.nuspec" + ] + }, + "Serilog.Sinks.Console/5.0.1": { + "sha512": "6Jt8jl9y2ey8VV7nVEUAyjjyxjAQuvd5+qj4XYAT9CwcsvR70HHULGBeD+K2WCALFXf7CFsNQT4lON6qXcu2AA==", + "type": "package", + "path": "serilog.sinks.console/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.Sinks.Console.dll", + "lib/net462/Serilog.Sinks.Console.xml", + "lib/net471/Serilog.Sinks.Console.dll", + "lib/net471/Serilog.Sinks.Console.xml", + "lib/net5.0/Serilog.Sinks.Console.dll", + "lib/net5.0/Serilog.Sinks.Console.xml", + "lib/net6.0/Serilog.Sinks.Console.dll", + "lib/net6.0/Serilog.Sinks.Console.xml", + "lib/net7.0/Serilog.Sinks.Console.dll", + "lib/net7.0/Serilog.Sinks.Console.xml", + "lib/netstandard2.0/Serilog.Sinks.Console.dll", + "lib/netstandard2.0/Serilog.Sinks.Console.xml", + "lib/netstandard2.1/Serilog.Sinks.Console.dll", + "lib/netstandard2.1/Serilog.Sinks.Console.xml", + "serilog.sinks.console.5.0.1.nupkg.sha512", + "serilog.sinks.console.nuspec" + ] + }, + "Serilog.Sinks.Debug/2.0.0": { + "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "type": "package", + "path": "serilog.sinks.debug/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Debug.dll", + "lib/net45/Serilog.Sinks.Debug.xml", + "lib/net46/Serilog.Sinks.Debug.dll", + "lib/net46/Serilog.Sinks.Debug.xml", + "lib/netstandard1.0/Serilog.Sinks.Debug.dll", + "lib/netstandard1.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.0/Serilog.Sinks.Debug.dll", + "lib/netstandard2.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.1/Serilog.Sinks.Debug.dll", + "lib/netstandard2.1/Serilog.Sinks.Debug.xml", + "serilog.sinks.debug.2.0.0.nupkg.sha512", + "serilog.sinks.debug.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "sha512": "ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "content/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/net462/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/net8.0/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/net9.0/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/netstandard2.0/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net9.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net9.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Memory/4.5.3": { + "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "type": "package", + "path": "system.memory/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.3.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/8.0.0": { + "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "type": "package", + "path": "system.text.encodings.web/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.8.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/9.0.0": { + "sha512": "js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "type": "package", + "path": "system.text.json/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net8.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/net9.0/System.Text.Json.dll", + "lib/net9.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.9.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 9.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL >= 9.0.0", + "OpenIddict.AspNetCore >= 5.0.2", + "OpenIddict.EntityFrameworkCore >= 5.0.2", + "OpenTelemetry >= 1.10.0", + "OpenTelemetry.Exporter.OpenTelemetryProtocol >= 1.10.0", + "OpenTelemetry.Extensions.Hosting >= 1.10.0", + "OpenTelemetry.Instrumentation.AspNetCore >= 1.10.0", + "Serilog.AspNetCore >= 8.0.0", + "Serilog.Sinks.Console >= 5.0.1" + ] + }, + "packageFolders": { + "/Users/movingsam/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj", + "projectName": "Fengling.AuthService", + "projectPath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj", + "packagesPath": "/Users/movingsam/.nuget/packages/", + "outputPath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/movingsam/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/local/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.0, )" + }, + "OpenIddict.AspNetCore": { + "target": "Package", + "version": "[5.0.2, )" + }, + "OpenIddict.EntityFrameworkCore": { + "target": "Package", + "version": "[5.0.2, )" + }, + "OpenTelemetry": { + "target": "Package", + "version": "[1.10.0, )" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol": { + "target": "Package", + "version": "[1.10.0, )" + }, + "OpenTelemetry.Extensions.Hosting": { + "target": "Package", + "version": "[1.10.0, )" + }, + "OpenTelemetry.Instrumentation.AspNetCore": { + "target": "Package", + "version": "[1.10.0, )" + }, + "Serilog.AspNetCore": { + "target": "Package", + "version": "[8.0.0, )" + }, + "Serilog.Sinks.Console": { + "target": "Package", + "version": "[5.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[9.0.11, 9.0.11]" + }, + { + "name": "Microsoft.NETCore.App.Host.osx-arm64", + "version": "[9.0.11, 9.0.11]" + }, + { + "name": "Microsoft.NETCore.App.Ref", + "version": "[9.0.11, 9.0.11]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json" + } + } + }, + "logs": [ + { + "code": "NU1603", + "level": "Warning", + "warningLevel": 1, + "message": "Fengling.AuthService 依赖于 OpenIddict.AspNetCore (>= 5.0.2),但没有找到 OpenIddict.AspNetCore 5.0.2。已改为解析 OpenIddict.AspNetCore 5.1.0。", + "libraryId": "OpenIddict.AspNetCore", + "targetGraphs": [ + "net9.0" + ] + }, + { + "code": "NU1603", + "level": "Warning", + "warningLevel": 1, + "message": "Fengling.AuthService 依赖于 OpenIddict.EntityFrameworkCore (>= 5.0.2),但没有找到 OpenIddict.EntityFrameworkCore 5.0.2。已改为解析 OpenIddict.EntityFrameworkCore 5.1.0。", + "libraryId": "OpenIddict.EntityFrameworkCore", + "targetGraphs": [ + "net9.0" + ] + } + ] +} \ No newline at end of file diff --git a/src/Fengling.AuthService/obj/project.nuget.cache b/src/Fengling.AuthService/obj/project.nuget.cache new file mode 100644 index 0000000..b1edfc0 --- /dev/null +++ b/src/Fengling.AuthService/obj/project.nuget.cache @@ -0,0 +1,118 @@ +{ + "version": 2, + "dgSpecHash": "oVkENcuM9CU=", + "success": true, + "projectFilePath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj", + "expectedPackageFiles": [ + "/Users/movingsam/.nuget/packages/google.protobuf/3.22.5/google.protobuf.3.22.5.nupkg.sha512", + "/Users/movingsam/.nuget/packages/grpc.core.api/2.52.0/grpc.core.api.2.52.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/grpc.net.client/2.52.0/grpc.net.client.2.52.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/grpc.net.common/2.52.0/grpc.net.common.2.52.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.aspnetcore.cryptography.internal/9.0.0/microsoft.aspnetcore.cryptography.internal.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.aspnetcore.cryptography.keyderivation/9.0.0/microsoft.aspnetcore.cryptography.keyderivation.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.aspnetcore.identity.entityframeworkcore/9.0.0/microsoft.aspnetcore.identity.entityframeworkcore.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore/9.0.0/microsoft.entityframeworkcore.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.abstractions/9.0.0/microsoft.entityframeworkcore.abstractions.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.analyzers/9.0.0/microsoft.entityframeworkcore.analyzers.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.relational/9.0.0/microsoft.entityframeworkcore.relational.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.caching.abstractions/9.0.0/microsoft.extensions.caching.abstractions.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.caching.memory/9.0.0/microsoft.extensions.caching.memory.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.configuration/9.0.0/microsoft.extensions.configuration.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.configuration.abstractions/9.0.0/microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.configuration.binder/9.0.0/microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.0/microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/9.0.0/microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.dependencymodel/8.0.0/microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.diagnostics/8.0.0/microsoft.extensions.diagnostics.8.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.diagnostics.abstractions/9.0.0/microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.fileproviders.abstractions/9.0.0/microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.hosting.abstractions/9.0.0/microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.http/8.0.0/microsoft.extensions.http.8.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.http.polly/8.0.1/microsoft.extensions.http.polly.8.0.1.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.identity.core/9.0.0/microsoft.extensions.identity.core.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.identity.stores/9.0.0/microsoft.extensions.identity.stores.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.logging/9.0.0/microsoft.extensions.logging.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.logging.abstractions/9.0.0/microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.logging.configuration/9.0.0/microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.options/9.0.0/microsoft.extensions.options.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.options.configurationextensions/9.0.0/microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.primitives/9.0.0/microsoft.extensions.primitives.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.identitymodel.abstractions/7.2.0/microsoft.identitymodel.abstractions.7.2.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.identitymodel.jsonwebtokens/7.2.0/microsoft.identitymodel.jsonwebtokens.7.2.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.identitymodel.logging/7.2.0/microsoft.identitymodel.logging.7.2.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.identitymodel.protocols/7.2.0/microsoft.identitymodel.protocols.7.2.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.identitymodel.tokens/7.2.0/microsoft.identitymodel.tokens.7.2.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/npgsql/9.0.0/npgsql.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/npgsql.entityframeworkcore.postgresql/9.0.0/npgsql.entityframeworkcore.postgresql.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict/5.1.0/openiddict.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.abstractions/5.1.0/openiddict.abstractions.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.aspnetcore/5.1.0/openiddict.aspnetcore.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.client/5.1.0/openiddict.client.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.client.aspnetcore/5.1.0/openiddict.client.aspnetcore.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.client.dataprotection/5.1.0/openiddict.client.dataprotection.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.client.systemintegration/5.1.0/openiddict.client.systemintegration.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.client.systemnethttp/5.1.0/openiddict.client.systemnethttp.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.client.webintegration/5.1.0/openiddict.client.webintegration.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.core/5.1.0/openiddict.core.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.entityframeworkcore/5.1.0/openiddict.entityframeworkcore.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.entityframeworkcore.models/5.1.0/openiddict.entityframeworkcore.models.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.server/5.1.0/openiddict.server.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.server.aspnetcore/5.1.0/openiddict.server.aspnetcore.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.server.dataprotection/5.1.0/openiddict.server.dataprotection.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.validation/5.1.0/openiddict.validation.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.validation.aspnetcore/5.1.0/openiddict.validation.aspnetcore.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.validation.dataprotection/5.1.0/openiddict.validation.dataprotection.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.validation.serverintegration/5.1.0/openiddict.validation.serverintegration.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/openiddict.validation.systemnethttp/5.1.0/openiddict.validation.systemnethttp.5.1.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/opentelemetry/1.10.0/opentelemetry.1.10.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/opentelemetry.api/1.10.0/opentelemetry.api.1.10.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/opentelemetry.api.providerbuilderextensions/1.10.0/opentelemetry.api.providerbuilderextensions.1.10.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/opentelemetry.exporter.opentelemetryprotocol/1.10.0/opentelemetry.exporter.opentelemetryprotocol.1.10.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/opentelemetry.extensions.hosting/1.10.0/opentelemetry.extensions.hosting.1.10.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/opentelemetry.instrumentation.aspnetcore/1.10.0/opentelemetry.instrumentation.aspnetcore.1.10.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/polly/7.2.4/polly.7.2.4.nupkg.sha512", + "/Users/movingsam/.nuget/packages/polly.extensions.http/3.0.0/polly.extensions.http.3.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/serilog/3.1.1/serilog.3.1.1.nupkg.sha512", + "/Users/movingsam/.nuget/packages/serilog.aspnetcore/8.0.0/serilog.aspnetcore.8.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/serilog.extensions.hosting/8.0.0/serilog.extensions.hosting.8.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/serilog.extensions.logging/8.0.0/serilog.extensions.logging.8.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/serilog.formatting.compact/2.0.0/serilog.formatting.compact.2.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/serilog.settings.configuration/8.0.0/serilog.settings.configuration.8.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/serilog.sinks.console/5.0.1/serilog.sinks.console.5.0.1.nupkg.sha512", + "/Users/movingsam/.nuget/packages/serilog.sinks.debug/2.0.0/serilog.sinks.debug.2.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/serilog.sinks.file/5.0.0/serilog.sinks.file.5.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.diagnostics.diagnosticsource/9.0.0/system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.memory/4.5.3/system.memory.4.5.3.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.text.encodings.web/8.0.0/system.text.encodings.web.8.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.text.json/9.0.0/system.text.json.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.netcore.app.ref/9.0.11/microsoft.netcore.app.ref.9.0.11.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.aspnetcore.app.ref/9.0.11/microsoft.aspnetcore.app.ref.9.0.11.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.netcore.app.host.osx-arm64/9.0.11/microsoft.netcore.app.host.osx-arm64.9.0.11.nupkg.sha512" + ], + "logs": [ + { + "code": "NU1603", + "level": "Warning", + "message": "Fengling.AuthService 依赖于 OpenIddict.AspNetCore (>= 5.0.2),但没有找到 OpenIddict.AspNetCore 5.0.2。已改为解析 OpenIddict.AspNetCore 5.1.0。", + "projectPath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj", + "warningLevel": 1, + "filePath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj", + "libraryId": "OpenIddict.AspNetCore", + "targetGraphs": [ + "net9.0" + ] + }, + { + "code": "NU1603", + "level": "Warning", + "message": "Fengling.AuthService 依赖于 OpenIddict.EntityFrameworkCore (>= 5.0.2),但没有找到 OpenIddict.EntityFrameworkCore 5.0.2。已改为解析 OpenIddict.EntityFrameworkCore 5.1.0。", + "projectPath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj", + "warningLevel": 1, + "filePath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj", + "libraryId": "OpenIddict.EntityFrameworkCore", + "targetGraphs": [ + "net9.0" + ] + } + ] +} \ No newline at end of file