Source profileQuality 90/100

dotnet/skills/plugins/dotnet-aspnetcore/skills/convert-blazor-server-to-webapp/SKILL.md

convert-blazor-server-to-webapp

Guides conversion of a pre-.NET 8 Blazor Server app into a .NET 8+ Blazor Web App. USE FOR: migrating apps that use AddServerSideBlazor and MapBlazorHub to the AddRazorComponents/MapRazorComponents model, converting _Host.cshtml to an App.razor root component, replacing blazor.server.js with blazor.web.js, migrating CascadingAuthenticationState to a service, adopting new Blazor Web App features like enhanced navigation and streaming rendering. DO NOT USE FOR: apps that are already Blazor Web App

Source repository stars
4,922
Declared platforms
0
Static risk flags
1
Last source update
2026-08-04
Source checked
2026-08-04

Decision brief

What it does—and where it fits

This skill helps an agent convert a pre-.NET 8 Blazor Server app into a .NET 8+ Blazor Web App. The old hosting model uses AddServerSideBlazor/MapBlazorHub with a Host.cshtml Razor Page as the entry point. The new Blazor Web App model uses AddRazorComponents/MapRazorComponents w…

Best for

  • Migrating a Blazor Server app from .NET 6 or .NET 7 to .NET 8+
  • App currently uses AddServerSideBlazor() and MapBlazorHub() in Program.cs (or Startup.cs)
  • App uses Pages/Host.cshtml (or Host.razor) as the host page with Component Tag Helpers

Not for

  • The app already uses AddRazorComponents and MapRazorComponents. It is already a Blazor Web App — no conversion is needed. Stop here and tell the user the app is already using the Blazor Web App model.
  • Blazor WebAssembly or hosted Blazor WebAssembly app — these have a different migration path

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/dotnet/skills --skill "plugins/dotnet-aspnetcore/skills/convert-blazor-server-to-webapp"
Safe inspection promptEditorial

Inspect the Agent Skill "convert-blazor-server-to-webapp" from https://github.com/dotnet/skills/blob/805a42a675a47f14fdd77a54aa474fcb8e499b9e/plugins/dotnet-aspnetcore/skills/convert-blazor-server-to-webapp/SKILL.md at commit 805a42a675a47f14fdd77a54aa474fcb8e499b9e. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Workflow

    Commit strategy: Commit after each logical step so the migration is reviewable and bisectable.

    Change the Target Framework Moniker (TFM) to the target version:Update all Microsoft.AspNetCore., Microsoft.EntityFrameworkCore., Microsoft.Extensions., and System.Net.Http.Json package references to the matching version.Create a new file Routes.razor in the project root.
  2. 02

    Step 1: Update the project file

    Update the .csproj file:

    Change the Target Framework Moniker (TFM) to the target version:Update all Microsoft.AspNetCore., Microsoft.EntityFrameworkCore., Microsoft.Extensions., and System.Net.Http.Json package references to the matching version.Update the .csproj file:
  3. 03

    Step 2: Create Routes.razor from App.razor

    The old App.razor contains the component. This content moves to a new Routes.razor file so that App.razor can become the root HTML document component.

    Create a new file Routes.razor in the project root.Move the entire content of App.razor into Routes.razor.If the content is wrapped in , remove that wrapper (it will be replaced by a service in Step 5).
  4. 04

    Step 3: Convert Host.cshtml to App.razor

    Move the HTML shell from Pages/Host.cshtml into the now-empty App.razor and transform it from a Razor Page into a Razor component:

    Remove Razor Page directives — delete @page "/", @using Microsoft.AspNetCore.Components.Web, @namespace, and @addTagHelper , Microsoft.AspNetCore.Mvc.TagHelpers.Add component injection — if using environment-conditional error UI, add:Fix the base tag — replace with .
  5. 05

    Step 4: Update Program.cs

    Make the following changes to Program.cs (or Startup.cs if the app uses the older hosting pattern):

    Replace Blazor Server services — replace:Replace Blazor endpoint mapping — replace:Remove the fallback route — delete:

Permission review

Static risk signals and limitations

Writes files

medium · line 33

The documentation asks the agent to create, modify, or delete local files.

### Step 1: Update the project file

Writes files

medium · line 35

The documentation asks the agent to create, modify, or delete local files.

