Updated nuget package to rc3 (#14610)

rc3 is released with aspnetcore 3 support
pull/14648/head
Gerard Gunnewijk 2019-09-26 22:41:25 +02:00 committed by Rick Anderson
parent 27fa845683
commit 90374fc10b
1 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ Swashbuckle can be added with the following approaches:
* Execute the following command:
```powershell
Install-Package Swashbuckle.AspNetCore -Version 5.0.0-rc2
Install-Package Swashbuckle.AspNetCore -Version 5.0.0-rc3
```
* From the **Manage NuGet Packages** dialog:
@ -56,7 +56,7 @@ Swashbuckle can be added with the following approaches:
Run the following command from the **Integrated Terminal**:
```dotnetcli
dotnet add TodoApi.csproj package Swashbuckle.AspNetCore -v 5.0.0-rc2
dotnet add TodoApi.csproj package Swashbuckle.AspNetCore -v 5.0.0-rc3
```
### [.NET Core CLI](#tab/netcore-cli)
@ -64,7 +64,7 @@ dotnet add TodoApi.csproj package Swashbuckle.AspNetCore -v 5.0.0-rc2
Run the following command:
```dotnetcli
dotnet add TodoApi.csproj package Swashbuckle.AspNetCore -v 5.0.0-rc2
dotnet add TodoApi.csproj package Swashbuckle.AspNetCore -v 5.0.0-rc3
```
---