当我使用swashbuckle运行.NET核心服务时,它显示的标题(在所有资源之上)是从程序集名称派生的。
如何指定要显示在宣传页上的我自己的标题?
(The页面上显示的标题与文档标题不同,后者可以通过传递到app.UseSwaggerUI()
方法中的options.DocumentTitle
进行修改。)
edit:这是我当前的设置代码-它是随C#webapi
模板一起提供的:
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}
app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.Run();
1条答案
按热度按时间vtwuwzda1#