From f6c6ef0f6613873db22a8b4e406ef4a7252f302e Mon Sep 17 00:00:00 2001 From: Gerard Gunnewijk Date: Wed, 2 Oct 2019 15:34:25 +0200 Subject: [PATCH] Updated nuget package to rc4 (#14760) Fixes #14757 Swashbuckle.AspNetCore rc4 is released. --- aspnetcore/tutorials/getting-started-with-swashbuckle.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aspnetcore/tutorials/getting-started-with-swashbuckle.md b/aspnetcore/tutorials/getting-started-with-swashbuckle.md index e07a04f809..11882538b6 100644 --- a/aspnetcore/tutorials/getting-started-with-swashbuckle.md +++ b/aspnetcore/tutorials/getting-started-with-swashbuckle.md @@ -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-rc3 + Install-Package Swashbuckle.AspNetCore -Version 5.0.0-rc4 ``` * 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-rc3 +dotnet add TodoApi.csproj package Swashbuckle.AspNetCore -v 5.0.0-rc4 ``` ### [.NET Core CLI](#tab/netcore-cli) @@ -64,7 +64,7 @@ dotnet add TodoApi.csproj package Swashbuckle.AspNetCore -v 5.0.0-rc3 Run the following command: ```dotnetcli -dotnet add TodoApi.csproj package Swashbuckle.AspNetCore -v 5.0.0-rc3 +dotnet add TodoApi.csproj package Swashbuckle.AspNetCore -v 5.0.0-rc4 ``` ---