Is it possible to create multiple Swagger document URLs?
I have a website which is using Web API 2 and I am using Swashbuckle Swagger to generate API documentation and export the JSON configuration for Azure API Management. In my scenario it would be ideal if the APIs could be grouped by a value defined in the Swagger document URL (http://example.com/swagger/{my-api-group}). However, after some research I could not find a way to implement this.
From what I can understand, at the moment in order for me to change the Swagger export file, I need to restart the environment each time there is a change and this is not ideal in my scenario.
I have tried to see if I can get the open source code from the NuGet package to see if I could understand the inner workings of Swashbuckle. Furthermore, I am aware that this can be achieved using "Swashbuckle.AspNetCore", but this is not an option since I am integrating this feature in a big .NET Framework solution which would be a staggering task to accomplish.