Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Note
This isn't the latest version of this article. For the current release, see the .NET 9 version of this article.
Warning
This version of ASP.NET Core is no longer supported. For more information, see the .NET and .NET Core Support Policy. For the current release, see the .NET 9 version of this article.
Important
This information relates to a pre-release product that may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
For the current release, see the .NET 9 version of this article.
This article explains how to host and deploy Blazor apps.
Publish the app
Apps are published for deployment in Release configuration.
Note
Publish a hosted Blazor WebAssembly solution from the Server project.
- Select the Publish {APPLICATION} command from the Build menu, where the
{APPLICATION}
placeholder the app's name. - Select the publish target. To publish locally, select Folder.
- Accept the default location in the Choose a folder field or specify a different location. Select the
Publish
button.
Publishing the app triggers a restore of the project's dependencies and builds the project before creating the assets for deployment. As part of the build process, unused methods and assemblies are removed to reduce app download size and load times.
Default publish locations
- Blazor Web App: The app is published into the
/bin/Release/{TARGET FRAMEWORK}/publish
folder, where the{TARGET FRAMEWORK}
placeholder is the target framework. Deploy the contents of thepublish
folder to the host. - Standalone Blazor WebAssembly: The app is published into the
bin/Release/{TARGET FRAMEWORK}/publish
orbin/Release/{TARGET FRAMEWORK}/browser-wasm/publish
folder. To deploy the app as a static site, copy the contents of thewwwroot
folder to the static site host.
- Blazor Server: The app is published into the
/bin/Release/{TARGET FRAMEWORK}/publish
folder, where the{TARGET FRAMEWORK}
placeholder is the target framework.. Deploy the contents of thepublish
folder to the host. - Blazor WebAssembly
- Standalone: The app is published into the
/bin/Release/{TARGET FRAMEWORK}/publish
orbin/Release/{TARGET FRAMEWORK}/browser-wasm/publish
folder. To deploy the app as a static site, copy the contents of thewwwroot
folder to the static site host. - Hosted: The server ASP.NET Core app and client Blazor WebAssembly app are published into the
/bin/Release/{TARGET FRAMEWORK}/publish
folder of the server app, along with any static web assets of the client app. Deploy the contents of thepublish
folder to the host.
- Standalone: The app is published into the
IIS
To host a Blazor app in IIS, see the following resources:
- IIS hosting
- Host and deploy ASP.NET Core server-side Blazor apps: Server apps running on IIS, including IIS with Azure Virtual Machines (VMs) running Windows OS and Azure App Service.
- Host and deploy ASP.NET Core Blazor WebAssembly: Includes additional guidance for Blazor WebAssembly apps hosted on IIS, including static site hosting, custom
web.config
files, URL rewriting, sub-apps, compression, and Azure Storage static file hosting. - IIS sub-application hosting
- Follow the app base path guidance prior to publishing the app. The examples use an app base path of
/CoolApp
and show how to obtain the base path from app settings or other configuration providers. - Follow the sub-application configuration guidance in Advanced configuration. The sub-app's folder path under the root site becomes the virtual path of the sub-app. For an app base path of
/CoolApp
, the Blazor app is placed in a folder namedCoolApp
under the root site and the sub-app takes on a virtual path of/CoolApp
.
- Follow the app base path guidance prior to publishing the app. The examples use an app base path of
Sharing an app pool among ASP.NET Core apps isn't supported, including for Blazor apps. Use one app pool per app when hosting with IIS, and avoid the use of IIS's virtual directories for hosting multiple apps.
One or more Blazor WebAssembly apps hosted by an ASP.NET Core app, known as a hosted Blazor WebAssembly solution, are supported for one app pool. However, we don't recommend or support assigning a single app pool to multiple hosted Blazor WebAssembly solutions or in sub-app hosting scenarios.
For more information on solutions, see Tooling for ASP.NET Core Blazor.
Blazor Server MapFallbackToPage
configuration
This section only applies to Blazor Server apps. MapFallbackToPage isn't supported in Blazor Web Apps and Blazor WebAssembly apps.
In scenarios where an app requires a separate area with custom resources and Razor components:
Create a folder within the app's
Pages
folder to hold the resources. For example, an administrator section of an app is created in a new folder namedAdmin
(Pages/Admin
).Create a root page (
_Host.cshtml
) for the area. For example, create aPages/Admin/_Host.cshtml
file from the app's main root page (Pages/_Host.cshtml
). Don't provide an@page
directive in the Admin_Host
page.Add a layout to the area's folder (for example,
Pages/Admin/_Layout.razor
). In the layout for the separate area, set the<base>
taghref
to match the area's folder (for example,<base href="/Admin/" />
). For demonstration purposes, add~/
to the static resources in the page. For example:~/css/bootstrap/bootstrap.min.css
~/css/site.css
~/BlazorSample.styles.css
(the example app's namespace isBlazorSample
)~/_framework/blazor.server.js
(Blazor script)
If the area should have its own static asset folder, add the folder and specify its location to Static File Middleware in
Program.cs
(for example,app.UseStaticFiles("/Admin/wwwroot")
).Razor components are added to the area's folder. At a minimum, add an
Index
component to the area folder with the correct@page
directive for the area. For example, add aPages/Admin/Index.razor
file based on the app's defaultPages/Index.razor
file. Indicate the Admin area as the route template at the top of the file (@page "/admin"
). Add additional components as needed. For example,Pages/Admin/Component1.razor
with an@page
directive and route template of@page "/admin/component1
.In
Program.cs
, call MapFallbackToPage for the area's request path immediately before the fallback root page path to the_Host
page:... app.UseRouting(); app.MapBlazorHub(); app.MapFallbackToPage("~/Admin/{*clientroutes:nonfile}", "/Admin/_Host"); app.MapFallbackToPage("/_Host"); app.Run();
ASP.NET Core