Get started with Swashbuckle and ASP.NET Core - Config  info and description swagger UI - dành cho dev .net

Learn how to add Swagger to your ASP.NET Core web API project to integrate the Swagger UI.

 

 

builder.Services.AddSwaggerGen(options => { options.SwaggerDoc("v1", new OpenApiInfo { Version = "v1", Title = "ToDo API", Description = "An ASP.NET Core Web API for managing ToDo items", TermsOfService = new Uri("https://example.com/terms"), Contact = new OpenApiContact { Name = "Example Contact", Url = new Uri("https://example.com/contact") }, License = new OpenApiLicense { Name = "Example License", Url = new Uri("https://example.com/license") } }); });