Skip to content

Commit 7c644e5

Browse files
authored
Update ASP.NET Core 3.1-to-5.0 migration doc for Preview 2 release (#17591)
1 parent b125589 commit 7c644e5

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
Support expected in version 8.6
2-
3-
<!-- * [Visual Studio for Mac version 8.6 or later](https://visualstudio.microsoft.com/vs/mac/)
4-
* [!INCLUDE [.NET 5.0 SDK](~/includes/5.0-SDK.md)] -->
1+
* [Visual Studio for Mac version 8.6 or later](/visualstudio/releasenotes/vs2019-mac-preview-relnotes)
2+
* [!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: 03/24/2020
7+
ms.date: 04/02/2020
88
uid: migration/31-to-50
99
---
1010
# Migrate from ASP.NET Core 3.1 to 5.0
@@ -40,7 +40,7 @@ If you rely upon a [global.json](/dotnet/core/tools/global-json) file to target
4040
{
4141
"sdk": {
4242
- "version": "3.1.200"
43-
+ "version": "5.0.100-preview.1.20155.7"
43+
+ "version": "5.0.100-preview.2.20176.6"
4444
}
4545
}
4646
```
@@ -68,8 +68,8 @@ In the project file, update each `Microsoft.AspNetCore.*` and `Microsoft.Extensi
6868
<ItemGroup>
6969
- <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.2" />
7070
- <PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="3.1.2" />
71-
+ <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.0-preview.1.20124.5" />
72-
+ <PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="5.0.0-preview.1.20120.4" />
71+
+ <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.0-preview.2.20167.3" />
72+
+ <PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="5.0.0-preview.2.20160.3" />
7373
</ItemGroup>
7474
```
7575

0 commit comments

Comments
 (0)