Update the `.csproj` file:

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score90/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars4,922SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
dotnet/skills
Skill path
plugins/dotnet-aspnetcore/skills/convert-blazor-server-to-webapp/SKILL.md
Commit
805a42a675a47f14fdd77a54aa474fcb8e499b9e
License
MIT
Collected
2026-08-04
Default branch
main
View the original SKILL.md

Convert Blazor Server App to Blazor Web App

This skill helps an agent convert a pre-.NET 8 Blazor Server app into a .NET 8+ Blazor Web App. The old hosting model uses AddServerSideBlazor/MapBlazorHub with a _Host.cshtml Razor Page as the entry point. The new Blazor Web App model uses AddRazorComponents/MapRazorComponents with an App.razor root component, enabling per-component render modes, enhanced navigation, streaming rendering, and other .NET 8+ features. The converted app uses InteractiveServer render mode to preserve existing interactive behavior.

When to Use

  • Migrating a Blazor Server app from .NET 6 or .NET 7 to .NET 8+
  • App currently uses AddServerSideBlazor() and MapBlazorHub() in Program.cs (or Startup.cs)
  • App uses Pages/_Host.cshtml (or _Host.razor) as the host page with Component Tag Helpers
  • Want to adopt new Blazor Web App features while keeping interactive server rendering

When Not to Use

  • The app already uses AddRazorComponents and MapRazorComponents. It is already a Blazor Web App — no conversion is needed. Stop here and tell the user the app is already using the Blazor Web App model.
  • Blazor WebAssembly or hosted Blazor WebAssembly app — these have a different migration path
  • The app should stay on the legacy Blazor Server hosting model (just update TFM and packages)
  • The app targets .NET Framework — it must be migrated to .NET first

Inputs

InputRequiredDescription
Blazor Server projectYesThe .csproj and source files of the Blazor Server app
Target frameworkYes.NET 8 or later (e.g., net8.0, net9.0, net10.0)
Program.cs or Startup.csYesThe app's service and middleware configuration
_Host.cshtml locationRecommendedUsually Pages/_Host.cshtml; may be _Host.razor in some projects

Workflow

Commit strategy: Commit after each logical step so the migration is reviewable and bisectable.

Step 1: Update the project file

Update the .csproj file:

  1. Change the Target Framework Moniker (TFM) to the target version:
    <TargetFramework>net8.0</TargetFramework>
    
  2. Update all Microsoft.AspNetCore.*, Microsoft.EntityFrameworkCore.*, Microsoft.Extensions.*, and System.Net.Http.Json package references to the matching version.

For non-Blazor project file changes (nullable reference types, implicit usings, HTTP/3 support, etc.), see the general ASP.NET Core migration guide.

Step 2: Create Routes.razor from App.razor

The old App.razor contains the <Router> component. This content moves to a new Routes.razor file so that App.razor can become the root HTML document component.

  1. Create a new file Routes.razor in the project root.
  2. Move the entire content of App.razor into Routes.razor.
  3. If the content is wrapped in <CascadingAuthenticationState>, remove that wrapper (it will be replaced by a service in Step 5).
  4. Leave App.razor empty for the next step.

The resulting Routes.razor should look similar to:

<Router AppAssembly="@typeof(Program).Assembly">
    <Found Context="routeData">
        <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
        <FocusOnNavigate RouteData="@routeData" Selector="h1" />
    </Found>
    <NotFound>
        <LayoutView Layout="@typeof(MainLayout)">
            <p>Sorry, there's nothing at this address.</p>
        </LayoutView>
    </NotFound>
</Router>

If the app uses <AuthorizeRouteView> instead of <RouteView>, keep it — it works the same way in Blazor Web Apps.

Step 3: Convert _Host.cshtml to App.razor

