Skip to content

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

  1. Purchase and Download: Grab the BlazorSaas.Templates.<version>.nupkg file from blazorsaas.com after purchase. (Replace <version> with the latest semver, like 1.0.0.)
  2. Install Locally: Run this in your terminal:
Terminal window
dotnet new --install BlazorSaas.Templates.<version>.nupkg

This adds the template to your dotnet new options.

Create Your App

Generate a new project:

Terminal window
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:

Terminal window
dotnet new --uninstall BlazorSaas.Templates