How to use Swagger Codegen with .net core

后端 未结 2 557
难免孤独
难免孤独 2021-02-15 01:02

I am able to integrate the Swagge UI in my web api using Swashbuckle. I also want to explore the swagger codegen feature. Can somebody help in - how I can integrate swagger code

2条回答
  •  孤城傲影
    2021-02-15 01:15

    You should install "Swashbuckle.AspNetCore.Swagger" nuget package by right click your project and click manage nuget packages.

    Then you should add these codes into your project startup place eg. Program.cs

    public void ConfigureServices(IServiceCollection services)
    {
        services.AddMvc();
    
        // Register the Swagger generator, defining one or more Swagger documents
        services.AddSwaggerGen(c =>
        {
            c.SwaggerDoc("v1", new Info { Title = "My API", Version = "v1" });
        });
    }
    
    public void Configure(IApplicationBuilder app)
    {
        // Enable middleware to serve generated Swagger as a JSON endpoint.
        app.UseSwagger();
    
        app.UseMvc();
    }
    

提交回复
热议问题