netcore-blueprint 1.0.17 → 1.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BlueprintTemplate/.vs/Blueprint/DesignTimeBuild/.dtbcache.v2 +0 -0
- package/BlueprintTemplate/.vs/Blueprint/FileContentIndex/746e9dcf-afa3-4bf0-b81a-fb78664dee28.vsidx +0 -0
- package/BlueprintTemplate/.vs/Blueprint/config/applicationhost.config +1021 -0
- package/BlueprintTemplate/.vs/Blueprint/v17/.futdcache.v2 +0 -0
- package/BlueprintTemplate/.vs/Blueprint/v17/.suo +0 -0
- package/BlueprintTemplate/.vs/Blueprint/v17/DocumentLayout.json +12 -0
- package/BlueprintTemplate/.vs/Blueprint.API/DesignTimeBuild/.dtbcache.v2 +0 -0
- package/BlueprintTemplate/.vs/Blueprint.API/FileContentIndex/7e5dec4e-1a8c-4898-8ae1-542fdd9cfb31.vsidx +0 -0
- package/BlueprintTemplate/.vs/Blueprint.API/config/applicationhost.config +1021 -0
- package/BlueprintTemplate/.vs/Blueprint.API/v17/.futdcache.v2 +0 -0
- package/BlueprintTemplate/.vs/Blueprint.API/v17/.suo +0 -0
- package/BlueprintTemplate/.vs/Blueprint.API/v17/DocumentLayout.json +12 -0
- package/BlueprintTemplate/.vs/ProjectEvaluation/blueprint.api.metadata.v8.bin +0 -0
- package/BlueprintTemplate/.vs/ProjectEvaluation/blueprint.api.projects.v8.bin +0 -0
- package/BlueprintTemplate/.vs/ProjectEvaluation/blueprint.api.strings.v8.bin +0 -0
- package/BlueprintTemplate/.vs/ProjectEvaluation/blueprint.metadata.v8.bin +0 -0
- package/BlueprintTemplate/.vs/ProjectEvaluation/blueprint.projects.v8.bin +0 -0
- package/BlueprintTemplate/.vs/ProjectEvaluation/blueprint.strings.v8.bin +0 -0
- package/BlueprintTemplate/Blueprint.API/Blueprint.API.csproj +28 -0
- package/BlueprintTemplate/Blueprint.API/Blueprint.API.csproj.user +8 -0
- package/BlueprintTemplate/Blueprint.API/Blueprint.API.http +6 -0
- package/BlueprintTemplate/Blueprint.API/Controllers/UserController.cs +179 -0
- package/BlueprintTemplate/Blueprint.API/Controllers/UserControllerAsync.cs +51 -0
- package/BlueprintTemplate/Blueprint.API/Controllers/VersionController.cs +43 -0
- package/BlueprintTemplate/Blueprint.API/Controllers/WeatherForecastController.cs +33 -0
- package/BlueprintTemplate/Blueprint.API/Mappers/DtoMappingProfile.cs +28 -0
- package/BlueprintTemplate/Blueprint.API/Program.cs +176 -0
- package/BlueprintTemplate/Blueprint.API/Properties/launchSettings.json +41 -0
- package/BlueprintTemplate/Blueprint.API/Services/RabbitMqConsumerService.cs +154 -0
- package/BlueprintTemplate/Blueprint.API/WeatherForecast.cs +13 -0
- package/BlueprintTemplate/Blueprint.API/appsettings.Development.json +8 -0
- package/BlueprintTemplate/Blueprint.API/appsettings.json +22 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/AWSSDK.Core.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/AWSSDK.Extensions.NETCore.Setup.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/AWSSDK.S3.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/AutoMapper.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.API.deps.json +1702 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.API.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.API.exe +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.API.pdb +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.API.runtimeconfig.json +20 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Core.deps.json +777 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Core.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Core.exe +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Core.pdb +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Core.runtimeconfig.json +12 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Infra.deps.json +1636 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Infra.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Infra.exe +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Infra.pdb +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Infra.runtimeconfig.json +13 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/DnsClient.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Humanizer.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.AspNetCore.Mvc.Versioning.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Bcl.Memory.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.Options.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.OpenApi.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/MongoDB.Bson.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/MongoDB.Driver.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Mono.TextTemplating.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/MySqlConnector.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Pomelo.EntityFrameworkCore.MySql.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/RabbitMQ.Client.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/SharpCompress.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Snappier.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.CodeDom.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.Composition.AttributedModel.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.Composition.Convention.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.Composition.Hosting.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.Composition.Runtime.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.Composition.TypedParts.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ZstdSharp.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/appsettings.Development.json +8 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/appsettings.json +22 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/obj/Blueprint.API.csproj.nuget.dgspec.json +283 -0
- package/BlueprintTemplate/Blueprint.API/obj/Blueprint.API.csproj.nuget.g.props +28 -0
- package/BlueprintTemplate/Blueprint.API/obj/Blueprint.API.csproj.nuget.g.targets +11 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprin.4BAE1BA3.Up2Date +0 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.AssemblyInfo.cs +23 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.AssemblyInfoInputs.cache +1 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.GeneratedMSBuildEditorConfig.editorconfig +19 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.GlobalUsings.g.cs +17 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.MvcApplicationPartsAssemblyInfo.cache +0 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.MvcApplicationPartsAssemblyInfo.cs +18 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.assets.cache +0 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.csproj.AssemblyReference.cache +0 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.csproj.BuildWithSkipAnalyzers +0 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.csproj.CoreCompileInputs.cache +1 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.csproj.FileListAbsolute.txt +426 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.genruntimeconfig.cache +1 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.pdb +0 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.sourcelink.json +1 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/apphost.exe +0 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/ref/Blueprint.API.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/refint/Blueprint.API.dll +0 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/staticwebassets/msbuild.build.Blueprint.API.props +3 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Blueprint.API.props +3 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Blueprint.API.props +3 -0
- package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/staticwebassets.build.json +11 -0
- package/BlueprintTemplate/Blueprint.API/obj/project.assets.json +5171 -0
- package/BlueprintTemplate/Blueprint.API/obj/project.nuget.cache +105 -0
- package/BlueprintTemplate/Blueprint.Core/Blueprint.Core.csproj +15 -0
- package/BlueprintTemplate/Blueprint.Core/Dtos/Requests/BaseRequestDto.cs +25 -0
- package/BlueprintTemplate/Blueprint.Core/Dtos/Requests/UserRequestDto.cs +12 -0
- package/BlueprintTemplate/Blueprint.Core/Dtos/Responses/BaseResponseDto.cs +28 -0
- package/BlueprintTemplate/Blueprint.Core/Dtos/Responses/UserResponseDto.cs +11 -0
- package/BlueprintTemplate/Blueprint.Core/Entities/BaseEntity.cs +23 -0
- package/BlueprintTemplate/Blueprint.Core/Entities/Category.cs +9 -0
- package/BlueprintTemplate/Blueprint.Core/Entities/Product.cs +13 -0
- package/BlueprintTemplate/Blueprint.Core/Entities/User.cs +16 -0
- package/BlueprintTemplate/Blueprint.Core/Enums/ActionType.cs +11 -0
- package/BlueprintTemplate/Blueprint.Core/Enums/UserRole.cs +10 -0
- package/BlueprintTemplate/Blueprint.Core/Interfaces/API/IItemService.cs +13 -0
- package/BlueprintTemplate/Blueprint.Core/Interfaces/API/IUserService.cs +10 -0
- package/BlueprintTemplate/Blueprint.Core/Interfaces/SPI/IItemInfra.cs +14 -0
- package/BlueprintTemplate/Blueprint.Core/Interfaces/SPI/IRabbitMqService.cs +7 -0
- package/BlueprintTemplate/Blueprint.Core/Interfaces/SPI/IRepositoryFactory.cs +10 -0
- package/BlueprintTemplate/Blueprint.Core/Interfaces/SPI/IUserInfra.cs +10 -0
- package/BlueprintTemplate/Blueprint.Core/Models/Error.cs +69 -0
- package/BlueprintTemplate/Blueprint.Core/Models/ErrorDetail.cs +8 -0
- package/BlueprintTemplate/Blueprint.Core/Models/PagerData.cs +8 -0
- package/BlueprintTemplate/Blueprint.Core/Models/PagingParams.cs +8 -0
- package/BlueprintTemplate/Blueprint.Core/Program.cs +7 -0
- package/BlueprintTemplate/Blueprint.Core/Properties/launchSettings.json +12 -0
- package/BlueprintTemplate/Blueprint.Core/Services/ItemService.cs +47 -0
- package/BlueprintTemplate/Blueprint.Core/Services/UserService.cs +108 -0
- package/BlueprintTemplate/Blueprint.Core/StaticClasses/Errors.cs +20 -0
- package/BlueprintTemplate/Blueprint.Core/Worker.cs +24 -0
- package/BlueprintTemplate/Blueprint.Core/appsettings.Development.json +8 -0
- package/BlueprintTemplate/Blueprint.Core/appsettings.json +8 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Blueprint.Core.deps.json +777 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Blueprint.Core.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Blueprint.Core.exe +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Blueprint.Core.pdb +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Blueprint.Core.runtimeconfig.json +12 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Bcl.Memory.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Binder.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Hosting.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.Configuration.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.Console.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.Debug.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventLog.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventSource.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Options.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/MongoDB.Bson.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/System.Diagnostics.EventLog.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/appsettings.Development.json +8 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/appsettings.json +8 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Blueprint.Core.csproj.nuget.dgspec.json +83 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Blueprint.Core.csproj.nuget.g.props +18 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Blueprint.Core.csproj.nuget.g.targets +10 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprin.55786069.Up2Date +0 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.AssemblyInfo.cs +24 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.AssemblyInfoInputs.cache +1 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.GeneratedMSBuildEditorConfig.editorconfig +13 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.GlobalUsings.g.cs +12 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.assets.cache +0 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.csproj.AssemblyReference.cache +0 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.csproj.BuildWithSkipAnalyzers +0 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.csproj.CoreCompileInputs.cache +1 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.csproj.FileListAbsolute.txt +168 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.genruntimeconfig.cache +1 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.pdb +0 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.sourcelink.json +1 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/apphost.exe +0 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/ref/Blueprint.Core.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/refint/Blueprint.Core.dll +0 -0
- package/BlueprintTemplate/Blueprint.Core/obj/project.assets.json +2182 -0
- package/BlueprintTemplate/Blueprint.Core/obj/project.nuget.cache +49 -0
- package/BlueprintTemplate/Blueprint.Infra/Blueprint.Infra.csproj +29 -0
- package/BlueprintTemplate/Blueprint.Infra/Database/DbInitializer.cs +188 -0
- package/BlueprintTemplate/Blueprint.Infra/Database/MyDbContext.cs +24 -0
- package/BlueprintTemplate/Blueprint.Infra/Program.cs +7 -0
- package/BlueprintTemplate/Blueprint.Infra/Properties/launchSettings.json +12 -0
- package/BlueprintTemplate/Blueprint.Infra/Services/MongoItemInfra.cs +110 -0
- package/BlueprintTemplate/Blueprint.Infra/Services/MongoUserInfra.cs +31 -0
- package/BlueprintTemplate/Blueprint.Infra/Services/MySQLItemInfra.cs +111 -0
- package/BlueprintTemplate/Blueprint.Infra/Services/MySQLUserInfra.cs +30 -0
- package/BlueprintTemplate/Blueprint.Infra/Services/RabbitMqService.cs +61 -0
- package/BlueprintTemplate/Blueprint.Infra/Services/RepositoryFactory.cs +39 -0
- package/BlueprintTemplate/Blueprint.Infra/Worker.cs +24 -0
- package/BlueprintTemplate/Blueprint.Infra/appsettings.Development.json +8 -0
- package/BlueprintTemplate/Blueprint.Infra/appsettings.json +8 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Core.deps.json +777 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Core.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Core.exe +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Core.pdb +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Core.runtimeconfig.json +12 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Infra.deps.json +1636 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Infra.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Infra.exe +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Infra.pdb +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Infra.runtimeconfig.json +13 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/DnsClient.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Humanizer.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Bcl.Memory.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Binder.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Hosting.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.Configuration.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.Console.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.Debug.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventLog.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventSource.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Options.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/MongoDB.Bson.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/MongoDB.Driver.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Mono.TextTemplating.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/MySqlConnector.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Pomelo.EntityFrameworkCore.MySql.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/RabbitMQ.Client.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/SharpCompress.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Snappier.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.CodeDom.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Composition.AttributedModel.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Composition.Convention.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Composition.Hosting.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Composition.Runtime.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Composition.TypedParts.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Diagnostics.EventLog.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.IO.Pipelines.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Threading.RateLimiting.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ZstdSharp.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/appsettings.Development.json +8 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/appsettings.json +8 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Blueprint.Infra.csproj.nuget.dgspec.json +176 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Blueprint.Infra.csproj.nuget.g.props +24 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Blueprint.Infra.csproj.nuget.g.targets +10 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprin.DC076348.Up2Date +0 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.AssemblyInfo.cs +24 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.AssemblyInfoInputs.cache +1 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.GeneratedMSBuildEditorConfig.editorconfig +13 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.GlobalUsings.g.cs +12 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.assets.cache +0 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.csproj.AssemblyReference.cache +0 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.csproj.BuildWithSkipAnalyzers +0 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.csproj.CoreCompileInputs.cache +1 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.csproj.FileListAbsolute.txt +429 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.genruntimeconfig.cache +1 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.pdb +0 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.sourcelink.json +1 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/apphost.exe +0 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/ref/Blueprint.Infra.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/refint/Blueprint.Infra.dll +0 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/project.assets.json +4442 -0
- package/BlueprintTemplate/Blueprint.Infra/obj/project.nuget.cache +92 -0
- package/BlueprintTemplate/Blueprint.Test/Blueprint.Test.csproj +29 -0
- package/BlueprintTemplate/Blueprint.Test/UnitTest1.cs +11 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/AWSSDK.Core.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/AWSSDK.Extensions.NETCore.Setup.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/AWSSDK.S3.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/AutoMapper.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.API.deps.json +1702 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.API.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.API.exe +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.API.pdb +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.API.runtimeconfig.json +20 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Core.deps.json +777 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Core.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Core.exe +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Core.pdb +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Core.runtimeconfig.json +12 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Infra.deps.json +1636 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Infra.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Infra.exe +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Infra.pdb +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Infra.runtimeconfig.json +13 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Test.deps.json +2804 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Test.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Test.pdb +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Test.runtimeconfig.json +19 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/CoverletSourceRootsMapping_Blueprint.Test +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/DnsClient.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.AspNetCore.Mvc.Versioning.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Bcl.Memory.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Extensions.Options.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.OpenApi.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/MongoDB.Bson.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/MongoDB.Driver.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/MySqlConnector.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Newtonsoft.Json.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/NuGet.Frameworks.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Pomelo.EntityFrameworkCore.MySql.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/RabbitMQ.Client.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/SharpCompress.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Snappier.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ZstdSharp.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/appsettings.Development.json +8 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/appsettings.json +17 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/testhost.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/testhost.exe +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.abstractions.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.assert.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.core.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.execution.dotnet.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.runner.reporters.netcoreapp10.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.runner.utility.netcoreapp10.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Blueprint.Test.csproj.nuget.dgspec.json +372 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Blueprint.Test.csproj.nuget.g.props +30 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Blueprint.Test.csproj.nuget.g.targets +14 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprin.BFA8907E.Up2Date +0 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.AssemblyInfo.cs +23 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.AssemblyInfoInputs.cache +1 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.GeneratedMSBuildEditorConfig.editorconfig +13 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.GlobalUsings.g.cs +9 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.assets.cache +0 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.csproj.AssemblyReference.cache +0 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.csproj.CoreCompileInputs.cache +1 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.csproj.FileListAbsolute.txt +154 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.genruntimeconfig.cache +1 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.pdb +0 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.sourcelink.json +1 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/ref/Blueprint.Test.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/refint/Blueprint.Test.dll +0 -0
- package/BlueprintTemplate/Blueprint.Test/obj/project.assets.json +9266 -0
- package/BlueprintTemplate/Blueprint.Test/obj/project.nuget.cache +170 -0
- package/BlueprintTemplate/Blueprint.sln +43 -0
- package/BlueprintTemplate/README.md +0 -0
- package/BlueprintTemplate/gitignore +17 -0
- package/create.js +15 -10
- package/package.json +2 -9
|
@@ -0,0 +1,2182 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"targets": {
|
|
4
|
+
"net8.0": {
|
|
5
|
+
"Microsoft.Bcl.Memory/9.0.0": {
|
|
6
|
+
"type": "package",
|
|
7
|
+
"compile": {
|
|
8
|
+
"lib/net8.0/Microsoft.Bcl.Memory.dll": {
|
|
9
|
+
"related": ".xml"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"runtime": {
|
|
13
|
+
"lib/net8.0/Microsoft.Bcl.Memory.dll": {
|
|
14
|
+
"related": ".xml"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"build": {
|
|
18
|
+
"buildTransitive/net8.0/_._": {}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"Microsoft.Extensions.Configuration/8.0.0": {
|
|
22
|
+
"type": "package",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
|
|
25
|
+
"Microsoft.Extensions.Primitives": "8.0.0"
|
|
26
|
+
},
|
|
27
|
+
"compile": {
|
|
28
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.dll": {
|
|
29
|
+
"related": ".xml"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"runtime": {
|
|
33
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.dll": {
|
|
34
|
+
"related": ".xml"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"build": {
|
|
38
|
+
"buildTransitive/net6.0/_._": {}
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
|
|
42
|
+
"type": "package",
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"Microsoft.Extensions.Primitives": "8.0.0"
|
|
45
|
+
},
|
|
46
|
+
"compile": {
|
|
47
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
|
|
48
|
+
"related": ".xml"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"runtime": {
|
|
52
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
|
|
53
|
+
"related": ".xml"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"build": {
|
|
57
|
+
"buildTransitive/net6.0/_._": {}
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"Microsoft.Extensions.Configuration.Binder/8.0.0": {
|
|
61
|
+
"type": "package",
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
|
|
64
|
+
},
|
|
65
|
+
"compile": {
|
|
66
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": {
|
|
67
|
+
"related": ".xml"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"runtime": {
|
|
71
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": {
|
|
72
|
+
"related": ".xml"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"build": {
|
|
76
|
+
"buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {}
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
|
|
80
|
+
"type": "package",
|
|
81
|
+
"dependencies": {
|
|
82
|
+
"Microsoft.Extensions.Configuration": "8.0.0",
|
|
83
|
+
"Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
|
|
84
|
+
},
|
|
85
|
+
"compile": {
|
|
86
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
|
|
87
|
+
"related": ".xml"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"runtime": {
|
|
91
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
|
|
92
|
+
"related": ".xml"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"build": {
|
|
96
|
+
"buildTransitive/net6.0/_._": {}
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
|
|
100
|
+
"type": "package",
|
|
101
|
+
"dependencies": {
|
|
102
|
+
"Microsoft.Extensions.Configuration": "8.0.0",
|
|
103
|
+
"Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
|
|
104
|
+
},
|
|
105
|
+
"compile": {
|
|
106
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
|
|
107
|
+
"related": ".xml"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"runtime": {
|
|
111
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
|
|
112
|
+
"related": ".xml"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"build": {
|
|
116
|
+
"buildTransitive/net6.0/_._": {}
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
|
|
120
|
+
"type": "package",
|
|
121
|
+
"dependencies": {
|
|
122
|
+
"Microsoft.Extensions.Configuration": "8.0.0",
|
|
123
|
+
"Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
|
|
124
|
+
"Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
|
|
125
|
+
"Microsoft.Extensions.FileProviders.Physical": "8.0.0",
|
|
126
|
+
"Microsoft.Extensions.Primitives": "8.0.0"
|
|
127
|
+
},
|
|
128
|
+
"compile": {
|
|
129
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
|
|
130
|
+
"related": ".xml"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"runtime": {
|
|
134
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
|
|
135
|
+
"related": ".xml"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"build": {
|
|
139
|
+
"buildTransitive/net6.0/_._": {}
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"Microsoft.Extensions.Configuration.Json/8.0.0": {
|
|
143
|
+
"type": "package",
|
|
144
|
+
"dependencies": {
|
|
145
|
+
"Microsoft.Extensions.Configuration": "8.0.0",
|
|
146
|
+
"Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
|
|
147
|
+
"Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
|
|
148
|
+
"Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
|
|
149
|
+
"System.Text.Json": "8.0.0"
|
|
150
|
+
},
|
|
151
|
+
"compile": {
|
|
152
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": {
|
|
153
|
+
"related": ".xml"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"runtime": {
|
|
157
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": {
|
|
158
|
+
"related": ".xml"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"build": {
|
|
162
|
+
"buildTransitive/net6.0/_._": {}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
|
|
166
|
+
"type": "package",
|
|
167
|
+
"dependencies": {
|
|
168
|
+
"Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
|
|
169
|
+
"Microsoft.Extensions.Configuration.Json": "8.0.0",
|
|
170
|
+
"Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
|
|
171
|
+
"Microsoft.Extensions.FileProviders.Physical": "8.0.0"
|
|
172
|
+
},
|
|
173
|
+
"compile": {
|
|
174
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
|
|
175
|
+
"related": ".xml"
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"runtime": {
|
|
179
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
|
|
180
|
+
"related": ".xml"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"build": {
|
|
184
|
+
"buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props": {},
|
|
185
|
+
"buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"Microsoft.Extensions.DependencyInjection/8.0.0": {
|
|
189
|
+
"type": "package",
|
|
190
|
+
"dependencies": {
|
|
191
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
|
|
192
|
+
},
|
|
193
|
+
"compile": {
|
|
194
|
+
"lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
|
|
195
|
+
"related": ".xml"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"runtime": {
|
|
199
|
+
"lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
|
|
200
|
+
"related": ".xml"
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
"build": {
|
|
204
|
+
"buildTransitive/net6.0/_._": {}
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
|
|
208
|
+
"type": "package",
|
|
209
|
+
"compile": {
|
|
210
|
+
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
|
211
|
+
"related": ".xml"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"runtime": {
|
|
215
|
+
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
|
216
|
+
"related": ".xml"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
"build": {
|
|
220
|
+
"buildTransitive/net6.0/_._": {}
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"Microsoft.Extensions.Diagnostics/8.0.0": {
|
|
224
|
+
"type": "package",
|
|
225
|
+
"dependencies": {
|
|
226
|
+
"Microsoft.Extensions.Configuration": "8.0.0",
|
|
227
|
+
"Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
|
|
228
|
+
"Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
|
|
229
|
+
},
|
|
230
|
+
"compile": {
|
|
231
|
+
"lib/net8.0/Microsoft.Extensions.Diagnostics.dll": {
|
|
232
|
+
"related": ".xml"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"runtime": {
|
|
236
|
+
"lib/net8.0/Microsoft.Extensions.Diagnostics.dll": {
|
|
237
|
+
"related": ".xml"
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"build": {
|
|
241
|
+
"buildTransitive/net6.0/_._": {}
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
|
|
245
|
+
"type": "package",
|
|
246
|
+
"dependencies": {
|
|
247
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
|
|
248
|
+
"Microsoft.Extensions.Options": "8.0.0",
|
|
249
|
+
"System.Diagnostics.DiagnosticSource": "8.0.0"
|
|
250
|
+
},
|
|
251
|
+
"compile": {
|
|
252
|
+
"lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
|
|
253
|
+
"related": ".xml"
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"runtime": {
|
|
257
|
+
"lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
|
|
258
|
+
"related": ".xml"
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
"build": {
|
|
262
|
+
"buildTransitive/net6.0/_._": {}
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
"Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
|
|
266
|
+
"type": "package",
|
|
267
|
+
"dependencies": {
|
|
268
|
+
"Microsoft.Extensions.Primitives": "8.0.0"
|
|
269
|
+
},
|
|
270
|
+
"compile": {
|
|
271
|
+
"lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
|
|
272
|
+
"related": ".xml"
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
"runtime": {
|
|
276
|
+
"lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
|
|
277
|
+
"related": ".xml"
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"build": {
|
|
281
|
+
"buildTransitive/net6.0/_._": {}
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"Microsoft.Extensions.FileProviders.Physical/8.0.0": {
|
|
285
|
+
"type": "package",
|
|
286
|
+
"dependencies": {
|
|
287
|
+
"Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
|
|
288
|
+
"Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
|
|
289
|
+
"Microsoft.Extensions.Primitives": "8.0.0"
|
|
290
|
+
},
|
|
291
|
+
"compile": {
|
|
292
|
+
"lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": {
|
|
293
|
+
"related": ".xml"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"runtime": {
|
|
297
|
+
"lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": {
|
|
298
|
+
"related": ".xml"
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"build": {
|
|
302
|
+
"buildTransitive/net6.0/_._": {}
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
"Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
|
|
306
|
+
"type": "package",
|
|
307
|
+
"compile": {
|
|
308
|
+
"lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
|
|
309
|
+
"related": ".xml"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"runtime": {
|
|
313
|
+
"lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
|
|
314
|
+
"related": ".xml"
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
"build": {
|
|
318
|
+
"buildTransitive/net6.0/_._": {}
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
"Microsoft.Extensions.Hosting/8.0.0": {
|
|
322
|
+
"type": "package",
|
|
323
|
+
"dependencies": {
|
|
324
|
+
"Microsoft.Extensions.Configuration": "8.0.0",
|
|
325
|
+
"Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
|
|
326
|
+
"Microsoft.Extensions.Configuration.Binder": "8.0.0",
|
|
327
|
+
"Microsoft.Extensions.Configuration.CommandLine": "8.0.0",
|
|
328
|
+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "8.0.0",
|
|
329
|
+
"Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
|
|
330
|
+
"Microsoft.Extensions.Configuration.Json": "8.0.0",
|
|
331
|
+
"Microsoft.Extensions.Configuration.UserSecrets": "8.0.0",
|
|
332
|
+
"Microsoft.Extensions.DependencyInjection": "8.0.0",
|
|
333
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
|
|
334
|
+
"Microsoft.Extensions.Diagnostics": "8.0.0",
|
|
335
|
+
"Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
|
|
336
|
+
"Microsoft.Extensions.FileProviders.Physical": "8.0.0",
|
|
337
|
+
"Microsoft.Extensions.Hosting.Abstractions": "8.0.0",
|
|
338
|
+
"Microsoft.Extensions.Logging": "8.0.0",
|
|
339
|
+
"Microsoft.Extensions.Logging.Abstractions": "8.0.0",
|
|
340
|
+
"Microsoft.Extensions.Logging.Configuration": "8.0.0",
|
|
341
|
+
"Microsoft.Extensions.Logging.Console": "8.0.0",
|
|
342
|
+
"Microsoft.Extensions.Logging.Debug": "8.0.0",
|
|
343
|
+
"Microsoft.Extensions.Logging.EventLog": "8.0.0",
|
|
344
|
+
"Microsoft.Extensions.Logging.EventSource": "8.0.0",
|
|
345
|
+
"Microsoft.Extensions.Options": "8.0.0"
|
|
346
|
+
},
|
|
347
|
+
"compile": {
|
|
348
|
+
"lib/net8.0/Microsoft.Extensions.Hosting.dll": {
|
|
349
|
+
"related": ".xml"
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"runtime": {
|
|
353
|
+
"lib/net8.0/Microsoft.Extensions.Hosting.dll": {
|
|
354
|
+
"related": ".xml"
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
"build": {
|
|
358
|
+
"buildTransitive/net6.0/_._": {}
|
|
359
|
+
}
|
|
360
|
+
},
|
|
361
|
+
"Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
|
|
362
|
+
"type": "package",
|
|
363
|
+
"dependencies": {
|
|
364
|
+
"Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
|
|
365
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
|
|
366
|
+
"Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
|
|
367
|
+
"Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
|
|
368
|
+
"Microsoft.Extensions.Logging.Abstractions": "8.0.0"
|
|
369
|
+
},
|
|
370
|
+
"compile": {
|
|
371
|
+
"lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
|
|
372
|
+
"related": ".xml"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"runtime": {
|
|
376
|
+
"lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
|
|
377
|
+
"related": ".xml"
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"build": {
|
|
381
|
+
"buildTransitive/net6.0/_._": {}
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"Microsoft.Extensions.Logging/8.0.0": {
|
|
385
|
+
"type": "package",
|
|
386
|
+
"dependencies": {
|
|
387
|
+
"Microsoft.Extensions.DependencyInjection": "8.0.0",
|
|
388
|
+
"Microsoft.Extensions.Logging.Abstractions": "8.0.0",
|
|
389
|
+
"Microsoft.Extensions.Options": "8.0.0"
|
|
390
|
+
},
|
|
391
|
+
"compile": {
|
|
392
|
+
"lib/net8.0/Microsoft.Extensions.Logging.dll": {
|
|
393
|
+
"related": ".xml"
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"runtime": {
|
|
397
|
+
"lib/net8.0/Microsoft.Extensions.Logging.dll": {
|
|
398
|
+
"related": ".xml"
|
|
399
|
+
}
|
|
400
|
+
},
|
|
401
|
+
"build": {
|
|
402
|
+
"buildTransitive/net6.0/_._": {}
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
"Microsoft.Extensions.Logging.Abstractions/8.0.0": {
|
|
406
|
+
"type": "package",
|
|
407
|
+
"dependencies": {
|
|
408
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
|
|
409
|
+
},
|
|
410
|
+
"compile": {
|
|
411
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
|
412
|
+
"related": ".xml"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
"runtime": {
|
|
416
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
|
417
|
+
"related": ".xml"
|
|
418
|
+
}
|
|
419
|
+
},
|
|
420
|
+
"build": {
|
|
421
|
+
"buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
"Microsoft.Extensions.Logging.Configuration/8.0.0": {
|
|
425
|
+
"type": "package",
|
|
426
|
+
"dependencies": {
|
|
427
|
+
"Microsoft.Extensions.Configuration": "8.0.0",
|
|
428
|
+
"Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
|
|
429
|
+
"Microsoft.Extensions.Configuration.Binder": "8.0.0",
|
|
430
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
|
|
431
|
+
"Microsoft.Extensions.Logging": "8.0.0",
|
|
432
|
+
"Microsoft.Extensions.Logging.Abstractions": "8.0.0",
|
|
433
|
+
"Microsoft.Extensions.Options": "8.0.0",
|
|
434
|
+
"Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
|
|
435
|
+
},
|
|
436
|
+
"compile": {
|
|
437
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": {
|
|
438
|
+
"related": ".xml"
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
"runtime": {
|
|
442
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": {
|
|
443
|
+
"related": ".xml"
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
"build": {
|
|
447
|
+
"buildTransitive/net6.0/_._": {}
|
|
448
|
+
}
|
|
449
|
+
},
|
|
450
|
+
"Microsoft.Extensions.Logging.Console/8.0.0": {
|
|
451
|
+
"type": "package",
|
|
452
|
+
"dependencies": {
|
|
453
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
|
|
454
|
+
"Microsoft.Extensions.Logging": "8.0.0",
|
|
455
|
+
"Microsoft.Extensions.Logging.Abstractions": "8.0.0",
|
|
456
|
+
"Microsoft.Extensions.Logging.Configuration": "8.0.0",
|
|
457
|
+
"Microsoft.Extensions.Options": "8.0.0",
|
|
458
|
+
"System.Text.Json": "8.0.0"
|
|
459
|
+
},
|
|
460
|
+
"compile": {
|
|
461
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Console.dll": {
|
|
462
|
+
"related": ".xml"
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
"runtime": {
|
|
466
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Console.dll": {
|
|
467
|
+
"related": ".xml"
|
|
468
|
+
}
|
|
469
|
+
},
|
|
470
|
+
"build": {
|
|
471
|
+
"buildTransitive/net6.0/_._": {}
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
"Microsoft.Extensions.Logging.Debug/8.0.0": {
|
|
475
|
+
"type": "package",
|
|
476
|
+
"dependencies": {
|
|
477
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
|
|
478
|
+
"Microsoft.Extensions.Logging": "8.0.0",
|
|
479
|
+
"Microsoft.Extensions.Logging.Abstractions": "8.0.0"
|
|
480
|
+
},
|
|
481
|
+
"compile": {
|
|
482
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": {
|
|
483
|
+
"related": ".xml"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"runtime": {
|
|
487
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": {
|
|
488
|
+
"related": ".xml"
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
"build": {
|
|
492
|
+
"buildTransitive/net6.0/_._": {}
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
"Microsoft.Extensions.Logging.EventLog/8.0.0": {
|
|
496
|
+
"type": "package",
|
|
497
|
+
"dependencies": {
|
|
498
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
|
|
499
|
+
"Microsoft.Extensions.Logging": "8.0.0",
|
|
500
|
+
"Microsoft.Extensions.Logging.Abstractions": "8.0.0",
|
|
501
|
+
"Microsoft.Extensions.Options": "8.0.0",
|
|
502
|
+
"System.Diagnostics.EventLog": "8.0.0"
|
|
503
|
+
},
|
|
504
|
+
"compile": {
|
|
505
|
+
"lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": {
|
|
506
|
+
"related": ".xml"
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
"runtime": {
|
|
510
|
+
"lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": {
|
|
511
|
+
"related": ".xml"
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"build": {
|
|
515
|
+
"buildTransitive/net6.0/_._": {}
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
"Microsoft.Extensions.Logging.EventSource/8.0.0": {
|
|
519
|
+
"type": "package",
|
|
520
|
+
"dependencies": {
|
|
521
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
|
|
522
|
+
"Microsoft.Extensions.Logging": "8.0.0",
|
|
523
|
+
"Microsoft.Extensions.Logging.Abstractions": "8.0.0",
|
|
524
|
+
"Microsoft.Extensions.Options": "8.0.0",
|
|
525
|
+
"Microsoft.Extensions.Primitives": "8.0.0",
|
|
526
|
+
"System.Text.Json": "8.0.0"
|
|
527
|
+
},
|
|
528
|
+
"compile": {
|
|
529
|
+
"lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": {
|
|
530
|
+
"related": ".xml"
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
"runtime": {
|
|
534
|
+
"lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": {
|
|
535
|
+
"related": ".xml"
|
|
536
|
+
}
|
|
537
|
+
},
|
|
538
|
+
"build": {
|
|
539
|
+
"buildTransitive/net6.0/_._": {}
|
|
540
|
+
}
|
|
541
|
+
},
|
|
542
|
+
"Microsoft.Extensions.Options/8.0.0": {
|
|
543
|
+
"type": "package",
|
|
544
|
+
"dependencies": {
|
|
545
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
|
|
546
|
+
"Microsoft.Extensions.Primitives": "8.0.0"
|
|
547
|
+
},
|
|
548
|
+
"compile": {
|
|
549
|
+
"lib/net8.0/Microsoft.Extensions.Options.dll": {
|
|
550
|
+
"related": ".xml"
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
"runtime": {
|
|
554
|
+
"lib/net8.0/Microsoft.Extensions.Options.dll": {
|
|
555
|
+
"related": ".xml"
|
|
556
|
+
}
|
|
557
|
+
},
|
|
558
|
+
"build": {
|
|
559
|
+
"buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {}
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
"Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
|
|
563
|
+
"type": "package",
|
|
564
|
+
"dependencies": {
|
|
565
|
+
"Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
|
|
566
|
+
"Microsoft.Extensions.Configuration.Binder": "8.0.0",
|
|
567
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
|
|
568
|
+
"Microsoft.Extensions.Options": "8.0.0",
|
|
569
|
+
"Microsoft.Extensions.Primitives": "8.0.0"
|
|
570
|
+
},
|
|
571
|
+
"compile": {
|
|
572
|
+
"lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
|
|
573
|
+
"related": ".xml"
|
|
574
|
+
}
|
|
575
|
+
},
|
|
576
|
+
"runtime": {
|
|
577
|
+
"lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
|
|
578
|
+
"related": ".xml"
|
|
579
|
+
}
|
|
580
|
+
},
|
|
581
|
+
"build": {
|
|
582
|
+
"buildTransitive/net6.0/_._": {}
|
|
583
|
+
}
|
|
584
|
+
},
|
|
585
|
+
"Microsoft.Extensions.Primitives/8.0.0": {
|
|
586
|
+
"type": "package",
|
|
587
|
+
"compile": {
|
|
588
|
+
"lib/net8.0/Microsoft.Extensions.Primitives.dll": {
|
|
589
|
+
"related": ".xml"
|
|
590
|
+
}
|
|
591
|
+
},
|
|
592
|
+
"runtime": {
|
|
593
|
+
"lib/net8.0/Microsoft.Extensions.Primitives.dll": {
|
|
594
|
+
"related": ".xml"
|
|
595
|
+
}
|
|
596
|
+
},
|
|
597
|
+
"build": {
|
|
598
|
+
"buildTransitive/net6.0/_._": {}
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
"Microsoft.IdentityModel.Abstractions/8.3.1": {
|
|
602
|
+
"type": "package",
|
|
603
|
+
"compile": {
|
|
604
|
+
"lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
|
|
605
|
+
"related": ".xml"
|
|
606
|
+
}
|
|
607
|
+
},
|
|
608
|
+
"runtime": {
|
|
609
|
+
"lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
|
|
610
|
+
"related": ".xml"
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
|
+
},
|
|
614
|
+
"Microsoft.IdentityModel.JsonWebTokens/8.3.1": {
|
|
615
|
+
"type": "package",
|
|
616
|
+
"dependencies": {
|
|
617
|
+
"Microsoft.IdentityModel.Tokens": "8.3.1"
|
|
618
|
+
},
|
|
619
|
+
"compile": {
|
|
620
|
+
"lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
|
|
621
|
+
"related": ".xml"
|
|
622
|
+
}
|
|
623
|
+
},
|
|
624
|
+
"runtime": {
|
|
625
|
+
"lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
|
|
626
|
+
"related": ".xml"
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"Microsoft.IdentityModel.Logging/8.3.1": {
|
|
631
|
+
"type": "package",
|
|
632
|
+
"dependencies": {
|
|
633
|
+
"Microsoft.IdentityModel.Abstractions": "8.3.1"
|
|
634
|
+
},
|
|
635
|
+
"compile": {
|
|
636
|
+
"lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
|
|
637
|
+
"related": ".xml"
|
|
638
|
+
}
|
|
639
|
+
},
|
|
640
|
+
"runtime": {
|
|
641
|
+
"lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
|
|
642
|
+
"related": ".xml"
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
"Microsoft.IdentityModel.Tokens/8.3.1": {
|
|
647
|
+
"type": "package",
|
|
648
|
+
"dependencies": {
|
|
649
|
+
"Microsoft.Bcl.Memory": "9.0.0",
|
|
650
|
+
"Microsoft.Extensions.Logging.Abstractions": "8.0.0",
|
|
651
|
+
"Microsoft.IdentityModel.Logging": "8.3.1"
|
|
652
|
+
},
|
|
653
|
+
"compile": {
|
|
654
|
+
"lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
|
|
655
|
+
"related": ".xml"
|
|
656
|
+
}
|
|
657
|
+
},
|
|
658
|
+
"runtime": {
|
|
659
|
+
"lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
|
|
660
|
+
"related": ".xml"
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
},
|
|
664
|
+
"MongoDB.Bson/3.1.0": {
|
|
665
|
+
"type": "package",
|
|
666
|
+
"dependencies": {
|
|
667
|
+
"System.Memory": "4.5.5",
|
|
668
|
+
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
|
|
669
|
+
},
|
|
670
|
+
"compile": {
|
|
671
|
+
"lib/net6.0/MongoDB.Bson.dll": {
|
|
672
|
+
"related": ".xml"
|
|
673
|
+
}
|
|
674
|
+
},
|
|
675
|
+
"runtime": {
|
|
676
|
+
"lib/net6.0/MongoDB.Bson.dll": {
|
|
677
|
+
"related": ".xml"
|
|
678
|
+
}
|
|
679
|
+
}
|
|
680
|
+
},
|
|
681
|
+
"System.Diagnostics.DiagnosticSource/8.0.0": {
|
|
682
|
+
"type": "package",
|
|
683
|
+
"compile": {
|
|
684
|
+
"lib/net8.0/System.Diagnostics.DiagnosticSource.dll": {
|
|
685
|
+
"related": ".xml"
|
|
686
|
+
}
|
|
687
|
+
},
|
|
688
|
+
"runtime": {
|
|
689
|
+
"lib/net8.0/System.Diagnostics.DiagnosticSource.dll": {
|
|
690
|
+
"related": ".xml"
|
|
691
|
+
}
|
|
692
|
+
},
|
|
693
|
+
"build": {
|
|
694
|
+
"buildTransitive/net6.0/_._": {}
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
"System.Diagnostics.EventLog/8.0.0": {
|
|
698
|
+
"type": "package",
|
|
699
|
+
"compile": {
|
|
700
|
+
"lib/net8.0/System.Diagnostics.EventLog.dll": {
|
|
701
|
+
"related": ".xml"
|
|
702
|
+
}
|
|
703
|
+
},
|
|
704
|
+
"runtime": {
|
|
705
|
+
"lib/net8.0/System.Diagnostics.EventLog.dll": {
|
|
706
|
+
"related": ".xml"
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
"build": {
|
|
710
|
+
"buildTransitive/net6.0/_._": {}
|
|
711
|
+
},
|
|
712
|
+
"runtimeTargets": {
|
|
713
|
+
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": {
|
|
714
|
+
"assetType": "runtime",
|
|
715
|
+
"rid": "win"
|
|
716
|
+
},
|
|
717
|
+
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": {
|
|
718
|
+
"assetType": "runtime",
|
|
719
|
+
"rid": "win"
|
|
720
|
+
}
|
|
721
|
+
}
|
|
722
|
+
},
|
|
723
|
+
"System.IdentityModel.Tokens.Jwt/8.3.1": {
|
|
724
|
+
"type": "package",
|
|
725
|
+
"dependencies": {
|
|
726
|
+
"Microsoft.IdentityModel.JsonWebTokens": "8.3.1",
|
|
727
|
+
"Microsoft.IdentityModel.Tokens": "8.3.1"
|
|
728
|
+
},
|
|
729
|
+
"compile": {
|
|
730
|
+
"lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
|
|
731
|
+
"related": ".xml"
|
|
732
|
+
}
|
|
733
|
+
},
|
|
734
|
+
"runtime": {
|
|
735
|
+
"lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
|
|
736
|
+
"related": ".xml"
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
},
|
|
740
|
+
"System.Memory/4.5.5": {
|
|
741
|
+
"type": "package",
|
|
742
|
+
"compile": {
|
|
743
|
+
"ref/netcoreapp2.1/_._": {}
|
|
744
|
+
},
|
|
745
|
+
"runtime": {
|
|
746
|
+
"lib/netcoreapp2.1/_._": {}
|
|
747
|
+
}
|
|
748
|
+
},
|
|
749
|
+
"System.Runtime.CompilerServices.Unsafe/5.0.0": {
|
|
750
|
+
"type": "package",
|
|
751
|
+
"compile": {
|
|
752
|
+
"ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
|
|
753
|
+
"related": ".xml"
|
|
754
|
+
}
|
|
755
|
+
},
|
|
756
|
+
"runtime": {
|
|
757
|
+
"lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
|
|
758
|
+
"related": ".xml"
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
"System.Text.Encodings.Web/8.0.0": {
|
|
763
|
+
"type": "package",
|
|
764
|
+
"compile": {
|
|
765
|
+
"lib/net8.0/System.Text.Encodings.Web.dll": {
|
|
766
|
+
"related": ".xml"
|
|
767
|
+
}
|
|
768
|
+
},
|
|
769
|
+
"runtime": {
|
|
770
|
+
"lib/net8.0/System.Text.Encodings.Web.dll": {
|
|
771
|
+
"related": ".xml"
|
|
772
|
+
}
|
|
773
|
+
},
|
|
774
|
+
"build": {
|
|
775
|
+
"buildTransitive/net6.0/_._": {}
|
|
776
|
+
},
|
|
777
|
+
"runtimeTargets": {
|
|
778
|
+
"runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": {
|
|
779
|
+
"assetType": "runtime",
|
|
780
|
+
"rid": "browser"
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
},
|
|
784
|
+
"System.Text.Json/8.0.0": {
|
|
785
|
+
"type": "package",
|
|
786
|
+
"dependencies": {
|
|
787
|
+
"System.Text.Encodings.Web": "8.0.0"
|
|
788
|
+
},
|
|
789
|
+
"compile": {
|
|
790
|
+
"lib/net8.0/System.Text.Json.dll": {
|
|
791
|
+
"related": ".xml"
|
|
792
|
+
}
|
|
793
|
+
},
|
|
794
|
+
"runtime": {
|
|
795
|
+
"lib/net8.0/System.Text.Json.dll": {
|
|
796
|
+
"related": ".xml"
|
|
797
|
+
}
|
|
798
|
+
},
|
|
799
|
+
"build": {
|
|
800
|
+
"buildTransitive/net6.0/System.Text.Json.targets": {}
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
},
|
|
805
|
+
"libraries": {
|
|
806
|
+
"Microsoft.Bcl.Memory/9.0.0": {
|
|
807
|
+
"sha512": "bTUtGfpGyJnohQzjdXbtc7MqNzkv7CWUSRz54+ucNm0i32rZiIU0VdVPHDBShOl1qhVKRjW8mnEBz3d2vH93tQ==",
|
|
808
|
+
"type": "package",
|
|
809
|
+
"path": "microsoft.bcl.memory/9.0.0",
|
|
810
|
+
"files": [
|
|
811
|
+
".nupkg.metadata",
|
|
812
|
+
".signature.p7s",
|
|
813
|
+
"Icon.png",
|
|
814
|
+
"LICENSE.TXT",
|
|
815
|
+
"PACKAGE.md",
|
|
816
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
817
|
+
"buildTransitive/net461/Microsoft.Bcl.Memory.targets",
|
|
818
|
+
"buildTransitive/net462/_._",
|
|
819
|
+
"buildTransitive/net8.0/_._",
|
|
820
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Bcl.Memory.targets",
|
|
821
|
+
"lib/net462/Microsoft.Bcl.Memory.dll",
|
|
822
|
+
"lib/net462/Microsoft.Bcl.Memory.xml",
|
|
823
|
+
"lib/net8.0/Microsoft.Bcl.Memory.dll",
|
|
824
|
+
"lib/net8.0/Microsoft.Bcl.Memory.xml",
|
|
825
|
+
"lib/net9.0/Microsoft.Bcl.Memory.dll",
|
|
826
|
+
"lib/net9.0/Microsoft.Bcl.Memory.xml",
|
|
827
|
+
"lib/netstandard2.0/Microsoft.Bcl.Memory.dll",
|
|
828
|
+
"lib/netstandard2.0/Microsoft.Bcl.Memory.xml",
|
|
829
|
+
"lib/netstandard2.1/Microsoft.Bcl.Memory.dll",
|
|
830
|
+
"lib/netstandard2.1/Microsoft.Bcl.Memory.xml",
|
|
831
|
+
"microsoft.bcl.memory.9.0.0.nupkg.sha512",
|
|
832
|
+
"microsoft.bcl.memory.nuspec",
|
|
833
|
+
"useSharedDesignerContext.txt"
|
|
834
|
+
]
|
|
835
|
+
},
|
|
836
|
+
"Microsoft.Extensions.Configuration/8.0.0": {
|
|
837
|
+
"sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
|
|
838
|
+
"type": "package",
|
|
839
|
+
"path": "microsoft.extensions.configuration/8.0.0",
|
|
840
|
+
"files": [
|
|
841
|
+
".nupkg.metadata",
|
|
842
|
+
".signature.p7s",
|
|
843
|
+
"Icon.png",
|
|
844
|
+
"LICENSE.TXT",
|
|
845
|
+
"PACKAGE.md",
|
|
846
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
847
|
+
"buildTransitive/net461/Microsoft.Extensions.Configuration.targets",
|
|
848
|
+
"buildTransitive/net462/_._",
|
|
849
|
+
"buildTransitive/net6.0/_._",
|
|
850
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets",
|
|
851
|
+
"lib/net462/Microsoft.Extensions.Configuration.dll",
|
|
852
|
+
"lib/net462/Microsoft.Extensions.Configuration.xml",
|
|
853
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.dll",
|
|
854
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.xml",
|
|
855
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.dll",
|
|
856
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.xml",
|
|
857
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.dll",
|
|
858
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.xml",
|
|
859
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
|
|
860
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
|
|
861
|
+
"microsoft.extensions.configuration.8.0.0.nupkg.sha512",
|
|
862
|
+
"microsoft.extensions.configuration.nuspec",
|
|
863
|
+
"useSharedDesignerContext.txt"
|
|
864
|
+
]
|
|
865
|
+
},
|
|
866
|
+
"Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
|
|
867
|
+
"sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
|
|
868
|
+
"type": "package",
|
|
869
|
+
"path": "microsoft.extensions.configuration.abstractions/8.0.0",
|
|
870
|
+
"files": [
|
|
871
|
+
".nupkg.metadata",
|
|
872
|
+
".signature.p7s",
|
|
873
|
+
"Icon.png",
|
|
874
|
+
"LICENSE.TXT",
|
|
875
|
+
"PACKAGE.md",
|
|
876
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
877
|
+
"buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
|
|
878
|
+
"buildTransitive/net462/_._",
|
|
879
|
+
"buildTransitive/net6.0/_._",
|
|
880
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
|
|
881
|
+
"lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
|
|
882
|
+
"lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
|
|
883
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
|
|
884
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
|
|
885
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
|
|
886
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
|
|
887
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
|
|
888
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
|
|
889
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
|
|
890
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
|
|
891
|
+
"microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
|
|
892
|
+
"microsoft.extensions.configuration.abstractions.nuspec",
|
|
893
|
+
"useSharedDesignerContext.txt"
|
|
894
|
+
]
|
|
895
|
+
},
|
|
896
|
+
"Microsoft.Extensions.Configuration.Binder/8.0.0": {
|
|
897
|
+
"sha512": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==",
|
|
898
|
+
"type": "package",
|
|
899
|
+
"path": "microsoft.extensions.configuration.binder/8.0.0",
|
|
900
|
+
"files": [
|
|
901
|
+
".nupkg.metadata",
|
|
902
|
+
".signature.p7s",
|
|
903
|
+
"Icon.png",
|
|
904
|
+
"LICENSE.TXT",
|
|
905
|
+
"PACKAGE.md",
|
|
906
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
907
|
+
"analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll",
|
|
908
|
+
"analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
|
|
909
|
+
"analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
|
|
910
|
+
"analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
|
|
911
|
+
"analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
|
|
912
|
+
"analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
|
|
913
|
+
"analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
|
|
914
|
+
"analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
|
|
915
|
+
"analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
|
|
916
|
+
"analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
|
|
917
|
+
"analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
|
|
918
|
+
"analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
|
|
919
|
+
"analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
|
|
920
|
+
"analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
|
|
921
|
+
"buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets",
|
|
922
|
+
"lib/net462/Microsoft.Extensions.Configuration.Binder.dll",
|
|
923
|
+
"lib/net462/Microsoft.Extensions.Configuration.Binder.xml",
|
|
924
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll",
|
|
925
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml",
|
|
926
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll",
|
|
927
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml",
|
|
928
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll",
|
|
929
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml",
|
|
930
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
|
|
931
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
|
|
932
|
+
"microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512",
|
|
933
|
+
"microsoft.extensions.configuration.binder.nuspec",
|
|
934
|
+
"useSharedDesignerContext.txt"
|
|
935
|
+
]
|
|
936
|
+
},
|
|
937
|
+
"Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
|
|
938
|
+
"sha512": "NZuZMz3Q8Z780nKX3ifV1fE7lS+6pynDHK71OfU4OZ1ItgvDOhyOC7E6z+JMZrAj63zRpwbdldYFk499t3+1dQ==",
|
|
939
|
+
"type": "package",
|
|
940
|
+
"path": "microsoft.extensions.configuration.commandline/8.0.0",
|
|
941
|
+
"files": [
|
|
942
|
+
".nupkg.metadata",
|
|
943
|
+
".signature.p7s",
|
|
944
|
+
"Icon.png",
|
|
945
|
+
"LICENSE.TXT",
|
|
946
|
+
"PACKAGE.md",
|
|
947
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
948
|
+
"buildTransitive/net461/Microsoft.Extensions.Configuration.CommandLine.targets",
|
|
949
|
+
"buildTransitive/net462/_._",
|
|
950
|
+
"buildTransitive/net6.0/_._",
|
|
951
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets",
|
|
952
|
+
"lib/net462/Microsoft.Extensions.Configuration.CommandLine.dll",
|
|
953
|
+
"lib/net462/Microsoft.Extensions.Configuration.CommandLine.xml",
|
|
954
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.dll",
|
|
955
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.xml",
|
|
956
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.dll",
|
|
957
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.xml",
|
|
958
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll",
|
|
959
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.xml",
|
|
960
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
|
|
961
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
|
|
962
|
+
"microsoft.extensions.configuration.commandline.8.0.0.nupkg.sha512",
|
|
963
|
+
"microsoft.extensions.configuration.commandline.nuspec",
|
|
964
|
+
"useSharedDesignerContext.txt"
|
|
965
|
+
]
|
|
966
|
+
},
|
|
967
|
+
"Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
|
|
968
|
+
"sha512": "plvZ0ZIpq+97gdPNNvhwvrEZ92kNml9hd1pe3idMA7svR0PztdzVLkoWLcRFgySYXUJc3kSM3Xw3mNFMo/bxRA==",
|
|
969
|
+
"type": "package",
|
|
970
|
+
"path": "microsoft.extensions.configuration.environmentvariables/8.0.0",
|
|
971
|
+
"files": [
|
|
972
|
+
".nupkg.metadata",
|
|
973
|
+
".signature.p7s",
|
|
974
|
+
"Icon.png",
|
|
975
|
+
"LICENSE.TXT",
|
|
976
|
+
"PACKAGE.md",
|
|
977
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
978
|
+
"buildTransitive/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
|
|
979
|
+
"buildTransitive/net462/_._",
|
|
980
|
+
"buildTransitive/net6.0/_._",
|
|
981
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
|
|
982
|
+
"lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
|
|
983
|
+
"lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
|
|
984
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
|
|
985
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
|
|
986
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
|
|
987
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
|
|
988
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
|
|
989
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
|
|
990
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
|
|
991
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
|
|
992
|
+
"microsoft.extensions.configuration.environmentvariables.8.0.0.nupkg.sha512",
|
|
993
|
+
"microsoft.extensions.configuration.environmentvariables.nuspec",
|
|
994
|
+
"useSharedDesignerContext.txt"
|
|
995
|
+
]
|
|
996
|
+
},
|
|
997
|
+
"Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
|
|
998
|
+
"sha512": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==",
|
|
999
|
+
"type": "package",
|
|
1000
|
+
"path": "microsoft.extensions.configuration.fileextensions/8.0.0",
|
|
1001
|
+
"files": [
|
|
1002
|
+
".nupkg.metadata",
|
|
1003
|
+
".signature.p7s",
|
|
1004
|
+
"Icon.png",
|
|
1005
|
+
"LICENSE.TXT",
|
|
1006
|
+
"PACKAGE.md",
|
|
1007
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1008
|
+
"buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets",
|
|
1009
|
+
"buildTransitive/net462/_._",
|
|
1010
|
+
"buildTransitive/net6.0/_._",
|
|
1011
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets",
|
|
1012
|
+
"lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll",
|
|
1013
|
+
"lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml",
|
|
1014
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
|
|
1015
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
|
|
1016
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
|
|
1017
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
|
|
1018
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
|
|
1019
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
|
|
1020
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
|
|
1021
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
|
|
1022
|
+
"microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512",
|
|
1023
|
+
"microsoft.extensions.configuration.fileextensions.nuspec",
|
|
1024
|
+
"useSharedDesignerContext.txt"
|
|
1025
|
+
]
|
|
1026
|
+
},
|
|
1027
|
+
"Microsoft.Extensions.Configuration.Json/8.0.0": {
|
|
1028
|
+
"sha512": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==",
|
|
1029
|
+
"type": "package",
|
|
1030
|
+
"path": "microsoft.extensions.configuration.json/8.0.0",
|
|
1031
|
+
"files": [
|
|
1032
|
+
".nupkg.metadata",
|
|
1033
|
+
".signature.p7s",
|
|
1034
|
+
"Icon.png",
|
|
1035
|
+
"LICENSE.TXT",
|
|
1036
|
+
"PACKAGE.md",
|
|
1037
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1038
|
+
"buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets",
|
|
1039
|
+
"buildTransitive/net462/_._",
|
|
1040
|
+
"buildTransitive/net6.0/_._",
|
|
1041
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets",
|
|
1042
|
+
"lib/net462/Microsoft.Extensions.Configuration.Json.dll",
|
|
1043
|
+
"lib/net462/Microsoft.Extensions.Configuration.Json.xml",
|
|
1044
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.Json.dll",
|
|
1045
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.Json.xml",
|
|
1046
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.Json.dll",
|
|
1047
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.Json.xml",
|
|
1048
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.Json.dll",
|
|
1049
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.Json.xml",
|
|
1050
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
|
|
1051
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
|
|
1052
|
+
"lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
|
|
1053
|
+
"lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
|
|
1054
|
+
"microsoft.extensions.configuration.json.8.0.0.nupkg.sha512",
|
|
1055
|
+
"microsoft.extensions.configuration.json.nuspec",
|
|
1056
|
+
"useSharedDesignerContext.txt"
|
|
1057
|
+
]
|
|
1058
|
+
},
|
|
1059
|
+
"Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
|
|
1060
|
+
"sha512": "ihDHu2dJYQird9pl2CbdwuNDfvCZdOS0S7SPlNfhPt0B81UTT+yyZKz2pimFZGUp3AfuBRnqUCxB2SjsZKHVUw==",
|
|
1061
|
+
"type": "package",
|
|
1062
|
+
"path": "microsoft.extensions.configuration.usersecrets/8.0.0",
|
|
1063
|
+
"files": [
|
|
1064
|
+
".nupkg.metadata",
|
|
1065
|
+
".signature.p7s",
|
|
1066
|
+
"Icon.png",
|
|
1067
|
+
"LICENSE.TXT",
|
|
1068
|
+
"PACKAGE.md",
|
|
1069
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1070
|
+
"buildTransitive/net461/Microsoft.Extensions.Configuration.UserSecrets.targets",
|
|
1071
|
+
"buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props",
|
|
1072
|
+
"buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets",
|
|
1073
|
+
"buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props",
|
|
1074
|
+
"buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
|
|
1075
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
|
|
1076
|
+
"buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
|
|
1077
|
+
"buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
|
|
1078
|
+
"lib/net462/Microsoft.Extensions.Configuration.UserSecrets.dll",
|
|
1079
|
+
"lib/net462/Microsoft.Extensions.Configuration.UserSecrets.xml",
|
|
1080
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
|
|
1081
|
+
"lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
|
|
1082
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
|
|
1083
|
+
"lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
|
|
1084
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
|
|
1085
|
+
"lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
|
|
1086
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
|
|
1087
|
+
"lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
|
|
1088
|
+
"microsoft.extensions.configuration.usersecrets.8.0.0.nupkg.sha512",
|
|
1089
|
+
"microsoft.extensions.configuration.usersecrets.nuspec",
|
|
1090
|
+
"useSharedDesignerContext.txt"
|
|
1091
|
+
]
|
|
1092
|
+
},
|
|
1093
|
+
"Microsoft.Extensions.DependencyInjection/8.0.0": {
|
|
1094
|
+
"sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
|
|
1095
|
+
"type": "package",
|
|
1096
|
+
"path": "microsoft.extensions.dependencyinjection/8.0.0",
|
|
1097
|
+
"files": [
|
|
1098
|
+
".nupkg.metadata",
|
|
1099
|
+
".signature.p7s",
|
|
1100
|
+
"Icon.png",
|
|
1101
|
+
"LICENSE.TXT",
|
|
1102
|
+
"PACKAGE.md",
|
|
1103
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1104
|
+
"buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
|
|
1105
|
+
"buildTransitive/net462/_._",
|
|
1106
|
+
"buildTransitive/net6.0/_._",
|
|
1107
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
|
|
1108
|
+
"lib/net462/Microsoft.Extensions.DependencyInjection.dll",
|
|
1109
|
+
"lib/net462/Microsoft.Extensions.DependencyInjection.xml",
|
|
1110
|
+
"lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
|
|
1111
|
+
"lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
|
|
1112
|
+
"lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
|
|
1113
|
+
"lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
|
|
1114
|
+
"lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
|
|
1115
|
+
"lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
|
|
1116
|
+
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
|
|
1117
|
+
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
|
|
1118
|
+
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
|
|
1119
|
+
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
|
|
1120
|
+
"microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
|
|
1121
|
+
"microsoft.extensions.dependencyinjection.nuspec",
|
|
1122
|
+
"useSharedDesignerContext.txt"
|
|
1123
|
+
]
|
|
1124
|
+
},
|
|
1125
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
|
|
1126
|
+
"sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
|
|
1127
|
+
"type": "package",
|
|
1128
|
+
"path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
|
|
1129
|
+
"files": [
|
|
1130
|
+
".nupkg.metadata",
|
|
1131
|
+
".signature.p7s",
|
|
1132
|
+
"Icon.png",
|
|
1133
|
+
"LICENSE.TXT",
|
|
1134
|
+
"PACKAGE.md",
|
|
1135
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1136
|
+
"buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
|
|
1137
|
+
"buildTransitive/net462/_._",
|
|
1138
|
+
"buildTransitive/net6.0/_._",
|
|
1139
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
|
|
1140
|
+
"lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
|
1141
|
+
"lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
|
1142
|
+
"lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
|
1143
|
+
"lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
|
1144
|
+
"lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
|
1145
|
+
"lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
|
1146
|
+
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
|
1147
|
+
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
|
1148
|
+
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
|
1149
|
+
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
|
1150
|
+
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
|
1151
|
+
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
|
1152
|
+
"microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
|
|
1153
|
+
"microsoft.extensions.dependencyinjection.abstractions.nuspec",
|
|
1154
|
+
"useSharedDesignerContext.txt"
|
|
1155
|
+
]
|
|
1156
|
+
},
|
|
1157
|
+
"Microsoft.Extensions.Diagnostics/8.0.0": {
|
|
1158
|
+
"sha512": "3PZp/YSkIXrF7QK7PfC1bkyRYwqOHpWFad8Qx+4wkuumAeXo1NHaxpS9LboNA9OvNSAu+QOVlXbMyoY+pHSqcw==",
|
|
1159
|
+
"type": "package",
|
|
1160
|
+
"path": "microsoft.extensions.diagnostics/8.0.0",
|
|
1161
|
+
"files": [
|
|
1162
|
+
".nupkg.metadata",
|
|
1163
|
+
".signature.p7s",
|
|
1164
|
+
"Icon.png",
|
|
1165
|
+
"LICENSE.TXT",
|
|
1166
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1167
|
+
"buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets",
|
|
1168
|
+
"buildTransitive/net462/_._",
|
|
1169
|
+
"buildTransitive/net6.0/_._",
|
|
1170
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets",
|
|
1171
|
+
"lib/net462/Microsoft.Extensions.Diagnostics.dll",
|
|
1172
|
+
"lib/net462/Microsoft.Extensions.Diagnostics.xml",
|
|
1173
|
+
"lib/net6.0/Microsoft.Extensions.Diagnostics.dll",
|
|
1174
|
+
"lib/net6.0/Microsoft.Extensions.Diagnostics.xml",
|
|
1175
|
+
"lib/net7.0/Microsoft.Extensions.Diagnostics.dll",
|
|
1176
|
+
"lib/net7.0/Microsoft.Extensions.Diagnostics.xml",
|
|
1177
|
+
"lib/net8.0/Microsoft.Extensions.Diagnostics.dll",
|
|
1178
|
+
"lib/net8.0/Microsoft.Extensions.Diagnostics.xml",
|
|
1179
|
+
"lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll",
|
|
1180
|
+
"lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml",
|
|
1181
|
+
"microsoft.extensions.diagnostics.8.0.0.nupkg.sha512",
|
|
1182
|
+
"microsoft.extensions.diagnostics.nuspec",
|
|
1183
|
+
"useSharedDesignerContext.txt"
|
|
1184
|
+
]
|
|
1185
|
+
},
|
|
1186
|
+
"Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
|
|
1187
|
+
"sha512": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==",
|
|
1188
|
+
"type": "package",
|
|
1189
|
+
"path": "microsoft.extensions.diagnostics.abstractions/8.0.0",
|
|
1190
|
+
"files": [
|
|
1191
|
+
".nupkg.metadata",
|
|
1192
|
+
".signature.p7s",
|
|
1193
|
+
"Icon.png",
|
|
1194
|
+
"LICENSE.TXT",
|
|
1195
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1196
|
+
"buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets",
|
|
1197
|
+
"buildTransitive/net462/_._",
|
|
1198
|
+
"buildTransitive/net6.0/_._",
|
|
1199
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets",
|
|
1200
|
+
"lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll",
|
|
1201
|
+
"lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml",
|
|
1202
|
+
"lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
|
|
1203
|
+
"lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
|
|
1204
|
+
"lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
|
|
1205
|
+
"lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
|
|
1206
|
+
"lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
|
|
1207
|
+
"lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
|
|
1208
|
+
"lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
|
|
1209
|
+
"lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
|
|
1210
|
+
"microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512",
|
|
1211
|
+
"microsoft.extensions.diagnostics.abstractions.nuspec",
|
|
1212
|
+
"useSharedDesignerContext.txt"
|
|
1213
|
+
]
|
|
1214
|
+
},
|
|
1215
|
+
"Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
|
|
1216
|
+
"sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
|
|
1217
|
+
"type": "package",
|
|
1218
|
+
"path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
|
|
1219
|
+
"files": [
|
|
1220
|
+
".nupkg.metadata",
|
|
1221
|
+
".signature.p7s",
|
|
1222
|
+
"Icon.png",
|
|
1223
|
+
"LICENSE.TXT",
|
|
1224
|
+
"PACKAGE.md",
|
|
1225
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1226
|
+
"buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
|
|
1227
|
+
"buildTransitive/net462/_._",
|
|
1228
|
+
"buildTransitive/net6.0/_._",
|
|
1229
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
|
|
1230
|
+
"lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
|
|
1231
|
+
"lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
|
|
1232
|
+
"lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
|
|
1233
|
+
"lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
|
|
1234
|
+
"lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
|
|
1235
|
+
"lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
|
|
1236
|
+
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
|
|
1237
|
+
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
|
|
1238
|
+
"microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
|
|
1239
|
+
"microsoft.extensions.fileproviders.abstractions.nuspec",
|
|
1240
|
+
"useSharedDesignerContext.txt"
|
|
1241
|
+
]
|
|
1242
|
+
},
|
|
1243
|
+
"Microsoft.Extensions.FileProviders.Physical/8.0.0": {
|
|
1244
|
+
"sha512": "UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==",
|
|
1245
|
+
"type": "package",
|
|
1246
|
+
"path": "microsoft.extensions.fileproviders.physical/8.0.0",
|
|
1247
|
+
"files": [
|
|
1248
|
+
".nupkg.metadata",
|
|
1249
|
+
".signature.p7s",
|
|
1250
|
+
"Icon.png",
|
|
1251
|
+
"LICENSE.TXT",
|
|
1252
|
+
"PACKAGE.md",
|
|
1253
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1254
|
+
"buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets",
|
|
1255
|
+
"buildTransitive/net462/_._",
|
|
1256
|
+
"buildTransitive/net6.0/_._",
|
|
1257
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
|
|
1258
|
+
"lib/net462/Microsoft.Extensions.FileProviders.Physical.dll",
|
|
1259
|
+
"lib/net462/Microsoft.Extensions.FileProviders.Physical.xml",
|
|
1260
|
+
"lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
|
|
1261
|
+
"lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
|
|
1262
|
+
"lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll",
|
|
1263
|
+
"lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml",
|
|
1264
|
+
"lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll",
|
|
1265
|
+
"lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml",
|
|
1266
|
+
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
|
|
1267
|
+
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
|
|
1268
|
+
"microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
|
|
1269
|
+
"microsoft.extensions.fileproviders.physical.nuspec",
|
|
1270
|
+
"useSharedDesignerContext.txt"
|
|
1271
|
+
]
|
|
1272
|
+
},
|
|
1273
|
+
"Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
|
|
1274
|
+
"sha512": "OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==",
|
|
1275
|
+
"type": "package",
|
|
1276
|
+
"path": "microsoft.extensions.filesystemglobbing/8.0.0",
|
|
1277
|
+
"files": [
|
|
1278
|
+
".nupkg.metadata",
|
|
1279
|
+
".signature.p7s",
|
|
1280
|
+
"Icon.png",
|
|
1281
|
+
"LICENSE.TXT",
|
|
1282
|
+
"PACKAGE.md",
|
|
1283
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1284
|
+
"buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets",
|
|
1285
|
+
"buildTransitive/net462/_._",
|
|
1286
|
+
"buildTransitive/net6.0/_._",
|
|
1287
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
|
|
1288
|
+
"lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll",
|
|
1289
|
+
"lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml",
|
|
1290
|
+
"lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
|
|
1291
|
+
"lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
|
|
1292
|
+
"lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll",
|
|
1293
|
+
"lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml",
|
|
1294
|
+
"lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll",
|
|
1295
|
+
"lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml",
|
|
1296
|
+
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
|
|
1297
|
+
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
|
|
1298
|
+
"microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
|
|
1299
|
+
"microsoft.extensions.filesystemglobbing.nuspec",
|
|
1300
|
+
"useSharedDesignerContext.txt"
|
|
1301
|
+
]
|
|
1302
|
+
},
|
|
1303
|
+
"Microsoft.Extensions.Hosting/8.0.0": {
|
|
1304
|
+
"sha512": "ItYHpdqVp5/oFLT5QqbopnkKlyFG9EW/9nhM6/yfObeKt6Su0wkBio6AizgRHGNwhJuAtlE5VIjow5JOTrip6w==",
|
|
1305
|
+
"type": "package",
|
|
1306
|
+
"path": "microsoft.extensions.hosting/8.0.0",
|
|
1307
|
+
"files": [
|
|
1308
|
+
".nupkg.metadata",
|
|
1309
|
+
".signature.p7s",
|
|
1310
|
+
"Icon.png",
|
|
1311
|
+
"LICENSE.TXT",
|
|
1312
|
+
"PACKAGE.md",
|
|
1313
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1314
|
+
"buildTransitive/net461/Microsoft.Extensions.Hosting.targets",
|
|
1315
|
+
"buildTransitive/net462/_._",
|
|
1316
|
+
"buildTransitive/net6.0/_._",
|
|
1317
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets",
|
|
1318
|
+
"lib/net462/Microsoft.Extensions.Hosting.dll",
|
|
1319
|
+
"lib/net462/Microsoft.Extensions.Hosting.xml",
|
|
1320
|
+
"lib/net6.0/Microsoft.Extensions.Hosting.dll",
|
|
1321
|
+
"lib/net6.0/Microsoft.Extensions.Hosting.xml",
|
|
1322
|
+
"lib/net7.0/Microsoft.Extensions.Hosting.dll",
|
|
1323
|
+
"lib/net7.0/Microsoft.Extensions.Hosting.xml",
|
|
1324
|
+
"lib/net8.0/Microsoft.Extensions.Hosting.dll",
|
|
1325
|
+
"lib/net8.0/Microsoft.Extensions.Hosting.xml",
|
|
1326
|
+
"lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
|
|
1327
|
+
"lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
|
|
1328
|
+
"lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
|
|
1329
|
+
"lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
|
|
1330
|
+
"microsoft.extensions.hosting.8.0.0.nupkg.sha512",
|
|
1331
|
+
"microsoft.extensions.hosting.nuspec",
|
|
1332
|
+
"useSharedDesignerContext.txt"
|
|
1333
|
+
]
|
|
1334
|
+
},
|
|
1335
|
+
"Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
|
|
1336
|
+
"sha512": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==",
|
|
1337
|
+
"type": "package",
|
|
1338
|
+
"path": "microsoft.extensions.hosting.abstractions/8.0.0",
|
|
1339
|
+
"files": [
|
|
1340
|
+
".nupkg.metadata",
|
|
1341
|
+
".signature.p7s",
|
|
1342
|
+
"Icon.png",
|
|
1343
|
+
"LICENSE.TXT",
|
|
1344
|
+
"PACKAGE.md",
|
|
1345
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1346
|
+
"buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets",
|
|
1347
|
+
"buildTransitive/net462/_._",
|
|
1348
|
+
"buildTransitive/net6.0/_._",
|
|
1349
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets",
|
|
1350
|
+
"lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll",
|
|
1351
|
+
"lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml",
|
|
1352
|
+
"lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll",
|
|
1353
|
+
"lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml",
|
|
1354
|
+
"lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll",
|
|
1355
|
+
"lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml",
|
|
1356
|
+
"lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll",
|
|
1357
|
+
"lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml",
|
|
1358
|
+
"lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
|
|
1359
|
+
"lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
|
|
1360
|
+
"lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
|
|
1361
|
+
"lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
|
|
1362
|
+
"microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512",
|
|
1363
|
+
"microsoft.extensions.hosting.abstractions.nuspec",
|
|
1364
|
+
"useSharedDesignerContext.txt"
|
|
1365
|
+
]
|
|
1366
|
+
},
|
|
1367
|
+
"Microsoft.Extensions.Logging/8.0.0": {
|
|
1368
|
+
"sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
|
|
1369
|
+
"type": "package",
|
|
1370
|
+
"path": "microsoft.extensions.logging/8.0.0",
|
|
1371
|
+
"files": [
|
|
1372
|
+
".nupkg.metadata",
|
|
1373
|
+
".signature.p7s",
|
|
1374
|
+
"Icon.png",
|
|
1375
|
+
"LICENSE.TXT",
|
|
1376
|
+
"PACKAGE.md",
|
|
1377
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1378
|
+
"buildTransitive/net461/Microsoft.Extensions.Logging.targets",
|
|
1379
|
+
"buildTransitive/net462/_._",
|
|
1380
|
+
"buildTransitive/net6.0/_._",
|
|
1381
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
|
|
1382
|
+
"lib/net462/Microsoft.Extensions.Logging.dll",
|
|
1383
|
+
"lib/net462/Microsoft.Extensions.Logging.xml",
|
|
1384
|
+
"lib/net6.0/Microsoft.Extensions.Logging.dll",
|
|
1385
|
+
"lib/net6.0/Microsoft.Extensions.Logging.xml",
|
|
1386
|
+
"lib/net7.0/Microsoft.Extensions.Logging.dll",
|
|
1387
|
+
"lib/net7.0/Microsoft.Extensions.Logging.xml",
|
|
1388
|
+
"lib/net8.0/Microsoft.Extensions.Logging.dll",
|
|
1389
|
+
"lib/net8.0/Microsoft.Extensions.Logging.xml",
|
|
1390
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
|
|
1391
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
|
|
1392
|
+
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
|
|
1393
|
+
"lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
|
|
1394
|
+
"microsoft.extensions.logging.8.0.0.nupkg.sha512",
|
|
1395
|
+
"microsoft.extensions.logging.nuspec",
|
|
1396
|
+
"useSharedDesignerContext.txt"
|
|
1397
|
+
]
|
|
1398
|
+
},
|
|
1399
|
+
"Microsoft.Extensions.Logging.Abstractions/8.0.0": {
|
|
1400
|
+
"sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
|
|
1401
|
+
"type": "package",
|
|
1402
|
+
"path": "microsoft.extensions.logging.abstractions/8.0.0",
|
|
1403
|
+
"files": [
|
|
1404
|
+
".nupkg.metadata",
|
|
1405
|
+
".signature.p7s",
|
|
1406
|
+
"Icon.png",
|
|
1407
|
+
"LICENSE.TXT",
|
|
1408
|
+
"PACKAGE.md",
|
|
1409
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1410
|
+
"analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
|
|
1411
|
+
"analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1412
|
+
"analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1413
|
+
"analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1414
|
+
"analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1415
|
+
"analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1416
|
+
"analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1417
|
+
"analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1418
|
+
"analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1419
|
+
"analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1420
|
+
"analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1421
|
+
"analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1422
|
+
"analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1423
|
+
"analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1424
|
+
"analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
|
|
1425
|
+
"analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1426
|
+
"analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1427
|
+
"analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1428
|
+
"analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1429
|
+
"analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1430
|
+
"analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1431
|
+
"analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1432
|
+
"analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1433
|
+
"analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1434
|
+
"analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1435
|
+
"analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1436
|
+
"analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1437
|
+
"analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1438
|
+
"analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
|
|
1439
|
+
"analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1440
|
+
"analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1441
|
+
"analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1442
|
+
"analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1443
|
+
"analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1444
|
+
"analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1445
|
+
"analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1446
|
+
"analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1447
|
+
"analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1448
|
+
"analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1449
|
+
"analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1450
|
+
"analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1451
|
+
"analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
|
|
1452
|
+
"buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
|
|
1453
|
+
"buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
|
|
1454
|
+
"buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
|
|
1455
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
|
|
1456
|
+
"buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
|
|
1457
|
+
"lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
|
|
1458
|
+
"lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
|
|
1459
|
+
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
|
|
1460
|
+
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
|
|
1461
|
+
"lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
|
|
1462
|
+
"lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
|
|
1463
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
|
|
1464
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
|
|
1465
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
|
|
1466
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
|
|
1467
|
+
"microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
|
|
1468
|
+
"microsoft.extensions.logging.abstractions.nuspec",
|
|
1469
|
+
"useSharedDesignerContext.txt"
|
|
1470
|
+
]
|
|
1471
|
+
},
|
|
1472
|
+
"Microsoft.Extensions.Logging.Configuration/8.0.0": {
|
|
1473
|
+
"sha512": "ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==",
|
|
1474
|
+
"type": "package",
|
|
1475
|
+
"path": "microsoft.extensions.logging.configuration/8.0.0",
|
|
1476
|
+
"files": [
|
|
1477
|
+
".nupkg.metadata",
|
|
1478
|
+
".signature.p7s",
|
|
1479
|
+
"Icon.png",
|
|
1480
|
+
"LICENSE.TXT",
|
|
1481
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1482
|
+
"buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets",
|
|
1483
|
+
"buildTransitive/net462/_._",
|
|
1484
|
+
"buildTransitive/net6.0/_._",
|
|
1485
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets",
|
|
1486
|
+
"lib/net462/Microsoft.Extensions.Logging.Configuration.dll",
|
|
1487
|
+
"lib/net462/Microsoft.Extensions.Logging.Configuration.xml",
|
|
1488
|
+
"lib/net6.0/Microsoft.Extensions.Logging.Configuration.dll",
|
|
1489
|
+
"lib/net6.0/Microsoft.Extensions.Logging.Configuration.xml",
|
|
1490
|
+
"lib/net7.0/Microsoft.Extensions.Logging.Configuration.dll",
|
|
1491
|
+
"lib/net7.0/Microsoft.Extensions.Logging.Configuration.xml",
|
|
1492
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll",
|
|
1493
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml",
|
|
1494
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
|
|
1495
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
|
|
1496
|
+
"microsoft.extensions.logging.configuration.8.0.0.nupkg.sha512",
|
|
1497
|
+
"microsoft.extensions.logging.configuration.nuspec",
|
|
1498
|
+
"useSharedDesignerContext.txt"
|
|
1499
|
+
]
|
|
1500
|
+
},
|
|
1501
|
+
"Microsoft.Extensions.Logging.Console/8.0.0": {
|
|
1502
|
+
"sha512": "e+48o7DztoYog+PY430lPxrM4mm3PbA6qucvQtUDDwVo4MO+ejMw7YGc/o2rnxbxj4isPxdfKFzTxvXMwAz83A==",
|
|
1503
|
+
"type": "package",
|
|
1504
|
+
"path": "microsoft.extensions.logging.console/8.0.0",
|
|
1505
|
+
"files": [
|
|
1506
|
+
".nupkg.metadata",
|
|
1507
|
+
".signature.p7s",
|
|
1508
|
+
"Icon.png",
|
|
1509
|
+
"LICENSE.TXT",
|
|
1510
|
+
"PACKAGE.md",
|
|
1511
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1512
|
+
"buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets",
|
|
1513
|
+
"buildTransitive/net462/_._",
|
|
1514
|
+
"buildTransitive/net6.0/_._",
|
|
1515
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets",
|
|
1516
|
+
"lib/net462/Microsoft.Extensions.Logging.Console.dll",
|
|
1517
|
+
"lib/net462/Microsoft.Extensions.Logging.Console.xml",
|
|
1518
|
+
"lib/net6.0/Microsoft.Extensions.Logging.Console.dll",
|
|
1519
|
+
"lib/net6.0/Microsoft.Extensions.Logging.Console.xml",
|
|
1520
|
+
"lib/net7.0/Microsoft.Extensions.Logging.Console.dll",
|
|
1521
|
+
"lib/net7.0/Microsoft.Extensions.Logging.Console.xml",
|
|
1522
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Console.dll",
|
|
1523
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Console.xml",
|
|
1524
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
|
|
1525
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
|
|
1526
|
+
"microsoft.extensions.logging.console.8.0.0.nupkg.sha512",
|
|
1527
|
+
"microsoft.extensions.logging.console.nuspec",
|
|
1528
|
+
"useSharedDesignerContext.txt"
|
|
1529
|
+
]
|
|
1530
|
+
},
|
|
1531
|
+
"Microsoft.Extensions.Logging.Debug/8.0.0": {
|
|
1532
|
+
"sha512": "dt0x21qBdudHLW/bjMJpkixv858RRr8eSomgVbU8qljOyfrfDGi1JQvpF9w8S7ziRPtRKisuWaOwFxJM82GxeA==",
|
|
1533
|
+
"type": "package",
|
|
1534
|
+
"path": "microsoft.extensions.logging.debug/8.0.0",
|
|
1535
|
+
"files": [
|
|
1536
|
+
".nupkg.metadata",
|
|
1537
|
+
".signature.p7s",
|
|
1538
|
+
"Icon.png",
|
|
1539
|
+
"LICENSE.TXT",
|
|
1540
|
+
"PACKAGE.md",
|
|
1541
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1542
|
+
"buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets",
|
|
1543
|
+
"buildTransitive/net462/_._",
|
|
1544
|
+
"buildTransitive/net6.0/_._",
|
|
1545
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets",
|
|
1546
|
+
"lib/net462/Microsoft.Extensions.Logging.Debug.dll",
|
|
1547
|
+
"lib/net462/Microsoft.Extensions.Logging.Debug.xml",
|
|
1548
|
+
"lib/net6.0/Microsoft.Extensions.Logging.Debug.dll",
|
|
1549
|
+
"lib/net6.0/Microsoft.Extensions.Logging.Debug.xml",
|
|
1550
|
+
"lib/net7.0/Microsoft.Extensions.Logging.Debug.dll",
|
|
1551
|
+
"lib/net7.0/Microsoft.Extensions.Logging.Debug.xml",
|
|
1552
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Debug.dll",
|
|
1553
|
+
"lib/net8.0/Microsoft.Extensions.Logging.Debug.xml",
|
|
1554
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
|
|
1555
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
|
|
1556
|
+
"microsoft.extensions.logging.debug.8.0.0.nupkg.sha512",
|
|
1557
|
+
"microsoft.extensions.logging.debug.nuspec",
|
|
1558
|
+
"useSharedDesignerContext.txt"
|
|
1559
|
+
]
|
|
1560
|
+
},
|
|
1561
|
+
"Microsoft.Extensions.Logging.EventLog/8.0.0": {
|
|
1562
|
+
"sha512": "3X9D3sl7EmOu7vQp5MJrmIJBl5XSdOhZPYXUeFfYa6Nnm9+tok8x3t3IVPLhm7UJtPOU61ohFchw8rNm9tIYOQ==",
|
|
1563
|
+
"type": "package",
|
|
1564
|
+
"path": "microsoft.extensions.logging.eventlog/8.0.0",
|
|
1565
|
+
"files": [
|
|
1566
|
+
".nupkg.metadata",
|
|
1567
|
+
".signature.p7s",
|
|
1568
|
+
"Icon.png",
|
|
1569
|
+
"LICENSE.TXT",
|
|
1570
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1571
|
+
"buildTransitive/net461/Microsoft.Extensions.Logging.EventLog.targets",
|
|
1572
|
+
"buildTransitive/net462/_._",
|
|
1573
|
+
"buildTransitive/net6.0/_._",
|
|
1574
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets",
|
|
1575
|
+
"lib/net462/Microsoft.Extensions.Logging.EventLog.dll",
|
|
1576
|
+
"lib/net462/Microsoft.Extensions.Logging.EventLog.xml",
|
|
1577
|
+
"lib/net6.0/Microsoft.Extensions.Logging.EventLog.dll",
|
|
1578
|
+
"lib/net6.0/Microsoft.Extensions.Logging.EventLog.xml",
|
|
1579
|
+
"lib/net7.0/Microsoft.Extensions.Logging.EventLog.dll",
|
|
1580
|
+
"lib/net7.0/Microsoft.Extensions.Logging.EventLog.xml",
|
|
1581
|
+
"lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll",
|
|
1582
|
+
"lib/net8.0/Microsoft.Extensions.Logging.EventLog.xml",
|
|
1583
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
|
|
1584
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
|
|
1585
|
+
"microsoft.extensions.logging.eventlog.8.0.0.nupkg.sha512",
|
|
1586
|
+
"microsoft.extensions.logging.eventlog.nuspec",
|
|
1587
|
+
"useSharedDesignerContext.txt"
|
|
1588
|
+
]
|
|
1589
|
+
},
|
|
1590
|
+
"Microsoft.Extensions.Logging.EventSource/8.0.0": {
|
|
1591
|
+
"sha512": "oKcPMrw+luz2DUAKhwFXrmFikZWnyc8l2RKoQwqU3KIZZjcfoJE0zRHAnqATfhRZhtcbjl/QkiY2Xjxp0xu+6w==",
|
|
1592
|
+
"type": "package",
|
|
1593
|
+
"path": "microsoft.extensions.logging.eventsource/8.0.0",
|
|
1594
|
+
"files": [
|
|
1595
|
+
".nupkg.metadata",
|
|
1596
|
+
".signature.p7s",
|
|
1597
|
+
"Icon.png",
|
|
1598
|
+
"LICENSE.TXT",
|
|
1599
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1600
|
+
"buildTransitive/net461/Microsoft.Extensions.Logging.EventSource.targets",
|
|
1601
|
+
"buildTransitive/net462/_._",
|
|
1602
|
+
"buildTransitive/net6.0/_._",
|
|
1603
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets",
|
|
1604
|
+
"lib/net462/Microsoft.Extensions.Logging.EventSource.dll",
|
|
1605
|
+
"lib/net462/Microsoft.Extensions.Logging.EventSource.xml",
|
|
1606
|
+
"lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll",
|
|
1607
|
+
"lib/net6.0/Microsoft.Extensions.Logging.EventSource.xml",
|
|
1608
|
+
"lib/net7.0/Microsoft.Extensions.Logging.EventSource.dll",
|
|
1609
|
+
"lib/net7.0/Microsoft.Extensions.Logging.EventSource.xml",
|
|
1610
|
+
"lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll",
|
|
1611
|
+
"lib/net8.0/Microsoft.Extensions.Logging.EventSource.xml",
|
|
1612
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
|
|
1613
|
+
"lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
|
|
1614
|
+
"microsoft.extensions.logging.eventsource.8.0.0.nupkg.sha512",
|
|
1615
|
+
"microsoft.extensions.logging.eventsource.nuspec",
|
|
1616
|
+
"useSharedDesignerContext.txt"
|
|
1617
|
+
]
|
|
1618
|
+
},
|
|
1619
|
+
"Microsoft.Extensions.Options/8.0.0": {
|
|
1620
|
+
"sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
|
|
1621
|
+
"type": "package",
|
|
1622
|
+
"path": "microsoft.extensions.options/8.0.0",
|
|
1623
|
+
"files": [
|
|
1624
|
+
".nupkg.metadata",
|
|
1625
|
+
".signature.p7s",
|
|
1626
|
+
"Icon.png",
|
|
1627
|
+
"LICENSE.TXT",
|
|
1628
|
+
"PACKAGE.md",
|
|
1629
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1630
|
+
"analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
|
|
1631
|
+
"analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
|
|
1632
|
+
"analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
|
|
1633
|
+
"analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
|
|
1634
|
+
"analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
|
|
1635
|
+
"analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
|
|
1636
|
+
"analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
|
|
1637
|
+
"analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
|
|
1638
|
+
"analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
|
|
1639
|
+
"analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
|
|
1640
|
+
"analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
|
|
1641
|
+
"analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
|
|
1642
|
+
"analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
|
|
1643
|
+
"analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
|
|
1644
|
+
"buildTransitive/net461/Microsoft.Extensions.Options.targets",
|
|
1645
|
+
"buildTransitive/net462/Microsoft.Extensions.Options.targets",
|
|
1646
|
+
"buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
|
|
1647
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
|
|
1648
|
+
"buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
|
|
1649
|
+
"lib/net462/Microsoft.Extensions.Options.dll",
|
|
1650
|
+
"lib/net462/Microsoft.Extensions.Options.xml",
|
|
1651
|
+
"lib/net6.0/Microsoft.Extensions.Options.dll",
|
|
1652
|
+
"lib/net6.0/Microsoft.Extensions.Options.xml",
|
|
1653
|
+
"lib/net7.0/Microsoft.Extensions.Options.dll",
|
|
1654
|
+
"lib/net7.0/Microsoft.Extensions.Options.xml",
|
|
1655
|
+
"lib/net8.0/Microsoft.Extensions.Options.dll",
|
|
1656
|
+
"lib/net8.0/Microsoft.Extensions.Options.xml",
|
|
1657
|
+
"lib/netstandard2.0/Microsoft.Extensions.Options.dll",
|
|
1658
|
+
"lib/netstandard2.0/Microsoft.Extensions.Options.xml",
|
|
1659
|
+
"lib/netstandard2.1/Microsoft.Extensions.Options.dll",
|
|
1660
|
+
"lib/netstandard2.1/Microsoft.Extensions.Options.xml",
|
|
1661
|
+
"microsoft.extensions.options.8.0.0.nupkg.sha512",
|
|
1662
|
+
"microsoft.extensions.options.nuspec",
|
|
1663
|
+
"useSharedDesignerContext.txt"
|
|
1664
|
+
]
|
|
1665
|
+
},
|
|
1666
|
+
"Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
|
|
1667
|
+
"sha512": "0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==",
|
|
1668
|
+
"type": "package",
|
|
1669
|
+
"path": "microsoft.extensions.options.configurationextensions/8.0.0",
|
|
1670
|
+
"files": [
|
|
1671
|
+
".nupkg.metadata",
|
|
1672
|
+
".signature.p7s",
|
|
1673
|
+
"Icon.png",
|
|
1674
|
+
"LICENSE.TXT",
|
|
1675
|
+
"PACKAGE.md",
|
|
1676
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1677
|
+
"buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
|
|
1678
|
+
"buildTransitive/net462/_._",
|
|
1679
|
+
"buildTransitive/net6.0/_._",
|
|
1680
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
|
|
1681
|
+
"lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
|
|
1682
|
+
"lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
|
|
1683
|
+
"lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
|
|
1684
|
+
"lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
|
|
1685
|
+
"lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
|
|
1686
|
+
"lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
|
|
1687
|
+
"lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
|
|
1688
|
+
"lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
|
|
1689
|
+
"lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
|
|
1690
|
+
"lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
|
|
1691
|
+
"microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512",
|
|
1692
|
+
"microsoft.extensions.options.configurationextensions.nuspec",
|
|
1693
|
+
"useSharedDesignerContext.txt"
|
|
1694
|
+
]
|
|
1695
|
+
},
|
|
1696
|
+
"Microsoft.Extensions.Primitives/8.0.0": {
|
|
1697
|
+
"sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
|
|
1698
|
+
"type": "package",
|
|
1699
|
+
"path": "microsoft.extensions.primitives/8.0.0",
|
|
1700
|
+
"files": [
|
|
1701
|
+
".nupkg.metadata",
|
|
1702
|
+
".signature.p7s",
|
|
1703
|
+
"Icon.png",
|
|
1704
|
+
"LICENSE.TXT",
|
|
1705
|
+
"PACKAGE.md",
|
|
1706
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1707
|
+
"buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
|
|
1708
|
+
"buildTransitive/net462/_._",
|
|
1709
|
+
"buildTransitive/net6.0/_._",
|
|
1710
|
+
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
|
|
1711
|
+
"lib/net462/Microsoft.Extensions.Primitives.dll",
|
|
1712
|
+
"lib/net462/Microsoft.Extensions.Primitives.xml",
|
|
1713
|
+
"lib/net6.0/Microsoft.Extensions.Primitives.dll",
|
|
1714
|
+
"lib/net6.0/Microsoft.Extensions.Primitives.xml",
|
|
1715
|
+
"lib/net7.0/Microsoft.Extensions.Primitives.dll",
|
|
1716
|
+
"lib/net7.0/Microsoft.Extensions.Primitives.xml",
|
|
1717
|
+
"lib/net8.0/Microsoft.Extensions.Primitives.dll",
|
|
1718
|
+
"lib/net8.0/Microsoft.Extensions.Primitives.xml",
|
|
1719
|
+
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
|
|
1720
|
+
"lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
|
|
1721
|
+
"microsoft.extensions.primitives.8.0.0.nupkg.sha512",
|
|
1722
|
+
"microsoft.extensions.primitives.nuspec",
|
|
1723
|
+
"useSharedDesignerContext.txt"
|
|
1724
|
+
]
|
|
1725
|
+
},
|
|
1726
|
+
"Microsoft.IdentityModel.Abstractions/8.3.1": {
|
|
1727
|
+
"sha512": "oXYKRcTS0DTIB5vZenGy9oceD8awhjnXFFabc/IWBwluMA03SGvazCFyUIQ2mJOIOSf9lLyM971nbTj9qZgEJg==",
|
|
1728
|
+
"type": "package",
|
|
1729
|
+
"path": "microsoft.identitymodel.abstractions/8.3.1",
|
|
1730
|
+
"files": [
|
|
1731
|
+
".nupkg.metadata",
|
|
1732
|
+
".signature.p7s",
|
|
1733
|
+
"README.md",
|
|
1734
|
+
"lib/net462/Microsoft.IdentityModel.Abstractions.dll",
|
|
1735
|
+
"lib/net462/Microsoft.IdentityModel.Abstractions.xml",
|
|
1736
|
+
"lib/net472/Microsoft.IdentityModel.Abstractions.dll",
|
|
1737
|
+
"lib/net472/Microsoft.IdentityModel.Abstractions.xml",
|
|
1738
|
+
"lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
|
|
1739
|
+
"lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
|
|
1740
|
+
"lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
|
|
1741
|
+
"lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
|
|
1742
|
+
"lib/net9.0/Microsoft.IdentityModel.Abstractions.dll",
|
|
1743
|
+
"lib/net9.0/Microsoft.IdentityModel.Abstractions.xml",
|
|
1744
|
+
"lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
|
|
1745
|
+
"lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
|
|
1746
|
+
"microsoft.identitymodel.abstractions.8.3.1.nupkg.sha512",
|
|
1747
|
+
"microsoft.identitymodel.abstractions.nuspec"
|
|
1748
|
+
]
|
|
1749
|
+
},
|
|
1750
|
+
"Microsoft.IdentityModel.JsonWebTokens/8.3.1": {
|
|
1751
|
+
"sha512": "cA622rrXYdaO7inNZ8KY5leZpP6889wT+gHPgvy62PYlAITyxF9PxP5u+ecNBOsPx2PagBH7ZNr39yU/MOPn+w==",
|
|
1752
|
+
"type": "package",
|
|
1753
|
+
"path": "microsoft.identitymodel.jsonwebtokens/8.3.1",
|
|
1754
|
+
"files": [
|
|
1755
|
+
".nupkg.metadata",
|
|
1756
|
+
".signature.p7s",
|
|
1757
|
+
"README.md",
|
|
1758
|
+
"lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
|
|
1759
|
+
"lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
|
|
1760
|
+
"lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
|
|
1761
|
+
"lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
|
|
1762
|
+
"lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
|
|
1763
|
+
"lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
|
|
1764
|
+
"lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
|
|
1765
|
+
"lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
|
|
1766
|
+
"lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll",
|
|
1767
|
+
"lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml",
|
|
1768
|
+
"lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
|
|
1769
|
+
"lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
|
|
1770
|
+
"microsoft.identitymodel.jsonwebtokens.8.3.1.nupkg.sha512",
|
|
1771
|
+
"microsoft.identitymodel.jsonwebtokens.nuspec"
|
|
1772
|
+
]
|
|
1773
|
+
},
|
|
1774
|
+
"Microsoft.IdentityModel.Logging/8.3.1": {
|
|
1775
|
+
"sha512": "XCwbK7ErgZdrwl4ph+i8X5SCGwAepBFbsNIEceozGzrBFVvZbKKJE1WQOft9QyglP4me+DECdVVL8UnI6OO+sg==",
|
|
1776
|
+
"type": "package",
|
|
1777
|
+
"path": "microsoft.identitymodel.logging/8.3.1",
|
|
1778
|
+
"files": [
|
|
1779
|
+
".nupkg.metadata",
|
|
1780
|
+
".signature.p7s",
|
|
1781
|
+
"README.md",
|
|
1782
|
+
"lib/net462/Microsoft.IdentityModel.Logging.dll",
|
|
1783
|
+
"lib/net462/Microsoft.IdentityModel.Logging.xml",
|
|
1784
|
+
"lib/net472/Microsoft.IdentityModel.Logging.dll",
|
|
1785
|
+
"lib/net472/Microsoft.IdentityModel.Logging.xml",
|
|
1786
|
+
"lib/net6.0/Microsoft.IdentityModel.Logging.dll",
|
|
1787
|
+
"lib/net6.0/Microsoft.IdentityModel.Logging.xml",
|
|
1788
|
+
"lib/net8.0/Microsoft.IdentityModel.Logging.dll",
|
|
1789
|
+
"lib/net8.0/Microsoft.IdentityModel.Logging.xml",
|
|
1790
|
+
"lib/net9.0/Microsoft.IdentityModel.Logging.dll",
|
|
1791
|
+
"lib/net9.0/Microsoft.IdentityModel.Logging.xml",
|
|
1792
|
+
"lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
|
|
1793
|
+
"lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
|
|
1794
|
+
"microsoft.identitymodel.logging.8.3.1.nupkg.sha512",
|
|
1795
|
+
"microsoft.identitymodel.logging.nuspec"
|
|
1796
|
+
]
|
|
1797
|
+
},
|
|
1798
|
+
"Microsoft.IdentityModel.Tokens/8.3.1": {
|
|
1799
|
+
"sha512": "77GXREJzIDiKAc/RR8YE267bwzrxM4cjMRCzMQa0Xk1MUUdjx/JwjDJpUh00vT4oxcX5rjsMP0KLd8YjgR3N3w==",
|
|
1800
|
+
"type": "package",
|
|
1801
|
+
"path": "microsoft.identitymodel.tokens/8.3.1",
|
|
1802
|
+
"files": [
|
|
1803
|
+
".nupkg.metadata",
|
|
1804
|
+
".signature.p7s",
|
|
1805
|
+
"README.md",
|
|
1806
|
+
"lib/net462/Microsoft.IdentityModel.Tokens.dll",
|
|
1807
|
+
"lib/net462/Microsoft.IdentityModel.Tokens.xml",
|
|
1808
|
+
"lib/net472/Microsoft.IdentityModel.Tokens.dll",
|
|
1809
|
+
"lib/net472/Microsoft.IdentityModel.Tokens.xml",
|
|
1810
|
+
"lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
|
|
1811
|
+
"lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
|
|
1812
|
+
"lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
|
|
1813
|
+
"lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
|
|
1814
|
+
"lib/net9.0/Microsoft.IdentityModel.Tokens.dll",
|
|
1815
|
+
"lib/net9.0/Microsoft.IdentityModel.Tokens.xml",
|
|
1816
|
+
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
|
|
1817
|
+
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
|
|
1818
|
+
"microsoft.identitymodel.tokens.8.3.1.nupkg.sha512",
|
|
1819
|
+
"microsoft.identitymodel.tokens.nuspec"
|
|
1820
|
+
]
|
|
1821
|
+
},
|
|
1822
|
+
"MongoDB.Bson/3.1.0": {
|
|
1823
|
+
"sha512": "3dhaZhz18B5vUoEP13o2j8A6zQfkHdZhwBvLZEjDJum4BTLLv1/Z8bt25UQEtpqvYwLgde4R6ekWZ7XAYUMxuw==",
|
|
1824
|
+
"type": "package",
|
|
1825
|
+
"path": "mongodb.bson/3.1.0",
|
|
1826
|
+
"files": [
|
|
1827
|
+
".nupkg.metadata",
|
|
1828
|
+
".signature.p7s",
|
|
1829
|
+
"README.md",
|
|
1830
|
+
"lib/net472/MongoDB.Bson.dll",
|
|
1831
|
+
"lib/net472/MongoDB.Bson.xml",
|
|
1832
|
+
"lib/net6.0/MongoDB.Bson.dll",
|
|
1833
|
+
"lib/net6.0/MongoDB.Bson.xml",
|
|
1834
|
+
"lib/netstandard2.1/MongoDB.Bson.dll",
|
|
1835
|
+
"lib/netstandard2.1/MongoDB.Bson.xml",
|
|
1836
|
+
"mongodb.bson.3.1.0.nupkg.sha512",
|
|
1837
|
+
"mongodb.bson.nuspec",
|
|
1838
|
+
"packageIcon.png"
|
|
1839
|
+
]
|
|
1840
|
+
},
|
|
1841
|
+
"System.Diagnostics.DiagnosticSource/8.0.0": {
|
|
1842
|
+
"sha512": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==",
|
|
1843
|
+
"type": "package",
|
|
1844
|
+
"path": "system.diagnostics.diagnosticsource/8.0.0",
|
|
1845
|
+
"files": [
|
|
1846
|
+
".nupkg.metadata",
|
|
1847
|
+
".signature.p7s",
|
|
1848
|
+
"Icon.png",
|
|
1849
|
+
"LICENSE.TXT",
|
|
1850
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1851
|
+
"buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
|
|
1852
|
+
"buildTransitive/net462/_._",
|
|
1853
|
+
"buildTransitive/net6.0/_._",
|
|
1854
|
+
"buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
|
|
1855
|
+
"lib/net462/System.Diagnostics.DiagnosticSource.dll",
|
|
1856
|
+
"lib/net462/System.Diagnostics.DiagnosticSource.xml",
|
|
1857
|
+
"lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
|
|
1858
|
+
"lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
|
|
1859
|
+
"lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
|
|
1860
|
+
"lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
|
|
1861
|
+
"lib/net8.0/System.Diagnostics.DiagnosticSource.dll",
|
|
1862
|
+
"lib/net8.0/System.Diagnostics.DiagnosticSource.xml",
|
|
1863
|
+
"lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
|
|
1864
|
+
"lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
|
|
1865
|
+
"system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512",
|
|
1866
|
+
"system.diagnostics.diagnosticsource.nuspec",
|
|
1867
|
+
"useSharedDesignerContext.txt"
|
|
1868
|
+
]
|
|
1869
|
+
},
|
|
1870
|
+
"System.Diagnostics.EventLog/8.0.0": {
|
|
1871
|
+
"sha512": "fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
|
|
1872
|
+
"type": "package",
|
|
1873
|
+
"path": "system.diagnostics.eventlog/8.0.0",
|
|
1874
|
+
"files": [
|
|
1875
|
+
".nupkg.metadata",
|
|
1876
|
+
".signature.p7s",
|
|
1877
|
+
"Icon.png",
|
|
1878
|
+
"LICENSE.TXT",
|
|
1879
|
+
"PACKAGE.md",
|
|
1880
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1881
|
+
"buildTransitive/net461/System.Diagnostics.EventLog.targets",
|
|
1882
|
+
"buildTransitive/net462/_._",
|
|
1883
|
+
"buildTransitive/net6.0/_._",
|
|
1884
|
+
"buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
|
|
1885
|
+
"lib/net462/System.Diagnostics.EventLog.dll",
|
|
1886
|
+
"lib/net462/System.Diagnostics.EventLog.xml",
|
|
1887
|
+
"lib/net6.0/System.Diagnostics.EventLog.dll",
|
|
1888
|
+
"lib/net6.0/System.Diagnostics.EventLog.xml",
|
|
1889
|
+
"lib/net7.0/System.Diagnostics.EventLog.dll",
|
|
1890
|
+
"lib/net7.0/System.Diagnostics.EventLog.xml",
|
|
1891
|
+
"lib/net8.0/System.Diagnostics.EventLog.dll",
|
|
1892
|
+
"lib/net8.0/System.Diagnostics.EventLog.xml",
|
|
1893
|
+
"lib/netstandard2.0/System.Diagnostics.EventLog.dll",
|
|
1894
|
+
"lib/netstandard2.0/System.Diagnostics.EventLog.xml",
|
|
1895
|
+
"runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
|
|
1896
|
+
"runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
|
|
1897
|
+
"runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
|
|
1898
|
+
"runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll",
|
|
1899
|
+
"runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll",
|
|
1900
|
+
"runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml",
|
|
1901
|
+
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll",
|
|
1902
|
+
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll",
|
|
1903
|
+
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml",
|
|
1904
|
+
"system.diagnostics.eventlog.8.0.0.nupkg.sha512",
|
|
1905
|
+
"system.diagnostics.eventlog.nuspec",
|
|
1906
|
+
"useSharedDesignerContext.txt"
|
|
1907
|
+
]
|
|
1908
|
+
},
|
|
1909
|
+
"System.IdentityModel.Tokens.Jwt/8.3.1": {
|
|
1910
|
+
"sha512": "SxdCv+SmnKOhUvryKvrpWJnkuVHj3hU8pUwj7R8zthi73TlBUlMyavon9qfuJsjnqY+L7jusp3Zo0fWFX6mwtw==",
|
|
1911
|
+
"type": "package",
|
|
1912
|
+
"path": "system.identitymodel.tokens.jwt/8.3.1",
|
|
1913
|
+
"files": [
|
|
1914
|
+
".nupkg.metadata",
|
|
1915
|
+
".signature.p7s",
|
|
1916
|
+
"README.md",
|
|
1917
|
+
"lib/net462/System.IdentityModel.Tokens.Jwt.dll",
|
|
1918
|
+
"lib/net462/System.IdentityModel.Tokens.Jwt.xml",
|
|
1919
|
+
"lib/net472/System.IdentityModel.Tokens.Jwt.dll",
|
|
1920
|
+
"lib/net472/System.IdentityModel.Tokens.Jwt.xml",
|
|
1921
|
+
"lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
|
|
1922
|
+
"lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
|
|
1923
|
+
"lib/net8.0/System.IdentityModel.Tokens.Jwt.dll",
|
|
1924
|
+
"lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
|
|
1925
|
+
"lib/net9.0/System.IdentityModel.Tokens.Jwt.dll",
|
|
1926
|
+
"lib/net9.0/System.IdentityModel.Tokens.Jwt.xml",
|
|
1927
|
+
"lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
|
|
1928
|
+
"lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
|
|
1929
|
+
"system.identitymodel.tokens.jwt.8.3.1.nupkg.sha512",
|
|
1930
|
+
"system.identitymodel.tokens.jwt.nuspec"
|
|
1931
|
+
]
|
|
1932
|
+
},
|
|
1933
|
+
"System.Memory/4.5.5": {
|
|
1934
|
+
"sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
|
|
1935
|
+
"type": "package",
|
|
1936
|
+
"path": "system.memory/4.5.5",
|
|
1937
|
+
"files": [
|
|
1938
|
+
".nupkg.metadata",
|
|
1939
|
+
".signature.p7s",
|
|
1940
|
+
"LICENSE.TXT",
|
|
1941
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1942
|
+
"lib/net461/System.Memory.dll",
|
|
1943
|
+
"lib/net461/System.Memory.xml",
|
|
1944
|
+
"lib/netcoreapp2.1/_._",
|
|
1945
|
+
"lib/netstandard1.1/System.Memory.dll",
|
|
1946
|
+
"lib/netstandard1.1/System.Memory.xml",
|
|
1947
|
+
"lib/netstandard2.0/System.Memory.dll",
|
|
1948
|
+
"lib/netstandard2.0/System.Memory.xml",
|
|
1949
|
+
"ref/netcoreapp2.1/_._",
|
|
1950
|
+
"system.memory.4.5.5.nupkg.sha512",
|
|
1951
|
+
"system.memory.nuspec",
|
|
1952
|
+
"useSharedDesignerContext.txt",
|
|
1953
|
+
"version.txt"
|
|
1954
|
+
]
|
|
1955
|
+
},
|
|
1956
|
+
"System.Runtime.CompilerServices.Unsafe/5.0.0": {
|
|
1957
|
+
"sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
|
|
1958
|
+
"type": "package",
|
|
1959
|
+
"path": "system.runtime.compilerservices.unsafe/5.0.0",
|
|
1960
|
+
"files": [
|
|
1961
|
+
".nupkg.metadata",
|
|
1962
|
+
".signature.p7s",
|
|
1963
|
+
"Icon.png",
|
|
1964
|
+
"LICENSE.TXT",
|
|
1965
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1966
|
+
"lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
|
|
1967
|
+
"lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
|
|
1968
|
+
"lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
|
|
1969
|
+
"lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
|
|
1970
|
+
"lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
|
|
1971
|
+
"lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
|
|
1972
|
+
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
|
|
1973
|
+
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
|
|
1974
|
+
"ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
|
|
1975
|
+
"ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
|
|
1976
|
+
"ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
|
|
1977
|
+
"ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
|
|
1978
|
+
"ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
|
|
1979
|
+
"ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
|
|
1980
|
+
"ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
|
|
1981
|
+
"ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
|
|
1982
|
+
"system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
|
|
1983
|
+
"system.runtime.compilerservices.unsafe.nuspec",
|
|
1984
|
+
"useSharedDesignerContext.txt",
|
|
1985
|
+
"version.txt"
|
|
1986
|
+
]
|
|
1987
|
+
},
|
|
1988
|
+
"System.Text.Encodings.Web/8.0.0": {
|
|
1989
|
+
"sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
|
|
1990
|
+
"type": "package",
|
|
1991
|
+
"path": "system.text.encodings.web/8.0.0",
|
|
1992
|
+
"files": [
|
|
1993
|
+
".nupkg.metadata",
|
|
1994
|
+
".signature.p7s",
|
|
1995
|
+
"Icon.png",
|
|
1996
|
+
"LICENSE.TXT",
|
|
1997
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
1998
|
+
"buildTransitive/net461/System.Text.Encodings.Web.targets",
|
|
1999
|
+
"buildTransitive/net462/_._",
|
|
2000
|
+
"buildTransitive/net6.0/_._",
|
|
2001
|
+
"buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
|
|
2002
|
+
"lib/net462/System.Text.Encodings.Web.dll",
|
|
2003
|
+
"lib/net462/System.Text.Encodings.Web.xml",
|
|
2004
|
+
"lib/net6.0/System.Text.Encodings.Web.dll",
|
|
2005
|
+
"lib/net6.0/System.Text.Encodings.Web.xml",
|
|
2006
|
+
"lib/net7.0/System.Text.Encodings.Web.dll",
|
|
2007
|
+
"lib/net7.0/System.Text.Encodings.Web.xml",
|
|
2008
|
+
"lib/net8.0/System.Text.Encodings.Web.dll",
|
|
2009
|
+
"lib/net8.0/System.Text.Encodings.Web.xml",
|
|
2010
|
+
"lib/netstandard2.0/System.Text.Encodings.Web.dll",
|
|
2011
|
+
"lib/netstandard2.0/System.Text.Encodings.Web.xml",
|
|
2012
|
+
"runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
|
|
2013
|
+
"runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
|
|
2014
|
+
"runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
|
|
2015
|
+
"runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
|
|
2016
|
+
"runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
|
|
2017
|
+
"runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
|
|
2018
|
+
"system.text.encodings.web.8.0.0.nupkg.sha512",
|
|
2019
|
+
"system.text.encodings.web.nuspec",
|
|
2020
|
+
"useSharedDesignerContext.txt"
|
|
2021
|
+
]
|
|
2022
|
+
},
|
|
2023
|
+
"System.Text.Json/8.0.0": {
|
|
2024
|
+
"sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
|
|
2025
|
+
"type": "package",
|
|
2026
|
+
"path": "system.text.json/8.0.0",
|
|
2027
|
+
"files": [
|
|
2028
|
+
".nupkg.metadata",
|
|
2029
|
+
".signature.p7s",
|
|
2030
|
+
"Icon.png",
|
|
2031
|
+
"LICENSE.TXT",
|
|
2032
|
+
"PACKAGE.md",
|
|
2033
|
+
"THIRD-PARTY-NOTICES.TXT",
|
|
2034
|
+
"analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
|
|
2035
|
+
"analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
|
|
2036
|
+
"analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
|
|
2037
|
+
"analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
|
|
2038
|
+
"analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
|
|
2039
|
+
"analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
|
|
2040
|
+
"analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
|
|
2041
|
+
"analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
|
|
2042
|
+
"analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
|
|
2043
|
+
"analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
|
|
2044
|
+
"analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
|
|
2045
|
+
"analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
|
|
2046
|
+
"analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
|
|
2047
|
+
"analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
|
|
2048
|
+
"analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
|
|
2049
|
+
"analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
|
|
2050
|
+
"analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
|
|
2051
|
+
"analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
|
|
2052
|
+
"analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
|
|
2053
|
+
"analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
|
|
2054
|
+
"analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
|
|
2055
|
+
"analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
|
|
2056
|
+
"analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
|
|
2057
|
+
"analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
|
|
2058
|
+
"analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
|
|
2059
|
+
"analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
|
|
2060
|
+
"analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
|
|
2061
|
+
"analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
|
|
2062
|
+
"analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
|
|
2063
|
+
"analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
|
|
2064
|
+
"analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
|
|
2065
|
+
"analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
|
|
2066
|
+
"analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
|
|
2067
|
+
"analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
|
|
2068
|
+
"analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
|
|
2069
|
+
"analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
|
|
2070
|
+
"analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
|
|
2071
|
+
"analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
|
|
2072
|
+
"analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
|
|
2073
|
+
"analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
|
|
2074
|
+
"analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
|
|
2075
|
+
"analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
|
|
2076
|
+
"buildTransitive/net461/System.Text.Json.targets",
|
|
2077
|
+
"buildTransitive/net462/System.Text.Json.targets",
|
|
2078
|
+
"buildTransitive/net6.0/System.Text.Json.targets",
|
|
2079
|
+
"buildTransitive/netcoreapp2.0/System.Text.Json.targets",
|
|
2080
|
+
"buildTransitive/netstandard2.0/System.Text.Json.targets",
|
|
2081
|
+
"lib/net462/System.Text.Json.dll",
|
|
2082
|
+
"lib/net462/System.Text.Json.xml",
|
|
2083
|
+
"lib/net6.0/System.Text.Json.dll",
|
|
2084
|
+
"lib/net6.0/System.Text.Json.xml",
|
|
2085
|
+
"lib/net7.0/System.Text.Json.dll",
|
|
2086
|
+
"lib/net7.0/System.Text.Json.xml",
|
|
2087
|
+
"lib/net8.0/System.Text.Json.dll",
|
|
2088
|
+
"lib/net8.0/System.Text.Json.xml",
|
|
2089
|
+
"lib/netstandard2.0/System.Text.Json.dll",
|
|
2090
|
+
"lib/netstandard2.0/System.Text.Json.xml",
|
|
2091
|
+
"system.text.json.8.0.0.nupkg.sha512",
|
|
2092
|
+
"system.text.json.nuspec",
|
|
2093
|
+
"useSharedDesignerContext.txt"
|
|
2094
|
+
]
|
|
2095
|
+
}
|
|
2096
|
+
},
|
|
2097
|
+
"projectFileDependencyGroups": {
|
|
2098
|
+
"net8.0": [
|
|
2099
|
+
"Microsoft.Extensions.Hosting >= 8.0.0",
|
|
2100
|
+
"MongoDB.Bson >= 3.1.0",
|
|
2101
|
+
"System.IdentityModel.Tokens.Jwt >= 8.3.1"
|
|
2102
|
+
]
|
|
2103
|
+
},
|
|
2104
|
+
"packageFolders": {
|
|
2105
|
+
"C:\\Users\\Truong\\.nuget\\packages\\": {}
|
|
2106
|
+
},
|
|
2107
|
+
"project": {
|
|
2108
|
+
"version": "1.0.0",
|
|
2109
|
+
"restore": {
|
|
2110
|
+
"projectUniqueName": "D:\\@Projects\\@@ Blueprint\\NetWebAPIBlueprint\\Blueprint\\BlueprintTemplate\\Blueprint.Core\\Blueprint.Core.csproj",
|
|
2111
|
+
"projectName": "Blueprint.Core",
|
|
2112
|
+
"projectPath": "D:\\@Projects\\@@ Blueprint\\NetWebAPIBlueprint\\Blueprint\\BlueprintTemplate\\Blueprint.Core\\Blueprint.Core.csproj",
|
|
2113
|
+
"packagesPath": "C:\\Users\\Truong\\.nuget\\packages\\",
|
|
2114
|
+
"outputPath": "D:\\@Projects\\@@ Blueprint\\NetWebAPIBlueprint\\Blueprint\\BlueprintTemplate\\Blueprint.Core\\obj\\",
|
|
2115
|
+
"projectStyle": "PackageReference",
|
|
2116
|
+
"configFilePaths": [
|
|
2117
|
+
"C:\\Users\\Truong\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
2118
|
+
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
2119
|
+
],
|
|
2120
|
+
"originalTargetFrameworks": [
|
|
2121
|
+
"net8.0"
|
|
2122
|
+
],
|
|
2123
|
+
"sources": {
|
|
2124
|
+
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
2125
|
+
"C:\\Program Files\\dotnet\\library-packs": {},
|
|
2126
|
+
"https://api.nuget.org/v3/index.json": {}
|
|
2127
|
+
},
|
|
2128
|
+
"frameworks": {
|
|
2129
|
+
"net8.0": {
|
|
2130
|
+
"targetAlias": "net8.0",
|
|
2131
|
+
"projectReferences": {}
|
|
2132
|
+
}
|
|
2133
|
+
},
|
|
2134
|
+
"warningProperties": {
|
|
2135
|
+
"warnAsError": [
|
|
2136
|
+
"NU1605"
|
|
2137
|
+
]
|
|
2138
|
+
},
|
|
2139
|
+
"restoreAuditProperties": {
|
|
2140
|
+
"enableAudit": "true",
|
|
2141
|
+
"auditLevel": "low",
|
|
2142
|
+
"auditMode": "direct"
|
|
2143
|
+
}
|
|
2144
|
+
},
|
|
2145
|
+
"frameworks": {
|
|
2146
|
+
"net8.0": {
|
|
2147
|
+
"targetAlias": "net8.0",
|
|
2148
|
+
"dependencies": {
|
|
2149
|
+
"Microsoft.Extensions.Hosting": {
|
|
2150
|
+
"target": "Package",
|
|
2151
|
+
"version": "[8.0.0, )"
|
|
2152
|
+
},
|
|
2153
|
+
"MongoDB.Bson": {
|
|
2154
|
+
"target": "Package",
|
|
2155
|
+
"version": "[3.1.0, )"
|
|
2156
|
+
},
|
|
2157
|
+
"System.IdentityModel.Tokens.Jwt": {
|
|
2158
|
+
"target": "Package",
|
|
2159
|
+
"version": "[8.3.1, )"
|
|
2160
|
+
}
|
|
2161
|
+
},
|
|
2162
|
+
"imports": [
|
|
2163
|
+
"net461",
|
|
2164
|
+
"net462",
|
|
2165
|
+
"net47",
|
|
2166
|
+
"net471",
|
|
2167
|
+
"net472",
|
|
2168
|
+
"net48",
|
|
2169
|
+
"net481"
|
|
2170
|
+
],
|
|
2171
|
+
"assetTargetFallback": true,
|
|
2172
|
+
"warn": true,
|
|
2173
|
+
"frameworkReferences": {
|
|
2174
|
+
"Microsoft.NETCore.App": {
|
|
2175
|
+
"privateAssets": "all"
|
|
2176
|
+
}
|
|
2177
|
+
},
|
|
2178
|
+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.302/PortableRuntimeIdentifierGraph.json"
|
|
2179
|
+
}
|
|
2180
|
+
}
|
|
2181
|
+
}
|
|
2182
|
+
}
|