Skip to content

Commit 1598836

Browse files
authored
Update 3.1-to-5.0 migration guide for Preview 6 (#18965)
1 parent 9664cff commit 1598836

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
ASP.NET Core 5.0 isn't yet supported in Visual Studio for Mac.
1+
* [Visual Studio for Mac Preview](https://visualstudio.microsoft.com/vs/mac/)
2+
* [!INCLUDE [.NET 5.0 SDK](~/includes/5.0-SDK.md)]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
* [Visual Studio 2019 16.6 or later](https://visualstudio.microsoft.com/downloads/?utm_medium=microsoft&utm_source=docs.microsoft.com&utm_campaign=inline+link&utm_content=download+vs2019) with the **ASP.NET and web development** workload
1+
* [Visual Studio 2019 16.7 or later](https://visualstudio.microsoft.com/downloads/?utm_medium=microsoft&utm_source=docs.microsoft.com&utm_campaign=inline+link&utm_content=download+vs2019) with the **ASP.NET and web development** workload
22
* [!INCLUDE [.NET 5.0 SDK](~/includes/5.0-SDK.md)]

aspnetcore/migration/31-to-50.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: scottaddie
44
description: Learn how to migrate an ASP.NET Core 3.1 project to ASP.NET Core 5.0.
55
ms.author: scaddie
66
ms.custom: mvc
7-
ms.date: 06/11/2020
7+
ms.date: 06/25/2020
88
no-loc: [Blazor, "Identity", "Let's Encrypt", Razor, SignalR]
99
uid: migration/31-to-50
1010
---
@@ -41,7 +41,7 @@ If you rely upon a [global.json](/dotnet/core/tools/global-json) file to target
4141
{
4242
"sdk": {
4343
- "version": "3.1.200"
44-
+ "version": "5.0.100-preview.5.20279.10"
44+
+ "version": "5.0.100-preview.6.20318.15"
4545
}
4646
}
4747
```
@@ -69,8 +69,8 @@ In the project file, update each `Microsoft.AspNetCore.*` and `Microsoft.Extensi
6969
<ItemGroup>
7070
- <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.2" />
7171
- <PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="3.1.2" />
72-
+ <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.0-preview.5.20279.2" />
73-
+ <PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="5.0.0-preview.5.20278.1" />
72+
+ <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.0-preview.6.20312.15" />
73+
+ <PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="5.0.0-preview.6.20305.6" />
7474
</ItemGroup>
7575
```
7676

0 commit comments

Comments
 (0)