Skip to content

Commit 2cd28f1

Browse files
authored
[Blazor] webassembly-lazy-load-assemblies.md - Forms package already referenced (#34242)
1 parent fcd4f95 commit 2cd28f1

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

aspnetcore/blazor/webassembly-lazy-load-assemblies.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -336,13 +336,9 @@ Create a standalone Blazor WebAssembly app to demonstrate lazy loading of a Razo
336336

337337
Add an ASP.NET Core class library project to the solution:
338338

339-
* Visual Studio: Right-click the solution file in **Solution Explorer** and select **Add** > **New project**. From the dialog of new project types, select **Razor Class Library**. Name the project `GrantImaharaRobotControls`. Do **not** select the **Support pages and view** checkbox.
339+
* Visual Studio: Right-click the solution file in **Solution Explorer** and select **Add** > **New project**. From the dialog of new project types, select **Razor Class Library**. Name the project `GrantImaharaRobotControls`. Do **not** select the **Support pages and views** checkbox.
340340
* Visual Studio Code/.NET CLI: Execute `dotnet new razorclasslib -o GrantImaharaRobotControls` from a command prompt. The `-o|--output` option creates a folder and names the project `GrantImaharaRobotControls`.
341341

342-
The example component presented later in this section uses a [Blazor form](xref:blazor/forms/index). In the RCL project, add the [`Microsoft.AspNetCore.Components.Forms`](https://www.nuget.org/packages/Microsoft.AspNetCore.Components.Forms) package to the project.
343-
344-
[!INCLUDE[](~/includes/package-reference.md)]
345-
346342
Create a `HandGesture` class in the RCL with a `ThumbUp` method that hypothetically makes a robot perform a thumbs-up gesture. The method accepts an argument for the axis, `Left` or `Right`, as an [`enum`](/dotnet/csharp/language-reference/builtin-types/enum). The method returns `true` on success.
347343

348344
`HandGesture.cs`:

0 commit comments

Comments
 (0)