====== MudBlazor Installation ====== Install .NET templates: dotnet new install MudBlazor.Templates Create a new project, as Auto: dotnet new mudblazor --interactivity Auto --name MyApplication --all-interactive ...or WebAssembly: dotnet new mudblazor --interactivity WebAssembly --name MyApplication --all-interactive ...or Server: dotnet new mudblazor --interactivity Server --name MyApplication --all-interactive See all options: dotnet new mudblazor --help {{tag>dotnet}}