AzureExtensions.Swashbuckle icon indicating copy to clipboard operation
AzureExtensions.Swashbuckle copied to clipboard

This extension enriches Azure Functions with Swagger/ Open API support

Results 34 AzureExtensions.Swashbuckle issues
Sort by recently updated
recently updated
newest added

The route configuration option for an HTTP triggered function accepts the following [route constraints](url). These don't seem to be fully supported in the swagger UI, or maybe I'm doing something...

Hello Vitaly, First of all, thanks for maintaining this package, very promising. I am trying to set the "consumes" but am not succeeding. I want to achieve the following result...

enhancement

This pull request enhances Swashbuckle to support Newtonsoft.Json library for Azure Functions. Currently, Swashbuckle does not recognize JsonProperty annotations in models. With this update, Swashbuckle now properly handles models annotated...

Went to implement builder.AddSwashBuckle (via documentation recommendation), and am getting a deprecation warning., about using IWebJobsStartup for SwashBuckle initialization. The documentation/implementation should be updated to utilize FunctionsStartup instead of IWebJobsStartup.

Is there a possibility to add a custom CSS to Ui?

Is there a way to configure swaggerUI options like : c.OAuthClientId(apiSettings.ClientId); c.OAuthAdditionalQueryStringParams(new Dictionary { { "nonce","nonce vlaue" } }); the goal here is to send the nonce value its required...

Please allow to inject custom script/plugin definition into served `index.html`

Updated package version of Swashbuckle.AspNetCore and Swashbuckle.AspNetCore.Swagger to 6.4.0 Previous Version of Swashbuckle SwaggerUI (5.6.3) is vulnerable to a cross-site scripting vulnerability

The Swashbuckle configuration according to the instruction in Read.ME fine is not working in .Net 8.0 Functions?

I am adding swashbuckle to azure functions on .net framework 8.0. services.AddSwashBuckle(Assembly.GetExecutingAssembly(), opts => { opts.AddCodeParameter = true; opts.Documents = new[] { new SwaggerDocument { Name = "v1", Title =...

bug