upgrade:8.0.2
This commit is contained in:
parent
b86a01f1bf
commit
ba7201587c
@ -1,6 +1,6 @@
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<!-- All Fake packages -->
|
||||
<FakePackageVersion>8.0.1</FakePackageVersion>
|
||||
<FakePackageVersion>8.0.2</FakePackageVersion>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
||||
@ -64,30 +64,7 @@ public class InterfaceForwardApiModule : FakeModule
|
||||
options.SerializerSettings.Converters.Add(new LongJsonConverter());
|
||||
});
|
||||
|
||||
services.AddFakeSwaggerGen(options =>
|
||||
{
|
||||
options.AddSecurityDefinition("Bearer", new OpenApiSecurityScheme()
|
||||
{
|
||||
Description = "JWT授权数据将在请求头中进行传输,在下方输入Bearer {token} 即可,注意两者之间有空格",
|
||||
Name = "Authorization",
|
||||
In = ParameterLocation.Header,
|
||||
Type = SecuritySchemeType.ApiKey
|
||||
});
|
||||
options.AddSecurityRequirement(new OpenApiSecurityRequirement
|
||||
{
|
||||
{
|
||||
new OpenApiSecurityScheme
|
||||
{
|
||||
Reference = new OpenApiReference()
|
||||
{
|
||||
Id = "Bearer",
|
||||
Type = ReferenceType.SecurityScheme
|
||||
}
|
||||
},
|
||||
[]
|
||||
}
|
||||
});
|
||||
})
|
||||
services.AddFakeSwaggerGen(addSecurity: true)
|
||||
.AddFakeAspNetCoreAuditing();
|
||||
|
||||
services.AddCors(options =>
|
||||
@ -131,6 +108,9 @@ public class InterfaceForwardApiModule : FakeModule
|
||||
// Add Aspire default endpoints.
|
||||
app.MapDefaultEndpoints();
|
||||
|
||||
// 虚拟路由-网关适配
|
||||
app.UsePathBase(app.Configuration["ASPNETCORE_PATHBASE"]);
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
app.UseFakeSwagger();
|
||||
|
||||
|
||||
@ -4,6 +4,7 @@ using Serilog;
|
||||
var builder = WebApplication.CreateSlimBuilder(args);
|
||||
var configuration = builder.Configuration;
|
||||
builder.Configuration.AddConsul("idwms/itfxapi", source => source.ReloadOnChange = true);
|
||||
builder.Configuration.AddConsul("idwms/common");
|
||||
Log.Logger = new LoggerConfiguration()
|
||||
.ReadFrom.Configuration(configuration)
|
||||
.CreateLogger();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user