From 8e6e1a998d3d53a6cd146ce60a0d0451b3bfb50d Mon Sep 17 00:00:00 2001 From: Scott Addie <10702007+scottaddie@users.noreply.github.com> Date: Mon, 14 Sep 2020 15:20:25 -0500 Subject: [PATCH] Update 5.0 migration guide for RC1 release (#19853) --- aspnetcore/migration/31-to-50.md | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/aspnetcore/migration/31-to-50.md b/aspnetcore/migration/31-to-50.md index ba0863fea3..5d626cd12b 100644 --- a/aspnetcore/migration/31-to-50.md +++ b/aspnetcore/migration/31-to-50.md @@ -4,7 +4,7 @@ author: scottaddie description: Learn how to migrate an ASP.NET Core 3.1 project to ASP.NET Core 5.0. ms.author: scaddie ms.custom: mvc -ms.date: 08/26/2020 +ms.date: 09/14/2020 no-loc: ["ASP.NET Core Identity", cookie, Cookie, Blazor, "Blazor Server", "Blazor WebAssembly", "Identity", "Let's Encrypt", Razor, SignalR] uid: migration/31-to-50 --- @@ -41,7 +41,7 @@ If you rely upon a [global.json](/dotnet/core/tools/global-json) file to target { "sdk": { - "version": "3.1.200" -+ "version": "5.0.100-preview.8.20417.9" ++ "version": "5.0.100-rc.1.20452.10" } } ``` @@ -65,6 +65,13 @@ If updating a Blazor WebAssembly project, skip to the [Update Blazor WebAssembly For Blazor WebAssembly projects, apply the following changes in the project file: +1. Update the SDK from `Microsoft.NET.Sdk.Web` to `Microsoft.NET.Sdk.BlazorWebAssembly`: + + ```diff + - + + + ``` + 1. Update the following properties: ```diff @@ -74,8 +81,6 @@ For Blazor WebAssembly projects, apply the following changes in the project file - netstandard2.1 - 3.0 + net5.0 - + browser-wasm - + true ``` @@ -95,9 +100,9 @@ In the project file, update each [Microsoft.AspNetCore.*](https://www.nuget.org/ - - - -+ -+ -+ ++ ++ ++ ```