Move the HTML shell from Pages/_Host.cshtml into the now-empty App.razor and transform it from a Razor Page into a Razor component:

  1. Remove Razor Page directives — delete @page "/", @using Microsoft.AspNetCore.Components.Web, @namespace, and @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers.

  2. Add component injection — if using environment-conditional error UI, add:

    @inject IHostEnvironment Env
    
  3. Fix the base tag — replace <base href="~/" /> with <base href="/" />.

  4. Replace HeadOutlet Component Tag Helper — replace:

    <component type="typeof(HeadOutlet)" render-mode="ServerPrerendered" />
    

    with:

    <HeadOutlet @rendermode="InteractiveServer" />
    
  5. Replace App Component Tag Helper with Routes — replace:

    <component type="typeof(App)" render-mode="ServerPrerendered" />
    

    with:

    <Routes @rendermode="InteractiveServer" />
    
  6. Replace Environment Tag Helpers — replace:

    <environment include="Staging,Production">
        An error has occurred. This application may no longer respond until reloaded.
    </environment>
    <environment include="Development">
        An unhandled exception has occurred. See browser dev tools for details.
    </environment>
    

    with:

    @if (Env.IsDevelopment())
    {
        <text>
            An unhandled exception has occurred. See browser dev tools for details.
        </text>
    }
    else
    {
        <text>
            An error has occurred. This app may no longer respond until reloaded.
        </text>
    }
    
  7. Update the Blazor script — replace:

    <script src="_framework/blazor.server.js"></script>
    

    with:

    <script src="_framework/blazor.web.js"></script>
    
  8. Add render mode import — add to _Imports.razor:

    @using static Microsoft.AspNetCore.Components.Web.RenderMode
    
  9. Delete Pages/_Host.cshtml (and Pages/_Host.cshtml.cs if it exists).

Prerendering note: If the original app used render-mode="Server" (not "ServerPrerendered"), prerendering was disabled. Preserve this by using new InteractiveServerRenderMode(prerender: false) instead of InteractiveServer for both HeadOutlet and Routes.

Step 4: Update Program.cs

Make the following changes to Program.cs (or Startup.cs if the app uses the older hosting pattern):

  1. Replace Blazor Server services — replace:

    builder.Services.AddServerSideBlazor();
    

    with:

    builder.Services.AddRazorComponents()
        .AddInteractiveServerComponents();
    

    If AddServerSideBlazor had options configured (e.g., circuit options, hub options, detailed errors), migrate them to AddInteractiveServerComponents:

    // Old:
    builder.Services.AddServerSideBlazor(options =>
    {
        options.DetailedErrors = true;
        options.DisconnectedCircuitRetentionPeriod = TimeSpan.FromMinutes(10);
    });
    
    // New:
    builder.Services.AddRazorComponents()
        .AddInteractiveServerComponents(options =>
        {
            options.DetailedErrors = true;
            options.DisconnectedCircuitRetentionPeriod = TimeSpan.FromMinutes(10);
        });
    
  2. Replace Blazor endpoint mapping — replace:

    app.MapBlazorHub();
    

    with:

    app.MapRazorComponents<App>()
        .AddInteractiveServerRenderMode();
    

    Ensure there is a using statement for the project's root namespace so that App resolves to the App.razor component.

  3. Remove the fallback route — delete:

    app.MapFallbackToPage("/_Host");
    
  4. Remove explicit routing middleware — delete if present:

    app.UseRouting();
    

    Endpoint routing is the default and explicit UseRouting() is no longer needed.

  5. Add antiforgery middleware — add after UseAuthentication/UseAuthorization if present:

    app.UseAntiforgery();
    

    AddRazorComponents registers antiforgery services automatically, but the middleware must be explicitly added to the pipeline. Without it, form POST requests fail with 400 errors.

Step 5: Migrate CascadingAuthenticationState (if present)

If the app used <CascadingAuthenticationState> to wrap the router:

  1. Remove the <CascadingAuthenticationState> component wrapper (already done in Step 2 if following this workflow).
  2. Add the cascading authentication state service in Program.cs:
    builder.Services.AddCascadingAuthenticationState();
    

The component wrapper approach does not work across render mode boundaries in Blazor Web Apps. The service-based approach provides Task<AuthenticationState> as a cascading value to all components regardless of render mode.

Step 6: Recommended improvements (optional)

These are optional modernization improvements — not required for the conversion to work. If you suggest any of these, state explicitly that they are optional.

  • Replace UseStaticFiles with MapStaticAssets (.NET 9+): app.MapStaticAssets() provides optimized static file serving with fingerprinting, pre-compression, and content-based ETags. See MapStaticAssets documentation.
  • Add @attribute [StreamRendering] to pages with async data loading (OnInitializedAsync) for improved perceived performance. The page renders its initial synchronous content immediately and re-renders when async data arrives.
  • Update CSS isolation bundle reference if the <link> tag referenced a _Host assembly name; ensure it matches the project's actual assembly name: <link href="{AssemblyName}.styles.css" rel="stylesheet" />.
  • For other non-Blazor improvements (minimal hosting, HTTP/3, output caching, etc.), see the general ASP.NET Core migration guide.

