feat(auth): create authentication service project structure
This commit is contained in:
commit
3099abb710
20
Fengling.AuthService.csproj
Normal file
20
Fengling.AuthService.csproj
Normal file
@ -0,0 +1,20 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="OpenIddict.AspNetCore" Version="5.0.2" />
|
||||
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.0.2" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.0" />
|
||||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.0" />
|
||||
<PackageReference Include="Serilog.AspNetCore" Version="8.0.0" />
|
||||
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
|
||||
<PackageReference Include="OpenTelemetry" Version="1.10.0" />
|
||||
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.10.0" />
|
||||
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.10.0" />
|
||||
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.10.0" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
6
Fengling.AuthService.http
Normal file
6
Fengling.AuthService.http
Normal file
@ -0,0 +1,6 @@
|
||||
@Fengling.AuthService_HostAddress = http://localhost:5132
|
||||
|
||||
GET {{Fengling.AuthService_HostAddress}}/weatherforecast/
|
||||
Accept: application/json
|
||||
|
||||
###
|
||||
41
Program.cs
Normal file
41
Program.cs
Normal file
@ -0,0 +1,41 @@
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
// Add services to the container.
|
||||
// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi
|
||||
builder.Services.AddOpenApi();
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
if (app.Environment.IsDevelopment())
|
||||
{
|
||||
app.MapOpenApi();
|
||||
}
|
||||
|
||||
app.UseHttpsRedirection();
|
||||
|
||||
var summaries = new[]
|
||||
{
|
||||
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
|
||||
};
|
||||
|
||||
app.MapGet("/weatherforecast", () =>
|
||||
{
|
||||
var forecast = Enumerable.Range(1, 5).Select(index =>
|
||||
new WeatherForecast
|
||||
(
|
||||
DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
|
||||
Random.Shared.Next(-20, 55),
|
||||
summaries[Random.Shared.Next(summaries.Length)]
|
||||
))
|
||||
.ToArray();
|
||||
return forecast;
|
||||
})
|
||||
.WithName("GetWeatherForecast");
|
||||
|
||||
app.Run();
|
||||
|
||||
record WeatherForecast(DateOnly Date, int TemperatureC, string? Summary)
|
||||
{
|
||||
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
||||
}
|
||||
23
Properties/launchSettings.json
Normal file
23
Properties/launchSettings.json
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/launchsettings.json",
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": false,
|
||||
"applicationUrl": "http://localhost:5132",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"https": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": false,
|
||||
"applicationUrl": "https://localhost:7150;http://localhost:5132",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
8
appsettings.Development.json
Normal file
8
appsettings.Development.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
16
appsettings.json
Normal file
16
appsettings.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"ConnectionStrings": {
|
||||
"DefaultConnection": "Host=192.168.100.10;Port=5432;Database=fengling_auth;Username=movingsam;Password=sl52788542"
|
||||
},
|
||||
"OpenIddict": {
|
||||
"Issuer": "https://auth.fengling.local",
|
||||
"Audience": "fengling-api"
|
||||
},
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
127
obj/Fengling.AuthService.csproj.nuget.dgspec.json
Normal file
127
obj/Fengling.AuthService.csproj.nuget.dgspec.json
Normal file
@ -0,0 +1,127 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj",
|
||||
"projectName": "Fengling.AuthService",
|
||||
"projectPath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj",
|
||||
"packagesPath": "/Users/movingsam/.nuget/packages/",
|
||||
"outputPath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/Users/movingsam/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net9.0"
|
||||
],
|
||||
"sources": {
|
||||
"/usr/local/share/dotnet/library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.100"
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"dependencies": {
|
||||
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
|
||||
"target": "Package",
|
||||
"version": "[9.0.0, )"
|
||||
},
|
||||
"Npgsql.EntityFrameworkCore.PostgreSQL": {
|
||||
"target": "Package",
|
||||
"version": "[9.0.0, )"
|
||||
},
|
||||
"OpenIddict.AspNetCore": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.2, )"
|
||||
},
|
||||
"OpenIddict.EntityFrameworkCore": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.2, )"
|
||||
},
|
||||
"OpenTelemetry": {
|
||||
"target": "Package",
|
||||
"version": "[1.10.0, )"
|
||||
},
|
||||
"OpenTelemetry.Exporter.OpenTelemetryProtocol": {
|
||||
"target": "Package",
|
||||
"version": "[1.10.0, )"
|
||||
},
|
||||
"OpenTelemetry.Extensions.Hosting": {
|
||||
"target": "Package",
|
||||
"version": "[1.10.0, )"
|
||||
},
|
||||
"OpenTelemetry.Instrumentation.AspNetCore": {
|
||||
"target": "Package",
|
||||
"version": "[1.10.0, )"
|
||||
},
|
||||
"Serilog.AspNetCore": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.0, )"
|
||||
},
|
||||
"Serilog.Sinks.Console": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.1, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[9.0.11, 9.0.11]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Host.osx-arm64",
|
||||
"version": "[9.0.11, 9.0.11]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Ref",
|
||||
"version": "[9.0.11, 9.0.11]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.AspNetCore.App": {
|
||||
"privateAssets": "none"
|
||||
},
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
18
obj/Fengling.AuthService.csproj.nuget.g.props
Normal file
18
obj/Fengling.AuthService.csproj.nuget.g.props
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/Users/movingsam/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/Users/movingsam/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/Users/movingsam/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
<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')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
9
obj/Fengling.AuthService.csproj.nuget.g.targets
Normal file
9
obj/Fengling.AuthService.csproj.nuget.g.targets
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<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.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.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.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')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
3791
obj/project.assets.json
Normal file
3791
obj/project.assets.json
Normal file
File diff suppressed because it is too large
Load Diff
118
obj/project.nuget.cache
Normal file
118
obj/project.nuget.cache
Normal file
@ -0,0 +1,118 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "oVkENcuM9CU=",
|
||||
"success": true,
|
||||
"projectFilePath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/Users/movingsam/.nuget/packages/google.protobuf/3.22.5/google.protobuf.3.22.5.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/grpc.core.api/2.52.0/grpc.core.api.2.52.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/grpc.net.client/2.52.0/grpc.net.client.2.52.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/grpc.net.common/2.52.0/grpc.net.common.2.52.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.aspnetcore.cryptography.internal/9.0.0/microsoft.aspnetcore.cryptography.internal.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.aspnetcore.cryptography.keyderivation/9.0.0/microsoft.aspnetcore.cryptography.keyderivation.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.aspnetcore.identity.entityframeworkcore/9.0.0/microsoft.aspnetcore.identity.entityframeworkcore.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore/9.0.0/microsoft.entityframeworkcore.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.abstractions/9.0.0/microsoft.entityframeworkcore.abstractions.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.analyzers/9.0.0/microsoft.entityframeworkcore.analyzers.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.relational/9.0.0/microsoft.entityframeworkcore.relational.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.caching.abstractions/9.0.0/microsoft.extensions.caching.abstractions.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.caching.memory/9.0.0/microsoft.extensions.caching.memory.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.configuration/9.0.0/microsoft.extensions.configuration.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.configuration.abstractions/9.0.0/microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.configuration.binder/9.0.0/microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.0/microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/9.0.0/microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.dependencymodel/8.0.0/microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.diagnostics/8.0.0/microsoft.extensions.diagnostics.8.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.diagnostics.abstractions/9.0.0/microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.fileproviders.abstractions/9.0.0/microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.hosting.abstractions/9.0.0/microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.http/8.0.0/microsoft.extensions.http.8.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.http.polly/8.0.1/microsoft.extensions.http.polly.8.0.1.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.identity.core/9.0.0/microsoft.extensions.identity.core.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.identity.stores/9.0.0/microsoft.extensions.identity.stores.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.logging/9.0.0/microsoft.extensions.logging.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.logging.abstractions/9.0.0/microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.logging.configuration/9.0.0/microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.options/9.0.0/microsoft.extensions.options.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.options.configurationextensions/9.0.0/microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.extensions.primitives/9.0.0/microsoft.extensions.primitives.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.abstractions/7.2.0/microsoft.identitymodel.abstractions.7.2.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.jsonwebtokens/7.2.0/microsoft.identitymodel.jsonwebtokens.7.2.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.logging/7.2.0/microsoft.identitymodel.logging.7.2.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.protocols/7.2.0/microsoft.identitymodel.protocols.7.2.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.identitymodel.tokens/7.2.0/microsoft.identitymodel.tokens.7.2.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/npgsql/9.0.0/npgsql.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/npgsql.entityframeworkcore.postgresql/9.0.0/npgsql.entityframeworkcore.postgresql.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict/5.1.0/openiddict.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.abstractions/5.1.0/openiddict.abstractions.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.aspnetcore/5.1.0/openiddict.aspnetcore.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.client/5.1.0/openiddict.client.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.client.aspnetcore/5.1.0/openiddict.client.aspnetcore.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.client.dataprotection/5.1.0/openiddict.client.dataprotection.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.client.systemintegration/5.1.0/openiddict.client.systemintegration.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.client.systemnethttp/5.1.0/openiddict.client.systemnethttp.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.client.webintegration/5.1.0/openiddict.client.webintegration.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.core/5.1.0/openiddict.core.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.entityframeworkcore/5.1.0/openiddict.entityframeworkcore.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.entityframeworkcore.models/5.1.0/openiddict.entityframeworkcore.models.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.server/5.1.0/openiddict.server.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.server.aspnetcore/5.1.0/openiddict.server.aspnetcore.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.server.dataprotection/5.1.0/openiddict.server.dataprotection.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.validation/5.1.0/openiddict.validation.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.validation.aspnetcore/5.1.0/openiddict.validation.aspnetcore.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.validation.dataprotection/5.1.0/openiddict.validation.dataprotection.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.validation.serverintegration/5.1.0/openiddict.validation.serverintegration.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/openiddict.validation.systemnethttp/5.1.0/openiddict.validation.systemnethttp.5.1.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/opentelemetry/1.10.0/opentelemetry.1.10.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/opentelemetry.api/1.10.0/opentelemetry.api.1.10.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/opentelemetry.api.providerbuilderextensions/1.10.0/opentelemetry.api.providerbuilderextensions.1.10.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/opentelemetry.exporter.opentelemetryprotocol/1.10.0/opentelemetry.exporter.opentelemetryprotocol.1.10.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/opentelemetry.extensions.hosting/1.10.0/opentelemetry.extensions.hosting.1.10.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/opentelemetry.instrumentation.aspnetcore/1.10.0/opentelemetry.instrumentation.aspnetcore.1.10.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/polly/7.2.4/polly.7.2.4.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/polly.extensions.http/3.0.0/polly.extensions.http.3.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/serilog/3.1.1/serilog.3.1.1.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/serilog.aspnetcore/8.0.0/serilog.aspnetcore.8.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/serilog.extensions.hosting/8.0.0/serilog.extensions.hosting.8.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/serilog.extensions.logging/8.0.0/serilog.extensions.logging.8.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/serilog.formatting.compact/2.0.0/serilog.formatting.compact.2.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/serilog.settings.configuration/8.0.0/serilog.settings.configuration.8.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/serilog.sinks.console/5.0.1/serilog.sinks.console.5.0.1.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/serilog.sinks.debug/2.0.0/serilog.sinks.debug.2.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/serilog.sinks.file/5.0.0/serilog.sinks.file.5.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/system.diagnostics.diagnosticsource/9.0.0/system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/system.memory/4.5.3/system.memory.4.5.3.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/system.text.encodings.web/8.0.0/system.text.encodings.web.8.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/system.text.json/9.0.0/system.text.json.9.0.0.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.netcore.app.ref/9.0.11/microsoft.netcore.app.ref.9.0.11.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.aspnetcore.app.ref/9.0.11/microsoft.aspnetcore.app.ref.9.0.11.nupkg.sha512",
|
||||
"/Users/movingsam/.nuget/packages/microsoft.netcore.app.host.osx-arm64/9.0.11/microsoft.netcore.app.host.osx-arm64.9.0.11.nupkg.sha512"
|
||||
],
|
||||
"logs": [
|
||||
{
|
||||
"code": "NU1603",
|
||||
"level": "Warning",
|
||||
"message": "Fengling.AuthService 依赖于 OpenIddict.AspNetCore (>= 5.0.2),但没有找到 OpenIddict.AspNetCore 5.0.2。已改为解析 OpenIddict.AspNetCore 5.1.0。",
|
||||
"projectPath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj",
|
||||
"warningLevel": 1,
|
||||
"filePath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj",
|
||||
"libraryId": "OpenIddict.AspNetCore",
|
||||
"targetGraphs": [
|
||||
"net9.0"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": "NU1603",
|
||||
"level": "Warning",
|
||||
"message": "Fengling.AuthService 依赖于 OpenIddict.EntityFrameworkCore (>= 5.0.2),但没有找到 OpenIddict.EntityFrameworkCore 5.0.2。已改为解析 OpenIddict.EntityFrameworkCore 5.1.0。",
|
||||
"projectPath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj",
|
||||
"warningLevel": 1,
|
||||
"filePath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj",
|
||||
"libraryId": "OpenIddict.EntityFrameworkCore",
|
||||
"targetGraphs": [
|
||||
"net9.0"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user