Syncfusion WebAssembly App Template Installation
16 Jun 20261 minute to read
Overview
How to install and create a Syncfusion Blazor application using Syncfusion WebAssembly App Template
Note: Refer to the .NET SDK support for Syncfusion Blazor Components here.
The fastest way to get started is with the official Syncfusion WebAssembly App Template. It creates a fully configured Blazor app with all dependencies, theming, and syncfusion blazor components.
Install the template
dotnet new install Syncfusion.Blazor.WebAssemblyApp.TemplatesCreate a new project using Dotnet CLI
Create a new Blazor WebAssembly (Standalone) App
dotnet new syncfusionblazorwasmapp -n MyApp --pwa true --framework net10.0 --configure-for-https trueTemplate Options
| Option | Default | Description |
|---|---|---|
-n, --name
|
Required | Project name |
-f, --framework
|
net10.0 |
Target framework (net8.0, net9.0, or net10.0) |
-p, --pwa
|
true |
Supports Progressive Web Application |
-https, --configure-for-https
|
true |
Enables an HTTPS endpoint |
Then run your new project:
cd MyApp
dotnet run