简体   繁体   中英

Swagger for Azure Service Fabric Stateless Web API application

I am developing Web API service and hosting on Azure Service Fabric as Micro Service. I need to implement Swagger for the API definition and I could see SwaggerConfig.Register() method not calling while application is starting. So I could not access http://faricurl:8000/swagger .

So can you please point out how to integrate Swagger definition for Web API application.

Many Thanks, Thirumalai M

As suggested in my comment install the core Swashbuckle NuGet package

install-package Swashbuckle.Core

Then in the Startup.cs of your WebApi project add

 config.EnableSwagger(c => c.SingleApiVersion("v1", "A title for your API"))
        .EnableSwaggerUi();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM