我在ASP.NET Web API 4.5编写代码并使用nuget包Swashbuckle - https://github.com/domaindrivendev/Swashbuckle
我的项目中有很多控制器,我希望每个控制器都有一个特殊的页面,包含描述和swagger操作
直到现在:
我使用CustomAsset
函数覆盖index.html页面:
c.CustomAsset("index", typeof(SwaggerConfig).Assembly, "proj.index.html");
将index.html中的描述设置为控制器操作
Filter的写入功能应用并使用对象SwaggerDocument swaggerDoc
我删除所有控制器而不是我想要显示的控制器:
swaggerDoc.paths.Remove(path i dont want)
我是否可以将控制器分离到不同页面的问题(假设每个控制器都有自己的index.html文件)?
由于