create-blazor-project

Automate creation of ASP.NET Core web apps with Blazor render modes.

Updated May 28, 2026
One-click install
npx skills add https://github.com/ojrojas/AgentsInstructions --skill create-blazor-project
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: create-blazor-project
Source: https://github.com/ojrojas/AgentsInstructions/tree/main/.claude/skills/dotnet-blazor/skills/create-blazor-project
Command: npx skills add https://github.com/ojrojas/AgentsInstructions --skill create-blazor-project

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires Blazor, .NET Core, and includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill addresses the need for efficiently setting up new ASP.NET Core web applications using the Blazor framework, simplifying the creation of interactive web experiences.

Core Features & Use Cases

  • Scaffolding: Automated setup of new web apps with Blazor, including choice of render modes.
  • Render Modes: Supports static server-side rendering, interactive server-side rendering, interactive WebAssembly, and auto-rendering.
  • Use Case: Ideal for developers looking to quickly kickstart a new project with Blazor, selecting the appropriate rendering strategy based on project requirements.

Quick Start

Scaffold a new Blazor project with interactive WebAssembly by running: dotnet new blazor -o MyBlazorApp -int WebAssembly

Frequently Asked Questions about create-blazor-project

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scaffold a new ASP.NET Core web application with Blazor?

You can scaffold a Blazor project by running the dotnet new blazor command with your desired output directory and rendering mode. This automates the setup of a new ASP.NET Core web application tailored for interactive web experiences.

What rendering modes are supported when creating a Blazor project?

Blazor project creation supports multiple rendering modes, including static server-side rendering, interactive server-side rendering, interactive WebAssembly, and auto-rendering. You can select the appropriate rendering strategy based on your specific project requirements.

Do I need .NET Core installed to set up a Blazor web app?

Yes, you need both Blazor and .NET Core installed in your development environment to use this scaffolding automation. These dependencies are required to generate and run the new ASP.NET Core web application.

How do I start a Blazor project using interactive WebAssembly?

To start a Blazor project with interactive WebAssembly, run the command: dotnet new blazor -o MyBlazorApp -int WebAssembly. This quickly kickstarts your project with the WebAssembly rendering strategy.

What is the best way to quickly kickstart a Blazor project with a specific rendering strategy?

The best way to kickstart a Blazor project is by using automated scaffolding, which allows you to select your desired rendering strategy during setup. This simplifies the creation of interactive web experiences without manual configuration.

Can I use this scaffolding for static server-side rendering in Blazor?

Yes, the scaffolding supports static server-side rendering alongside interactive server-side rendering and WebAssembly. You can choose this specific render mode when setting up your new ASP.NET Core web application to match your project needs.