Getting Started
BlazorSaas is a dotnet template that takes you from code to cloud fast. This page walks you through installing it and creating your app.
Prerequisites
- .NET 9 SDK
Install the Template
- Purchase and Download: Grab the
BlazorSaas.Templates.<version>.nupkg
file from blazorsaas.com after purchase. (Replace<version>
with the latest semver, like1.0.0
.) - Install Locally: Run this in your terminal:
dotnet new --install BlazorSaas.Templates.<version>.nupkg
This adds the template to your dotnet new
options.
Create Your App
Generate a new project:
dotnet new blazorsaas-starterkit -n "MyApplication" -o MyApplication
-n "MyApplication"
sets your app’s name.
-o MyApplication"
outputs to a folder named MyApplication.
Uninstalling (Optional)
If you need to remove the template later:
dotnet new --uninstall BlazorSaas.Templates