NSwag icon indicating copy to clipboard operation
NSwag copied to clipboard

The Swagger/OpenAPI toolchain for .NET, ASP.NET Core and TypeScript.

Results 480 NSwag issues
Sort by recently updated
recently updated
newest added

Fix nullable return parameters to support c#8

Hey I can't compile project on ubuntu 20.04, dotnet 6 with ``` dotnet publish Rosie.Project.csproj -c Release -o app --packages ../packages -r **linux-arm64** --no-self-contained ``` it working on windows locally,...

I am using version 13.7.0 of `NSwag.AspNetCore`. With this, I have a DTO that is documented like this: ```csharp // In controller [OpenApiOperation("GetMetadata")] [ProducesResponseType(typeof(UserMetadataResponse), 200)] public async Task GetMetadata() {...

This is a bug to track the issue mentioned here: https://github.com/RicoSuter/NSwag/issues/2435#issuecomment-576035741 It would be really nice if a method like `Get` below didn't need the `[return: CanBeNull]` line given that...

#### Sample Definitions **test.yaml** ```yaml openapi: 3.0.0 info: version: 1.0.0 title: Test paths: /internal: post: responses: '200': description: Successful response content: application/json: schema: $ref: "#/components/schemas/Internal" /external1: post: responses: '200': description:...

Bumps [Microsoft.Owin](https://github.com/aspnet/AspNetKatana) from 3.1.0 to 4.0.0. Commits 64bf627 Update certificate id 7785261 Update lisence url 5d6e25b Handle early disconnects #141 0156279 Update version to 4.0.0-rtm 6ab8574 Update IdentityModel dependencies to...

dependencies
.NET

Bumps [Microsoft.Owin](https://github.com/aspnet/AspNetKatana) from 3.0.1 to 4.0.0. Commits 64bf627 Update certificate id 7785261 Update lisence url 5d6e25b Handle early disconnects #141 0156279 Update version to 4.0.0-rtm 6ab8574 Update IdentityModel dependencies to...

dependencies
.NET

Bumps [Microsoft.Owin](https://github.com/aspnet/AspNetKatana) from 3.0.1 to 4.0.0. Commits 64bf627 Update certificate id 7785261 Update lisence url 5d6e25b Handle early disconnects #141 0156279 Update version to 4.0.0-rtm 6ab8574 Update IdentityModel dependencies to...

dependencies
.NET

Hi there, I have an endpoint with the "Accept" header. Depending on it, the response content returns a different schema: ``` openapi: 3.0.0 servers: - url: "/api" info: version: 0.0.0...

I have tested this with both the C# and TypeScript generators and both have the same behavior. If a swagger.json file has multiple response content types and the first content...