Skip to content

Instantly share code, notes, and snippets.

@juanluelguerre
Last active June 1, 2019 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juanluelguerre/d95b8ea2a40013974009c6dacdac69c8 to your computer and use it in GitHub Desktop.
Save juanluelguerre/d95b8ea2a40013974009c6dacdac69c8 to your computer and use it in GitHub Desktop.
Snippet to Use Swagger Configure(IApplicationBuilder app, IHostingEnvironment env)
app.UseSwagger()
.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "Taskin V1");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment