@@ -21,8 +21,8 @@ Once you have an API that can describe itself in Swagger, you've opened the trea
21
21
22
22
| Swashbuckle Version| ASP.NET Core| Swagger / OpenAPI Spec.| swagger-ui| ReDoc UI|
23
23
| ----------| ----------| ----------| ----------| ----------|
24
- | [ master] ( https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/master/README.md ) | >= 2.0.0| 2.0, 3.0| 4.10.3 | 2.0.0-rc.66 |
25
- | [ 6.3.2 ] ( https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/v6.3.2 ) | >= 2.0.0| 2.0, 3.0| 4.10.3 | 2.0.0-rc.66 |
24
+ | [ master] ( https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/master/README.md ) | >= 2.0.0| 2.0, 3.0| 4.12.0 | 2.0.0-rc.72 |
25
+ | [ 6.4.0 ] ( https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/v6.4.0 ) | >= 2.0.0| 2.0, 3.0| 4.12.0 | 2.0.0-rc.72 |
26
26
| [ 5.6.3] ( https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/v5.6.3 ) | >= 2.0.0| 2.0, 3.0| 3.32.5| 2.0.0-rc.40|
27
27
| [ 4.0.0] ( https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/v4.0.0 ) | >= 2.0.0, < 3.0.0| 2.0| 3.19.5| 1.22.2|
28
28
| [ 3.0.0] ( https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/v3.0.0 ) | >= 1.0.4, < 3.0.0| 2.0| 3.17.1| 1.20.0|
@@ -33,8 +33,8 @@ Once you have an API that can describe itself in Swagger, you've opened the trea
33
33
1 . Install the standard Nuget package into your ASP.NET Core application.
34
34
35
35
```
36
- Package Manager : Install-Package Swashbuckle.AspNetCore -Version 6.3.2
37
- CLI : dotnet add package --version 6.3.2 Swashbuckle.AspNetCore
36
+ Package Manager : Install-Package Swashbuckle.AspNetCore -Version 6.4.0
37
+ CLI : dotnet add package --version 6.4.0 Swashbuckle.AspNetCore
38
38
```
39
39
40
40
2. In the `ConfigureServices` method of `Startup.cs`, register the Swagger generator, defining one or more Swagger documents.
@@ -110,8 +110,8 @@ If you're using **System.Text.Json (STJ)**, then the setup described above will
110
110
If you're using **Newtonsoft**, then you'll need to install a separate package and explicitly opt-in to ensure that *Newtonsoft* settings/attributes are automatically honored by the Swagger generator:
111
111
112
112
```
113
- Package Manager : Install-Package Swashbuckle.AspNetCore.Newtonsoft -Version 6.3.2
114
- CLI : dotnet add package --version 6.3.2 Swashbuckle.AspNetCore.Newtonsoft
113
+ Package Manager : Install-Package Swashbuckle.AspNetCore.Newtonsoft -Version 6.4.0
114
+ CLI : dotnet add package --version 6.4.0 Swashbuckle.AspNetCore.Newtonsoft
115
115
```
116
116
117
117
```csharp
@@ -1549,7 +1549,7 @@ It's packaged as a [.NET Core Tool](https://docs.microsoft.com/en-us/dotnet/core
1549
1549
1 . Install as a [global tool ](https :// docs.microsoft.com/en-us/dotnet/core/tools/global-tools#install-a-global-tool)
1550
1550
1551
1551
```
1552
- dotnet tool install - g -- version 6.3.2 Swashbuckle .AspNetCore .Cli
1552
+ dotnet tool install - g -- version 6.4.0 Swashbuckle .AspNetCore .Cli
1553
1553
```
1554
1554
1555
1555
2 . Verify that the tool was installed correctly
@@ -1580,7 +1580,7 @@ It's packaged as a [.NET Core Tool](https://docs.microsoft.com/en-us/dotnet/core
1580
1580
2 . Install as a [local tool ](https :// docs.microsoft.com/en-us/dotnet/core/tools/global-tools#install-a-local-tool)
1581
1581
1582
1582
```
1583
- dotnet tool install -- version 6.3.2 Swashbuckle .AspNetCore .Cli
1583
+ dotnet tool install -- version 6.4.0 Swashbuckle .AspNetCore .Cli
1584
1584
```
1585
1585
1586
1586
3 . Verify that the tool was installed correctly
0 commit comments