feat(auth): upgrade all dependencies to latest versions
This commit is contained in:
parent
425bf3b243
commit
d52b7c9a46
@ -24,22 +24,22 @@ Edit: `src/Fengling.AuthService/Fengling.AuthService.csproj`
|
|||||||
```xml
|
```xml
|
||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="OpenIddict.AspNetCore" Version="5.0.2" />
|
<PackageReference Include="OpenIddict.AspNetCore" Version="7.2.0" />
|
||||||
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.0.2" />
|
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="7.2.0" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.0" />
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.1" />
|
||||||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.0" />
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.3" />
|
||||||
<PackageReference Include="Serilog.AspNetCore" Version="8.0.0" />
|
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
|
||||||
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
|
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
|
||||||
<PackageReference Include="OpenTelemetry" Version="1.10.0" />
|
<PackageReference Include="OpenTelemetry" Version="1.11.0" />
|
||||||
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.10.0" />
|
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.11.0" />
|
||||||
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.10.0" />
|
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.11.0" />
|
||||||
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.10.0" />
|
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.11.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
```
|
```
|
||||||
@ -80,20 +80,21 @@ This is the first task of implementing the Fengling Authentication Service. We'r
|
|||||||
|
|
||||||
**Architecture**: ASP.NET Core Web API with OpenIddict for OAuth2/OIDC, PostgreSQL for user data.
|
**Architecture**: ASP.NET Core Web API with OpenIddict for OAuth2/OIDC, PostgreSQL for user data.
|
||||||
|
|
||||||
**Tech Stack**: .NET 10.0, OpenIddict 5.x, EF Core 9.0, PostgreSQL, Serilog, OpenTelemetry.
|
**Tech Stack**: .NET 9.0, OpenIddict 7.2.0, EF Core 9.0, PostgreSQL, Serilog 9.0.0, OpenTelemetry 1.11.0.
|
||||||
|
|
||||||
**Working Directory**: `/Users/movingsam/Fengling.Refactory.Buiding/src`
|
**Working Directory**: `/Users/movingsam/Fengling.Refactory.Buiding/src`
|
||||||
|
|
||||||
## Verification
|
## Verification
|
||||||
|
|
||||||
- [ ] Project file created successfully
|
- [ ] Project file created successfully
|
||||||
- [ ] Target framework set to net10.0
|
- [ ] Target framework set to net9.0
|
||||||
- [ ] All NuGet packages added
|
- [ ] All NuGet packages added (latest versions)
|
||||||
- [ ] appsettings.json configured with connection string and OpenIddict settings
|
- [ ] appsettings.json configured with connection string and OpenIddict settings
|
||||||
- [ ] Project builds successfully
|
- [ ] Project builds successfully
|
||||||
- [ ] Committed to git
|
- [ ] Committed to git
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
|
|
||||||
- OpenIddict packages were resolved to version 5.1.0 (latest available) instead of 5.0.2
|
- OpenIddict packages updated to 7.2.0 (latest)
|
||||||
- Used .NET 10.0 as target framework
|
- All dependencies updated to latest versions
|
||||||
|
- Used .NET 9.0 as target framework
|
||||||
|
|||||||
@ -6,15 +6,16 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="OpenIddict.AspNetCore" Version="5.0.2" />
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.1" />
|
||||||
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.0.2" />
|
<PackageReference Include="OpenIddict.AspNetCore" Version="7.2.0" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.0" />
|
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="7.2.0" />
|
||||||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.0" />
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.1" />
|
||||||
<PackageReference Include="Serilog.AspNetCore" Version="8.0.0" />
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.3" />
|
||||||
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
|
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
|
||||||
<PackageReference Include="OpenTelemetry" Version="1.10.0" />
|
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
|
||||||
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.10.0" />
|
<PackageReference Include="OpenTelemetry" Version="1.11.0" />
|
||||||
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.10.0" />
|
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.11.0" />
|
||||||
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.10.0" />
|
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.11.0" />
|
||||||
|
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.11.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Fengling.AuthService")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+425bf3b243f3f374150824f1ac0f9cfb24cf27bc")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Fengling.AuthService")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Fengling.AuthService")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// 由 MSBuild WriteCodeFragment 类生成。
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
f9ff9211c5a26884b60773f442ad06edc3b76ba0d052a8797ebfca4b405932d5
|
||||||
@ -0,0 +1,23 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net9.0
|
||||||
|
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||||
|
build_property.TargetFrameworkVersion = v9.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb = true
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = Fengling.AuthService
|
||||||
|
build_property.RootNamespace = Fengling.AuthService
|
||||||
|
build_property.ProjectDir = /Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.RazorLangVersion = 9.0
|
||||||
|
build_property.SupportLocalizedComponentNames =
|
||||||
|
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||||
|
build_property.MSBuildProjectDirectory = /Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService
|
||||||
|
build_property._RazorSourceGeneratorDebug =
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 9.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
@ -0,0 +1,17 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using Microsoft.AspNetCore.Builder;
|
||||||
|
global using Microsoft.AspNetCore.Hosting;
|
||||||
|
global using Microsoft.AspNetCore.Http;
|
||||||
|
global using Microsoft.AspNetCore.Routing;
|
||||||
|
global using Microsoft.Extensions.Configuration;
|
||||||
|
global using Microsoft.Extensions.DependencyInjection;
|
||||||
|
global using Microsoft.Extensions.Hosting;
|
||||||
|
global using Microsoft.Extensions.Logging;
|
||||||
|
global using System;
|
||||||
|
global using System.Collections.Generic;
|
||||||
|
global using System.IO;
|
||||||
|
global using System.Linq;
|
||||||
|
global using System.Net.Http;
|
||||||
|
global using System.Net.Http.Json;
|
||||||
|
global using System.Threading;
|
||||||
|
global using System.Threading.Tasks;
|
||||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
1e5c9d19a0ec74d446c11f5020e39413ba8be8e64442067cbf3d5a0dad5ef66c
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.AssemblyReference.cache
|
||||||
|
/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/rpswa.dswa.cache.json
|
||||||
|
/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.AssemblyInfoInputs.cache
|
||||||
|
/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.AssemblyInfo.cs
|
||||||
|
/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.CoreCompileInputs.cache
|
||||||
|
/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.MvcApplicationPartsAssemblyInfo.cache
|
||||||
@ -0,0 +1 @@
|
|||||||
|
{"GlobalPropertiesHash":"47E30Od0dJVL3bsAJs2rvEUjWW7PAhtgxQFoZXRZLAY=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["nGadCmuBEG\u002BKUP6Powa57G4ZzOO6ibT7XQKZuYm3g44=","elQhyiEcBZcCHMIxyXyx47S4otwc/MEXjAYU/dca/hQ="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||||
@ -47,43 +47,43 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
|
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[9.0.0, )"
|
"version": "[9.0.1, )"
|
||||||
},
|
},
|
||||||
"Npgsql.EntityFrameworkCore.PostgreSQL": {
|
"Npgsql.EntityFrameworkCore.PostgreSQL": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[9.0.0, )"
|
"version": "[9.0.3, )"
|
||||||
},
|
},
|
||||||
"OpenIddict.AspNetCore": {
|
"OpenIddict.AspNetCore": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[5.0.2, )"
|
"version": "[7.2.0, )"
|
||||||
},
|
},
|
||||||
"OpenIddict.EntityFrameworkCore": {
|
"OpenIddict.EntityFrameworkCore": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[5.0.2, )"
|
"version": "[7.2.0, )"
|
||||||
},
|
},
|
||||||
"OpenTelemetry": {
|
"OpenTelemetry": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[1.10.0, )"
|
"version": "[1.11.0, )"
|
||||||
},
|
},
|
||||||
"OpenTelemetry.Exporter.OpenTelemetryProtocol": {
|
"OpenTelemetry.Exporter.OpenTelemetryProtocol": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[1.10.0, )"
|
"version": "[1.11.0, )"
|
||||||
},
|
},
|
||||||
"OpenTelemetry.Extensions.Hosting": {
|
"OpenTelemetry.Extensions.Hosting": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[1.10.0, )"
|
"version": "[1.11.0, )"
|
||||||
},
|
},
|
||||||
"OpenTelemetry.Instrumentation.AspNetCore": {
|
"OpenTelemetry.Instrumentation.AspNetCore": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[1.10.0, )"
|
"version": "[1.11.0, )"
|
||||||
},
|
},
|
||||||
"Serilog.AspNetCore": {
|
"Serilog.AspNetCore": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[8.0.0, )"
|
"version": "[9.0.0, )"
|
||||||
},
|
},
|
||||||
"Serilog.Sinks.Console": {
|
"Serilog.Sinks.Console": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[5.0.1, )"
|
"version": "[6.0.0, )"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"imports": [
|
"imports": [
|
||||||
|
|||||||
@ -13,6 +13,7 @@
|
|||||||
<SourceRoot Include="/Users/movingsam/.nuget/packages/" />
|
<SourceRoot Include="/Users/movingsam/.nuget/packages/" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore/9.0.0/buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore/9.0.0/buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.telemetry.abstractions/9.10.0/buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.telemetry.abstractions/9.10.0/buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.props')" />
|
||||||
|
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore/9.0.10/buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore/9.0.10/buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
@ -1,9 +1,10 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<Import Project="$(NuGetPackageRoot)system.text.json/9.0.0/buildTransitive/net8.0/System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json/9.0.0/buildTransitive/net8.0/System.Text.Json.targets')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.binder/9.0.10/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.binder/9.0.10/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.binder/9.0.0/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.binder/9.0.0/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options/9.0.10/buildTransitive/net8.0/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/9.0.10/buildTransitive/net8.0/Microsoft.Extensions.Options.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options/9.0.0/buildTransitive/net8.0/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/9.0.0/buildTransitive/net8.0/Microsoft.Extensions.Options.targets')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/9.0.10/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/9.0.10/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/9.0.0/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/9.0.0/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.telemetry.abstractions/9.10.0/buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.telemetry.abstractions/9.10.0/buildTransitive/net8.0/Microsoft.Extensions.Telemetry.Abstractions.targets')" />
|
||||||
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.http.resilience/9.10.0/buildTransitive/net8.0/Microsoft.Extensions.Http.Resilience.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.http.resilience/9.10.0/buildTransitive/net8.0/Microsoft.Extensions.Http.Resilience.targets')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
File diff suppressed because it is too large
Load Diff
@ -1,118 +1,101 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "oVkENcuM9CU=",
|
"dgSpecHash": "Jr54e1oeX7w=",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj",
|
"projectFilePath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"/Users/movingsam/.nuget/packages/google.protobuf/3.22.5/google.protobuf.3.22.5.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.aspnetcore.cryptography.internal/9.0.1/microsoft.aspnetcore.cryptography.internal.9.0.1.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/grpc.core.api/2.52.0/grpc.core.api.2.52.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.aspnetcore.cryptography.keyderivation/9.0.1/microsoft.aspnetcore.cryptography.keyderivation.9.0.1.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/grpc.net.client/2.52.0/grpc.net.client.2.52.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.aspnetcore.identity.entityframeworkcore/9.0.1/microsoft.aspnetcore.identity.entityframeworkcore.9.0.1.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/grpc.net.common/2.52.0/grpc.net.common.2.52.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore/9.0.10/microsoft.entityframeworkcore.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.aspnetcore.cryptography.internal/9.0.0/microsoft.aspnetcore.cryptography.internal.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.abstractions/9.0.10/microsoft.entityframeworkcore.abstractions.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.aspnetcore.cryptography.keyderivation/9.0.0/microsoft.aspnetcore.cryptography.keyderivation.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.analyzers/9.0.10/microsoft.entityframeworkcore.analyzers.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.aspnetcore.identity.entityframeworkcore/9.0.0/microsoft.aspnetcore.identity.entityframeworkcore.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.relational/9.0.10/microsoft.entityframeworkcore.relational.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore/9.0.0/microsoft.entityframeworkcore.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.ambientmetadata.application/9.10.0/microsoft.extensions.ambientmetadata.application.9.10.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.abstractions/9.0.0/microsoft.entityframeworkcore.abstractions.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.caching.abstractions/9.0.10/microsoft.extensions.caching.abstractions.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.analyzers/9.0.0/microsoft.entityframeworkcore.analyzers.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.caching.memory/9.0.10/microsoft.extensions.caching.memory.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.relational/9.0.0/microsoft.entityframeworkcore.relational.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.compliance.abstractions/9.10.0/microsoft.extensions.compliance.abstractions.9.10.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.caching.abstractions/9.0.0/microsoft.extensions.caching.abstractions.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.configuration/9.0.10/microsoft.extensions.configuration.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.caching.memory/9.0.0/microsoft.extensions.caching.memory.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.configuration.abstractions/9.0.10/microsoft.extensions.configuration.abstractions.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.configuration/9.0.0/microsoft.extensions.configuration.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.configuration.binder/9.0.10/microsoft.extensions.configuration.binder.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.configuration.abstractions/9.0.0/microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.10/microsoft.extensions.dependencyinjection.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.configuration.binder/9.0.0/microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/9.0.10/microsoft.extensions.dependencyinjection.abstractions.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.0/microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.dependencyinjection.autoactivation/9.10.0/microsoft.extensions.dependencyinjection.autoactivation.9.10.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/9.0.0/microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.dependencymodel/9.0.0/microsoft.extensions.dependencymodel.9.0.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.dependencymodel/8.0.0/microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.diagnostics/9.0.10/microsoft.extensions.diagnostics.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.diagnostics/8.0.0/microsoft.extensions.diagnostics.8.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.diagnostics.abstractions/9.0.10/microsoft.extensions.diagnostics.abstractions.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.diagnostics.abstractions/9.0.0/microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.diagnostics.exceptionsummarization/9.10.0/microsoft.extensions.diagnostics.exceptionsummarization.9.10.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.fileproviders.abstractions/9.0.0/microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.fileproviders.abstractions/9.0.10/microsoft.extensions.fileproviders.abstractions.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.hosting.abstractions/9.0.0/microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.hosting.abstractions/9.0.10/microsoft.extensions.hosting.abstractions.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.http/8.0.0/microsoft.extensions.http.8.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.http/9.0.10/microsoft.extensions.http.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.http.polly/8.0.1/microsoft.extensions.http.polly.8.0.1.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.http.diagnostics/9.10.0/microsoft.extensions.http.diagnostics.9.10.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.identity.core/9.0.0/microsoft.extensions.identity.core.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.http.polly/9.0.10/microsoft.extensions.http.polly.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.identity.stores/9.0.0/microsoft.extensions.identity.stores.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.http.resilience/9.10.0/microsoft.extensions.http.resilience.9.10.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.logging/9.0.0/microsoft.extensions.logging.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.identity.core/9.0.1/microsoft.extensions.identity.core.9.0.1.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.logging.abstractions/9.0.0/microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.identity.stores/9.0.1/microsoft.extensions.identity.stores.9.0.1.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.logging.configuration/9.0.0/microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.logging/9.0.10/microsoft.extensions.logging.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.options/9.0.0/microsoft.extensions.options.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.logging.abstractions/9.0.10/microsoft.extensions.logging.abstractions.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.options.configurationextensions/9.0.0/microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.logging.configuration/9.0.10/microsoft.extensions.logging.configuration.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.primitives/9.0.0/microsoft.extensions.primitives.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.objectpool/9.0.10/microsoft.extensions.objectpool.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.abstractions/7.2.0/microsoft.identitymodel.abstractions.7.2.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.options/9.0.10/microsoft.extensions.options.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.jsonwebtokens/7.2.0/microsoft.identitymodel.jsonwebtokens.7.2.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.options.configurationextensions/9.0.10/microsoft.extensions.options.configurationextensions.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.logging/7.2.0/microsoft.identitymodel.logging.7.2.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.primitives/9.0.10/microsoft.extensions.primitives.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.protocols/7.2.0/microsoft.identitymodel.protocols.7.2.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.resilience/9.10.0/microsoft.extensions.resilience.9.10.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.tokens/7.2.0/microsoft.identitymodel.tokens.7.2.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.telemetry/9.10.0/microsoft.extensions.telemetry.9.10.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/npgsql/9.0.0/npgsql.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.extensions.telemetry.abstractions/9.10.0/microsoft.extensions.telemetry.abstractions.9.10.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/npgsql.entityframeworkcore.postgresql/9.0.0/npgsql.entityframeworkcore.postgresql.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.abstractions/8.14.0/microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict/5.1.0/openiddict.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.jsonwebtokens/8.14.0/microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.abstractions/5.1.0/openiddict.abstractions.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.logging/8.14.0/microsoft.identitymodel.logging.8.14.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.aspnetcore/5.1.0/openiddict.aspnetcore.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.protocols/8.14.0/microsoft.identitymodel.protocols.8.14.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.client/5.1.0/openiddict.client.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.tokens/8.14.0/microsoft.identitymodel.tokens.8.14.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.client.aspnetcore/5.1.0/openiddict.client.aspnetcore.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.net.http.headers/9.0.10/microsoft.net.http.headers.9.0.10.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.client.dataprotection/5.1.0/openiddict.client.dataprotection.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/npgsql/9.0.2/npgsql.9.0.2.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.client.systemintegration/5.1.0/openiddict.client.systemintegration.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/npgsql.entityframeworkcore.postgresql/9.0.3/npgsql.entityframeworkcore.postgresql.9.0.3.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.client.systemnethttp/5.1.0/openiddict.client.systemnethttp.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict/7.2.0/openiddict.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.client.webintegration/5.1.0/openiddict.client.webintegration.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.abstractions/7.2.0/openiddict.abstractions.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.core/5.1.0/openiddict.core.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.aspnetcore/7.2.0/openiddict.aspnetcore.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.entityframeworkcore/5.1.0/openiddict.entityframeworkcore.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.client/7.2.0/openiddict.client.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.entityframeworkcore.models/5.1.0/openiddict.entityframeworkcore.models.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.client.aspnetcore/7.2.0/openiddict.client.aspnetcore.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.server/5.1.0/openiddict.server.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.client.dataprotection/7.2.0/openiddict.client.dataprotection.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.server.aspnetcore/5.1.0/openiddict.server.aspnetcore.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.client.systemintegration/7.2.0/openiddict.client.systemintegration.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.server.dataprotection/5.1.0/openiddict.server.dataprotection.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.client.systemnethttp/7.2.0/openiddict.client.systemnethttp.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.validation/5.1.0/openiddict.validation.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.client.webintegration/7.2.0/openiddict.client.webintegration.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.validation.aspnetcore/5.1.0/openiddict.validation.aspnetcore.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.core/7.2.0/openiddict.core.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.validation.dataprotection/5.1.0/openiddict.validation.dataprotection.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.entityframeworkcore/7.2.0/openiddict.entityframeworkcore.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.validation.serverintegration/5.1.0/openiddict.validation.serverintegration.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.entityframeworkcore.models/7.2.0/openiddict.entityframeworkcore.models.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/openiddict.validation.systemnethttp/5.1.0/openiddict.validation.systemnethttp.5.1.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.server/7.2.0/openiddict.server.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/opentelemetry/1.10.0/opentelemetry.1.10.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.server.aspnetcore/7.2.0/openiddict.server.aspnetcore.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/opentelemetry.api/1.10.0/opentelemetry.api.1.10.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.server.dataprotection/7.2.0/openiddict.server.dataprotection.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/opentelemetry.api.providerbuilderextensions/1.10.0/opentelemetry.api.providerbuilderextensions.1.10.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.validation/7.2.0/openiddict.validation.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/opentelemetry.exporter.opentelemetryprotocol/1.10.0/opentelemetry.exporter.opentelemetryprotocol.1.10.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.validation.aspnetcore/7.2.0/openiddict.validation.aspnetcore.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/opentelemetry.extensions.hosting/1.10.0/opentelemetry.extensions.hosting.1.10.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.validation.dataprotection/7.2.0/openiddict.validation.dataprotection.7.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/opentelemetry.instrumentation.aspnetcore/1.10.0/opentelemetry.instrumentation.aspnetcore.1.10.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/openiddict.validation.serverintegration/7.2.0/openiddict.validation.serverintegration.7.2.0.nupkg.sha512",
|
||||||
|
"/Users/movingsam/.nuget/packages/openiddict.validation.systemnethttp/7.2.0/openiddict.validation.systemnethttp.7.2.0.nupkg.sha512",
|
||||||
|
"/Users/movingsam/.nuget/packages/opentelemetry/1.11.0/opentelemetry.1.11.0.nupkg.sha512",
|
||||||
|
"/Users/movingsam/.nuget/packages/opentelemetry.api/1.11.1/opentelemetry.api.1.11.1.nupkg.sha512",
|
||||||
|
"/Users/movingsam/.nuget/packages/opentelemetry.api.providerbuilderextensions/1.11.1/opentelemetry.api.providerbuilderextensions.1.11.1.nupkg.sha512",
|
||||||
|
"/Users/movingsam/.nuget/packages/opentelemetry.exporter.opentelemetryprotocol/1.11.0/opentelemetry.exporter.opentelemetryprotocol.1.11.0.nupkg.sha512",
|
||||||
|
"/Users/movingsam/.nuget/packages/opentelemetry.extensions.hosting/1.11.0/opentelemetry.extensions.hosting.1.11.0.nupkg.sha512",
|
||||||
|
"/Users/movingsam/.nuget/packages/opentelemetry.instrumentation.aspnetcore/1.11.0/opentelemetry.instrumentation.aspnetcore.1.11.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/polly/7.2.4/polly.7.2.4.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/polly/7.2.4/polly.7.2.4.nupkg.sha512",
|
||||||
|
"/Users/movingsam/.nuget/packages/polly.core/8.4.2/polly.core.8.4.2.nupkg.sha512",
|
||||||
|
"/Users/movingsam/.nuget/packages/polly.extensions/8.4.2/polly.extensions.8.4.2.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/polly.extensions.http/3.0.0/polly.extensions.http.3.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/polly.extensions.http/3.0.0/polly.extensions.http.3.0.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/serilog/3.1.1/serilog.3.1.1.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/polly.ratelimiting/8.4.2/polly.ratelimiting.8.4.2.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/serilog.aspnetcore/8.0.0/serilog.aspnetcore.8.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/serilog/4.2.0/serilog.4.2.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/serilog.extensions.hosting/8.0.0/serilog.extensions.hosting.8.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/serilog.aspnetcore/9.0.0/serilog.aspnetcore.9.0.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/serilog.extensions.logging/8.0.0/serilog.extensions.logging.8.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/serilog.extensions.hosting/9.0.0/serilog.extensions.hosting.9.0.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/serilog.formatting.compact/2.0.0/serilog.formatting.compact.2.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/serilog.extensions.logging/9.0.0/serilog.extensions.logging.9.0.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/serilog.settings.configuration/8.0.0/serilog.settings.configuration.8.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/serilog.formatting.compact/3.0.0/serilog.formatting.compact.3.0.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/serilog.sinks.console/5.0.1/serilog.sinks.console.5.0.1.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/serilog.settings.configuration/9.0.0/serilog.settings.configuration.9.0.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/serilog.sinks.debug/2.0.0/serilog.sinks.debug.2.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/serilog.sinks.console/6.0.0/serilog.sinks.console.6.0.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/serilog.sinks.file/5.0.0/serilog.sinks.file.5.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/serilog.sinks.debug/3.0.0/serilog.sinks.debug.3.0.0.nupkg.sha512",
|
||||||
|
"/Users/movingsam/.nuget/packages/serilog.sinks.file/6.0.0/serilog.sinks.file.6.0.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/system.diagnostics.diagnosticsource/9.0.0/system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/system.diagnostics.diagnosticsource/9.0.0/system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/system.memory/4.5.3/system.memory.4.5.3.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/system.threading.ratelimiting/8.0.0/system.threading.ratelimiting.8.0.0.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/system.text.encodings.web/8.0.0/system.text.encodings.web.8.0.0.nupkg.sha512",
|
|
||||||
"/Users/movingsam/.nuget/packages/system.text.json/9.0.0/system.text.json.9.0.0.nupkg.sha512",
|
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.netcore.app.ref/9.0.11/microsoft.netcore.app.ref.9.0.11.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.netcore.app.ref/9.0.11/microsoft.netcore.app.ref.9.0.11.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.aspnetcore.app.ref/9.0.11/microsoft.aspnetcore.app.ref.9.0.11.nupkg.sha512",
|
"/Users/movingsam/.nuget/packages/microsoft.aspnetcore.app.ref/9.0.11/microsoft.aspnetcore.app.ref.9.0.11.nupkg.sha512",
|
||||||
"/Users/movingsam/.nuget/packages/microsoft.netcore.app.host.osx-arm64/9.0.11/microsoft.netcore.app.host.osx-arm64.9.0.11.nupkg.sha512"
|
"/Users/movingsam/.nuget/packages/microsoft.netcore.app.host.osx-arm64/9.0.11/microsoft.netcore.app.host.osx-arm64.9.0.11.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": [
|
"logs": []
|
||||||
{
|
|
||||||
"code": "NU1603",
|
|
||||||
"level": "Warning",
|
|
||||||
"message": "Fengling.AuthService 依赖于 OpenIddict.AspNetCore (>= 5.0.2),但没有找到 OpenIddict.AspNetCore 5.0.2。已改为解析 OpenIddict.AspNetCore 5.1.0。",
|
|
||||||
"projectPath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj",
|
|
||||||
"warningLevel": 1,
|
|
||||||
"filePath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj",
|
|
||||||
"libraryId": "OpenIddict.AspNetCore",
|
|
||||||
"targetGraphs": [
|
|
||||||
"net9.0"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"code": "NU1603",
|
|
||||||
"level": "Warning",
|
|
||||||
"message": "Fengling.AuthService 依赖于 OpenIddict.EntityFrameworkCore (>= 5.0.2),但没有找到 OpenIddict.EntityFrameworkCore 5.0.2。已改为解析 OpenIddict.EntityFrameworkCore 5.1.0。",
|
|
||||||
"projectPath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj",
|
|
||||||
"warningLevel": 1,
|
|
||||||
"filePath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj",
|
|
||||||
"libraryId": "OpenIddict.EntityFrameworkCore",
|
|
||||||
"targetGraphs": [
|
|
||||||
"net9.0"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
Binary file not shown.
Binary file not shown.
@ -13,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("YarpGateway")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("YarpGateway")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6ca282d2088e2c62e6b0c2bbc54720117c8dc08f")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+425bf3b243f3f374150824f1ac0f9cfb24cf27bc")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("YarpGateway")]
|
[assembly: System.Reflection.AssemblyProductAttribute("YarpGateway")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("YarpGateway")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("YarpGateway")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
24722b40465d63c21132d56deedee29b8a7fc957b18fac2d4454b56da1ef9722
|
fcca4a1412e299825e89c21922678728c6b3b40695c06967bfca5d3feb9abab8
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
{"GlobalPropertiesHash":"who4fmL7ycnXxq++J8j9Kcv1lb9J8xELeJKP5hm7kMs=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["TjxGCqcuiGNPgVk47lkT2aF1p2cRSQTuAmFnM3yAtFA=","uSrTJ1IOyLboCEM3cAAeeX4m0Yd2CffbM9hvDkA0z88=","b06gMgYepigYvzKiU5u4\u002BLze92BFLI8SMoren3tjw\u002Bk=","Mmgj3g0hKtMl9sg/01LDta6ZKAwRjPqySXrkhOZK90M=","r00k37JQu0NtvD9Jo7hW6I4xSRNRLDiGIbrH9idcE6w=","PEd/10CX25hLnx6qvCbAgQIoDtlx6iLnWD5X\u002BAWzA3M=","XrwXdmUkJKzIKj7oWnVdnpyrOlGO4Xd09DgJaOjP4rw=","pGjuh5BybHYNh/b2rWWquve/yGfLVf/qBz7m\u002BnYMZuo=","ITscrUDMMFSqVWhfIvLGeGIGOWaU0o9p9FBsqbCPn1w="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
{"GlobalPropertiesHash":"who4fmL7ycnXxq++J8j9Kcv1lb9J8xELeJKP5hm7kMs=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["TjxGCqcuiGNPgVk47lkT2aF1p2cRSQTuAmFnM3yAtFA=","uSrTJ1IOyLboCEM3cAAeeX4m0Yd2CffbM9hvDkA0z88=","b06gMgYepigYvzKiU5u4\u002BLze92BFLI8SMoren3tjw\u002Bk=","Mmgj3g0hKtMl9sg/01LDta6ZKAwRjPqySXrkhOZK90M=","r00k37JQu0NtvD9Jo7hW6I4xSRNRLDiGIbrH9idcE6w=","PEd/10CX25hLnx6qvCbAgQIoDtlx6iLnWD5X\u002BAWzA3M=","XrwXdmUkJKzIKj7oWnVdnpyrOlGO4Xd09DgJaOjP4rw=","pGjuh5BybHYNh/b2rWWquve/yGfLVf/qBz7m\u002BnYMZuo=","zGB/imQp4FdNH9MLpdimyxPjJ6FJ9DuptDAQGbl26Ck="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||||
@ -1 +1 @@
|
|||||||
{"GlobalPropertiesHash":"OyqIvbc/GNMFNwkdzMksG9lHlCtVrIjoqP8GUkMbaL0=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["TjxGCqcuiGNPgVk47lkT2aF1p2cRSQTuAmFnM3yAtFA=","uSrTJ1IOyLboCEM3cAAeeX4m0Yd2CffbM9hvDkA0z88=","b06gMgYepigYvzKiU5u4\u002BLze92BFLI8SMoren3tjw\u002Bk=","Mmgj3g0hKtMl9sg/01LDta6ZKAwRjPqySXrkhOZK90M=","r00k37JQu0NtvD9Jo7hW6I4xSRNRLDiGIbrH9idcE6w=","PEd/10CX25hLnx6qvCbAgQIoDtlx6iLnWD5X\u002BAWzA3M=","XrwXdmUkJKzIKj7oWnVdnpyrOlGO4Xd09DgJaOjP4rw=","pGjuh5BybHYNh/b2rWWquve/yGfLVf/qBz7m\u002BnYMZuo=","ITscrUDMMFSqVWhfIvLGeGIGOWaU0o9p9FBsqbCPn1w="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
{"GlobalPropertiesHash":"OyqIvbc/GNMFNwkdzMksG9lHlCtVrIjoqP8GUkMbaL0=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["TjxGCqcuiGNPgVk47lkT2aF1p2cRSQTuAmFnM3yAtFA=","uSrTJ1IOyLboCEM3cAAeeX4m0Yd2CffbM9hvDkA0z88=","b06gMgYepigYvzKiU5u4\u002BLze92BFLI8SMoren3tjw\u002Bk=","Mmgj3g0hKtMl9sg/01LDta6ZKAwRjPqySXrkhOZK90M=","r00k37JQu0NtvD9Jo7hW6I4xSRNRLDiGIbrH9idcE6w=","PEd/10CX25hLnx6qvCbAgQIoDtlx6iLnWD5X\u002BAWzA3M=","XrwXdmUkJKzIKj7oWnVdnpyrOlGO4Xd09DgJaOjP4rw=","pGjuh5BybHYNh/b2rWWquve/yGfLVf/qBz7m\u002BnYMZuo=","zGB/imQp4FdNH9MLpdimyxPjJ6FJ9DuptDAQGbl26Ck="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||||
Loading…
Reference in New Issue
Block a user