diff --git a/aspnetcore/migration/31-to-50.md b/aspnetcore/migration/31-to-50.md index 4dc4c7cc2a..af901dd476 100644 --- a/aspnetcore/migration/31-to-50.md +++ b/aspnetcore/migration/31-to-50.md @@ -68,7 +68,7 @@ If updating a Blazor WebAssembly project, skip to the [Update Blazor WebAssembly + ``` - Standalone Blazor WebAssembly example: + Standalone Blazor WebAssembly or Blazor Server example: ```diff + @@ -80,7 +80,7 @@ If updating a Blazor WebAssembly project, skip to the [Update Blazor WebAssembly + ``` -1. In the `Shared/MainLayout.razor` file, surround all of the content in a `
` element with an `class` of `page`: +1. In the `MainLayout` component (`Shared/MainLayout.razor`), surround the component's HTML markup with a `
` element that has a `class` attribute set to `page`: ```razor
@@ -333,7 +333,7 @@ For a Blazor WebAssembly project, including the *`Client`* project of a hosted B +Loading... ``` -1. In `Program.Main`: +1. In `Program.Main` (`Program.cs`): * Change the reference to the `` element to a CSS selector by adding a hash `#` to it. * Change the `HttpClient` registration to scoped.