Version 4.0.0
What's Changed
- [BREAKING] Change Swagger to default path /swagger/index.html by @robinmanuelthiel in #41
Migration
For ASP.NET
Change the Properties/launchSettings.json
:
"launchUrl": "swagger/index.html",
For Visual Studio Code
Add this to the launch.json
file:
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
"uriFormat": "%s/swagger" // <-- this
},
Full Changelog: v3.1.1...v4.0.0