Step 7: Verify the migration

  1. Build the project targeting the new framework. Confirm no compile errors.
  2. Search for remaining references to removed APIs:
    • AddServerSideBlazor
    • MapBlazorHub
    • MapFallbackToPage
    • blazor.server.js
    • _Host.cshtml
  3. Run the app and verify:
    • Pages load and render correctly
    • Interactive features work (forms, event handlers, SignalR circuits)
    • Navigation between pages works
    • Authentication and authorization flows work if present
  4. Run existing tests.

Validation

  • No references to AddServerSideBlazor remain
  • No references to MapBlazorHub remain
  • No references to MapFallbackToPage("/_Host") remain
  • No references to blazor.server.js remain
  • Pages/_Host.cshtml has been deleted
  • App.razor serves as the root component with a full HTML document structure
  • Routes.razor contains the <Router> configuration
  • Program.cs uses AddRazorComponents().AddInteractiveServerComponents()
  • Program.cs uses MapRazorComponents<App>().AddInteractiveServerRenderMode()
  • app.UseAntiforgery() is present in the middleware pipeline
  • If the app used <CascadingAuthenticationState>, it has been replaced with AddCascadingAuthenticationState() service registration
  • App builds and runs successfully on the target framework

Common Pitfalls

PitfallSolution
Missing UseAntiforgery() middlewareAddRazorComponents registers antiforgery services, but the middleware must be explicitly added. Place app.UseAntiforgery() after UseAuthentication/UseAuthorization. Without it, form POST requests fail with 400 errors.
Forgetting to replace blazor.server.js with blazor.web.jsThe old script does not work with the Blazor Web App model. Replace all references to _framework/blazor.server.js with _framework/blazor.web.js.
Not removing <CascadingAuthenticationState> wrapperThe component wrapper does not work across render mode boundaries in Blazor Web Apps. Use builder.Services.AddCascadingAuthenticationState() instead.
Leaving app.UseRouting() in the pipelineExplicit UseRouting() is no longer needed and can interfere with endpoint routing. Remove it unless other middleware specifically requires it.
Using InteractiveServer when prerendering was disabledIf the original app used render-mode="Server" (not "ServerPrerendered"), use new InteractiveServerRenderMode(prerender: false) to preserve the same behavior. Using InteractiveServer enables prerendering which can cause unexpected issues with components that depend on JS interop during initialization.
Not migrating AddServerSideBlazor circuit optionsIf circuit options, hub options, or detailed error settings were configured, migrate them to AddInteractiveServerComponents(options => { ... }). Otherwise those settings are silently lost.
UseAntiforgery() placed before authentication middlewareThe antiforgery middleware must be placed after UseAuthentication and UseAuthorization. Placing it before causes antiforgery validation to run before the user identity is established.
CSS isolation bundle link has wrong assembly nameIf the <link href="{Name}.styles.css"> tag referenced the old project name, update it to match the current assembly name.

More Info

Alternatives

Compare before choosing

Computed 9647,525

prisma/prisma

prisma-8-migration-review

Review what Prisma Next migrations will run on merge or deploy, render the migration graph, resolve concurrent / diamond-convergence conflicts, and configure environment refs for CI. Use for "what migrations are going to run", "what runs on deploy", merge conflict, diamond convergence, concurrent migrations, migration status, ref management, staging, production, MIGRATION.DIVERGED, MIGRATION.NO_MARKER, MIGRATION.MARKER_NOT_IN_HISTORY, prisma migrate status, prisma migrate diff, prisma migrate re

Computed 9618,447

teng-lin/notebooklm-py

notebooklm

Complete API for Google NotebookLM - full programmatic access including features not in the web UI. Create notebooks, add sources, generate all artifact types, download in multiple formats. Activates on explicit /notebooklm or intent like "create a podcast about X"

Computed 9614,225

wanshuiyin/Auto-claude-code-research-in-sleep

grant-proposal

Use it for deployment and design tasks; the detail page covers purpose, installation, and practical steps.

Computed 9610,895

huggingface/skills

huggingface-lora-space-builder

Build and publish a Gradio demo on Hugging Face Spaces for a user-provided LoRA. Use when someone asks to create, generate, ship, or publish a Space, demo, Gradio app, or playground for a LoRA — including LoRAs for Qwen-Image, Qwen-Image-Edit, LTX-Video, Wan, FLUX, SDXL, or other diffusion base models. Also triggers when someone describes a LoRA they trained or hosts on the Hub and wants to share it. Covers picking the right base pipeline and `diffusers` inference recipe, designing a UI tailored