Swashbuckle.AspNetCore
Swashbuckle.AspNetCore copied to clipboard
Swagger tools for documenting API's built on ASP.NET Core
I am trying to replace the GeneratePaths part of the logic of SwaggerGenerator with concurrent execution. I accidentally found that the dictionary storage structure in the SchemaRepository object is not...
In .NET 7, we added support for a new `Microsoft.AspNetCore.OpenApi` package that is designed to work with minimal API applications and provide constructs that allow users to directly modify the...
Hello I just had my first experience with the SwashBuckle CLI tool and ran into an issue. I copied the basic example for generating a swagger.json at build time. ```xml...
With the following setup we are getting a wrong scheme. Our C# WebApi with swagger API documantation is running in a pod behind a NGINX ingress controller. Nginx is doing...
Hi! I've updated Swashbuckle from 5.6.3 to 6.4.0 in my solution via the Swashbuckle.AspNetCore metapackage There are some API method params with [FromForm] attribute I can't see comments for those...
Based on the final JSON, tags added via AddSwaggerGen -> IncludeXmlComments are placed at the document level. Since they are not reflected in the OpenApiDocument object they cannot be re-ordered,...
Add support for c# 7 value tuple. Example. Consider following action ``` public (IEnumerable Collection, string Token) TestAction() { return (new string[] { "value1", "value2" }, "TokenValue"); } ``` expected...
I'm using the latest .Net SDK 6.0.401 and Swashbuckle.AspNetCore 6.4.0 Application is generated using `dotnet new webapi` which includes Swashbuckle and uses System.Text.Json for serialization. The way `TimeSpan` properties are...
Whether the ui can be upgraded to the latest version;