Question
Under "Create Blazor components" Section
There is a dotnet command for creating a Blazor app by using the blazorserver template in CLI, it doesn't work anymore. The command is below:
dotnet new blazorserver -o BlazingPizzaSite -f net6.0
Source URL: https://learn.microsoft.com/en-us/training/modules/interact-with-data-blazor-web-apps/2-create-user-interfaces-with-blazor-components
My Suggestion
My understanding that the Blazor framework provides templates for creating apps in two ways:
- Blazor Web App project template:
blazor
- Blazor WebAssembly Standalone app project template:
blazorwasm
Based on this information, my suggested command for modifing the content of this training is below:
dotnet new blazor -o BlazzingPizzaSite -f net8.0
This question is related to the following Learning Module