Publishing Blazor WebAssembly to Azure App Service
In this section, we will publish the Blazor WebAssembly ASP.NET Core Hosted version to the cloud, specifically Azure, and the hosting service will be Azure App Service.
Azure App Service is a Platform-as-a-Service (PaaS) solution that allows the deployment of web apps at scale. The service is fully managed by Azure and it supports different programming languages and frameworks, in addition to supporting containers.
Azure App Service provides multiple deployment options to push your app to it:
- Continuous deployment: Azure App Service supports continuous deployment from multiple sources, such as GitHub, Azure DevOps, and Bitbucket. This means that whenever changes are pushed to the source code repository, the application will be built and deployed automatically to Azure App Service. You can learn more about continuous deployment for Azure App Service at https://learn.microsoft.com/en-us/azure/app-service/deploy-continuous...