webapi 配置介面註釋顯示

龙卷风吹毁停车场發表於2024-06-02
1. 再Program.cs 檔案中新增
builder.Services.AddSwaggerGen(options =>
{
    //讀取根據api生成的控制器xml檔案
    var file = Path.Combine(AppContext.BaseDirectory, "WebApplication1.Webapi.xml");
    //顯示控制器層註釋
    options.IncludeXmlComments(file, true);
    //對action進行排序
    options.OrderActionsBy(r => r.RelativePath);
});

2.

3.

4, 使用

5, 執行專案

相關文章