I am currently using Swashbuckle to document my .Net API which is a great tool. I wanted to know whether I can add additional swagger files being stored within my project.
I have saw the following code from the swashbuckle documentation and tried this but it doesn't seem to work:
.EnableSwagger("docs/{apiVersion}/swagger", c => c.SingleApiVersion("v1", "A title for your API"))
.EnableSwaggerUi("sandbox/{*assetPath}");
The overall aim would be to have to option of using swagger from my generated project XML file and be able to add additional swagger files to the configuration to be displayed.
Thanks in advance!