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, 运行项目
标签:webapi,xml,控制器,接口,注释,file,options From: https://www.cnblogs.com/tlfe/p/18227513