upgrade:8.0.2

This commit is contained in:
xiaolipro 2026-02-05 14:51:17 +08:00
parent b86a01f1bf
commit ba7201587c
3 changed files with 6 additions and 25 deletions

View File

@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<!-- All Fake packages -->
<FakePackageVersion>8.0.1</FakePackageVersion>
<FakePackageVersion>8.0.2</FakePackageVersion>
</PropertyGroup>
</Project>

View File

@ -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();

View File

@ -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();