我的任务是将Swagger安装到Web API项目中。
已安装:来自nuget的最新版Swashbuckle。 (Swashbuckle.Core.Net45和Swashbuckle.Net45)
自定义:App_Start \ SwaggerConfig.cs。我能够自定义(更改样式,添加徽标,修改说明)..
现在我们需要从https://[your-url]/swagger更改为https://[your-url]/help
请告知
答案 0 :(得分:3)
如何关注documentation?在您的情况下,您可以将SwaggerConfig
更改为
httpConfiguration
.EnableSwaggerUi("help/{*assetPath}");
找到该文档
答案 1 :(得分:3)
更改routePrefix
参数的SwaggerUIOptions
,默认为“swagger”