Events
Take the Microsoft Learn Challenge
Nov 19, 11 PM - Jan 10, 11 PM
Ignite Edition - Build skills in Microsoft Azure and earn a digital badge by January 10!
Register nowThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Starting June 1, 2024, all newly created App Service apps will have the option to generate a unique default hostname using the naming convention <app-name>-<random-hash>.<region>.azurewebsites.net
. Existing app names will remain unchanged.
Example: myapp-ds27dh7271aah175.westus-01.azurewebsites.net
For further details, refer to Unique Default Hostname for App Service Resource.
In this quickstart, you learn how to create and deploy your first ASP.NET web app to Azure App Service. App Service supports various versions of .NET apps, and provides a highly scalable, self-patching web hosting service. ASP.NET web apps are cross-platform and can be hosted on Linux or Windows. When you're finished, you have an Azure resource group consisting of an App Service hosting plan and an App Service with a deployed web application.
Alternatively, you can deploy an ASP.NET web app as part of a Windows or Linux container in App Service.
Tip
Find GitHub Copilot tips in the Visual Studio, Visual Studio Code, and Azure portal steps.
Note
Building .NET 9 (STS) apps with Windows App Service using MSBuild or SCM_DO_BUILD is not yet supported. Support for these build scenarios will come after the initial GA date and by December 4th, 2024. Deployments that build outside of App Service through Visual Studio, Visual Studio Code, GitHub Actions and Azure DevOps are fully supported.
If you already installed Visual Studio 2022:
Open Visual Studio and then select Create a new project.
In Create a new project, find, and select ASP.NET Core Web App (Razor Pages), then select Next.
In Configure your new project, name the application MyFirstAzureWebApp, and then select Next.
Select .NET 8.0 (Long Term Support).
Ensure Authentication type is set to None. Select Create.
From the Visual Studio menu, select Debug > Start Without Debugging to run the web app locally. If you see a message asking you to trust a self-signed certificate, select Yes.
Tip
If you have a GitHub Copilot account, try getting GitHub Copilot features for Visual Studio.
Open a terminal window on your machine to a working directory. Create a new .NET web app using the dotnet new webapp
command, and then change directories into the newly created app.
dotnet new webapp -n MyFirstAzureWebApp --framework net8.0
cd MyFirstAzureWebApp
From the same terminal session, run the application locally using the dotnet run
command.
dotnet run --urls=https://localhost:5001/
Open a web browser, and navigate to the app at https://localhost:5001
.
You see the template ASP.NET Core 8.0 web app displayed in the page.
In this step, you fork a demo project to deploy.
This quickstart uses the Azure Developer CLI (azd
) both to create Azure resources and deploy code to it. For more information about Azure Developer CLI, visit the documentation or training path.
Retrieve and initialize the ASP.NET Core web app template for this quickstart using the following steps:
Open a terminal window on your machine to an empty working directory. Initialize the azd
template using the azd init
command.
azd init --template https://github.com/Azure-Samples/quickstart-deploy-aspnet-core-app-service.git
When prompted for an environment name, enter dev
.
From the same terminal session, run the application locally using the dotnet run
command. Use the --project
parameter to specify the src
directory of the azd
template, which is where the application code lives.
dotnet run --project src --urls=https://localhost:5001/
Open a web browser and navigate to the app at https://localhost:5001
. The ASP.NET Core 8.0 web app template is displayed on the page.
Follow these steps to create your App Service resources and publish your project:
In Solution Explorer, right-click the MyFirstAzureWebApp project and select Publish.
In Publish, select Azure and then Next.
Choose the Specific target, either Azure App Service (Linux) or Azure App Service (Windows). Then, select Next.
Important
When targeting ASP.NET Framework 4.8, use Azure App Service (Windows).
Your options depend on whether you're signed in to Azure already and whether you have a Visual Studio account linked to an Azure account. Select either Add an account or Sign in to sign in to your Azure subscription. If you're already signed in, select the account you want.
To the right of App Service instances, select +.
For Subscription, accept the subscription that is listed or select a new one from the drop-down list.
For Resource group, select New. In New resource group name, enter myResourceGroup and select OK.
For Hosting Plan, select New.
In the Hosting Plan: Create new dialog, enter the values specified in the following table:
Setting | Suggested value | Description |
---|---|---|
Hosting Plan | MyFirstAzureWebAppPlan | Name of the App Service plan. |
Location | West Europe | The datacenter where the web app is hosted. |
Size | Choose the lowest tier. | Pricing tiers define hosting features. |
In Name, enter a unique app name that includes only the valid characters are a-z
, A-Z
, 0-9
, and -
. You can accept the automatically generated unique name. The URL of the web app is http://<app-name>.azurewebsites.net
, where <app-name>
is your app name.
Select Create to create the Azure resources.
Once the wizard completes, the Azure resources are created for you, and you're ready to publish your ASP.NET Core project.
In the Publish dialog, ensure your new App Service app is selected, then select Finish, then select Close. Visual Studio creates a publish profile for you for the selected App Service app.
In the Publish page, select Publish. If you see a warning message, select Continue.
Visual Studio builds, packages, and publishes the app to Azure, and then launches the app in the default browser.
You see the ASP.NET Core 8.0 web app displayed in the page.
Open Visual Studio Code from your project's root directory.
code .
If prompted, select Yes, I trust the authors.
Tip
If you have a GitHub Copilot account, try getting GitHub Copilot features for Visual Studio Code.
In Visual Studio Code, open the Command Palette by selecting View > Command Palette.
Search for and select "Azure App Service: Create New Web App (Advanced)".
Respond to the prompts as follows:
a-z
, 0-9
, and -
). A good pattern is to use a combination of your company name and an app identifier.myResourceGroup
.In the popup Always deploy the workspace "MyFirstAzureWebApp" to <app-name>", select Yes so that Visual Studio Code deploys to the same App Service app every time you're in that workspace.
When publishing completes, select Browse Website in the notification and select Open when prompted.
You see the ASP.NET Core 8.0 web app displayed in the page.
Sign into your Azure account by using the az login
command and following the prompt:
az login
az
command isn't recognized, ensure you have the Azure CLI installed as described in Prerequisites.Deploy the code in your local MyFirstAzureWebApp directory using the az webapp up
command:
az webapp up --sku F1 --name <app-name> --os-type <os>
<app-name>
with a name that's unique across all of Azure (valid characters are a-z
, 0-9
, and -
). A good pattern is to use a combination of your company name and an app identifier.--sku F1
argument creates the web app on the Free pricing tier. Omit this argument to use a faster premium tier, which incurs an hourly cost.<os>
with either linux
or windows
.--location <location-name>
where <location-name>
is an available Azure region. You can retrieve a list of allowable regions for your Azure account by running the az account list-locations
command.The command might take a few minutes to complete. While it's running, the command provides messages about creating the resource group, the App Service plan, and hosting app, configuring logging, then performing ZIP deployment. Then it shows a message with the app's URL:
You can launch the app at http://<app-name>.azurewebsites.net
Open a web browser and navigate to the URL:
You see the ASP.NET Core 8.0 web app displayed in the page.
Note
Azure PowerShell is recommended for creating apps on the Windows hosting platform. To create apps on Linux, use a different tool, such as Azure CLI.
Sign into your Azure account by using the Connect-AzAccount
command and following the prompt:
Connect-AzAccount
Create a new app by using the New-AzWebApp command:
New-AzWebApp -ResourceGroupName myResourceGroup -Name <app-name> -Location westeurope
<app-name>
with a name that's unique across all of Azure (valid characters are a-z
, 0-9
, and -
). A combination of your company name and an app identifier is a good pattern.-Location <location-name>
where <location-name>
is an available Azure region. You can retrieve a list of allowable regions for your Azure account by running the Get-AzLocation
command.The command might take a few minutes to complete. While it's running, the command creates a resource group, an App Service plan, and the App Service resource.
From the application root folder, prepare your local MyFirstAzureWebApp application for deployment using the dotnet publish
command:
dotnet publish --configuration Release
Change to the release directory and create a zip file from the contents:
cd bin\Release\net8.0\publish
Compress-Archive -Path * -DestinationPath deploy.zip
Publish the zip file to the Azure app using the Publish-AzWebApp command:
Publish-AzWebApp -ResourceGroupName myResourceGroup -Name <app-name> -ArchivePath (Get-Item .\deploy.zip).FullName -Force
Note
-ArchivePath
needs the full path of the zip file.
Open a web browser and navigate to the URL:
You see the ASP.NET Core 8.0 web app displayed in the page.
Type app services in the search. Under Services, select App Services.
In the App Services page, select Create > Web App.
In the Basics tab:
Select the Deployment tab at the top of the page
Under GitHub Actions settings, set Continuous deployment to Enable.
Under GitHub Actions details, authenticate with your GitHub account, and select the following options:
Note
By default, the creation wizard disables basic authentication and GitHub Actions deployment is created using a user-assigned identity. If you get a permissions error during resource creation, your Azure account may not have enough permissions. You can configure GitHub Actions deployment later with an identity generated for you by an Azure administrator, or you can also enable basic authentication instead.
Select the Review + create button at the bottom of the page.
After validation runs, select the Create button at the bottom of the page.
After deployment is complete, select Go to resource.
Browse to the deployed application in your web browser at the URL http://<app-name>.azurewebsites.net
. If you see the message "Your web app is running and waiting for your content", GitHub deployment is still running. Wait a couple of minutes and refresh the page.
The AZD template contains files that generate the following required resources for your application to run in App service:
Sign into your Azure account by using the azd auth login
command and following the prompt:
azd auth login
Create the Azure resources and deploy your app using the azd up
command:
azd up
The azd up
command might take a few minutes to complete. azd up
uses the Bicep files in your projects to create the resource group, App Service Plan, and hosting app. It also performs certain configurations such as enabling logging and deploys your compiled app code. While it's running, the command provides messages about the provisioning and deployment process, including a link to the deployment in Azure. When it finishes, the command also displays a link to the deploy application.
Open a web browser and navigate to the URL:
You see the ASP.NET Core 8.0 web app displayed in the page.
You'll make a change to Index.cshtml and redeploy to see the changes. In the .NET 8.0 template, it's in the Pages folder. In the .NET Framework 4.8 template, it's in the Views/Home folder. Follow these steps to update and redeploy your web app:
In Solution Explorer, under your project, open Index.cshtml.
Replace the first <div>
element with the following code:
<div class="jumbotron">
<h1>.NET 💜 Azure</h1>
<p class="lead">Example .NET app to Azure App Service.</p>
</div>
Tip
With GitHub Copilot enabled in Visual Studio, try the following:
<div>
element and type Alt+/.Save your changes.
To redeploy to Azure, right-click the MyFirstAzureWebApp project in Solution Explorer and select Publish.
In the Publish summary page, select Publish.
When publishing completes, Visual Studio launches a browser to the URL of the web app.
You see the updated ASP.NET Core 8.0 web app displayed in the page.
Open Pages/Index.cshtml.
Replace the first <div>
element with the following code:
<div class="jumbotron">
<h1>.NET 💜 Azure</h1>
<p class="lead">Example .NET app to Azure App Service.</p>
</div>
Tip
Try this with GitHub Copilot:
<div>
element and click
.Save your changes.
In Visual Studio Code, open the Command Palette, Ctrl+Shift+P.
Search for and select "Azure App Service: Deploy to Web App".
Select the subscription and the web app you used earlier.
When prompted, select Deploy.
When publishing completes, select Browse Website in the notification.
You see the updated ASP.NET Core 8.0 web app displayed in the page.
Tip
To see how Visual Studio Code with GitHub Copilot helps improve your web development experience, see the Visual Studio Code steps.
In the local directory, open the Pages/Index.cshtml file. Replace the first <div>
element:
<div class="jumbotron">
<h1>.NET 💜 Azure</h1>
<p class="lead">Example .NET app to Azure App Service.</p>
</div>
Save your changes, then redeploy the app using the az webapp up
command again and replace <os>
with either linux
or windows
.
az webapp up --os-type <os>
This command uses values that are cached locally in the .azure/config file, including the app name, resource group, and App Service plan.
Once deployment completes, switch back to the browser window that opened in the Browse to the app step, and hit refresh.
You see the updated ASP.NET Core 8.0 web app displayed in the page.
In the local directory, open the Pages/Index.cshtml file. Replace the first <div>
element:
<div class="jumbotron">
<h1>.NET 💜 Azure</h1>
<p class="lead">Example .NET app to Azure App Service.</p>
</div>
From the application root folder, prepare your local MyFirstAzureWebApp application for deployment using the dotnet publish
command:
dotnet publish --configuration Release
Change to the release directory and create a zip file from the contents:
cd bin\Release\net8.0\publish
Compress-Archive -Path * -DestinationPath deploy.zip
Publish the zip file to the Azure app using the Publish-AzWebApp command:
Publish-AzWebApp -ResourceGroupName myResourceGroup -Name <app-name> -ArchivePath (Get-Item .\deploy.zip).FullName -Force
Note
-ArchivePath
needs the full path of the zip file.
Once deployment completes, switch back to the browser window that opened in the Browse to the app step, and hit refresh.
You see the updated ASP.NET Core 8.0 web app displayed in the page.
Browse to your GitHub fork of the sample code.
On your repo page, create a codespace by selecting Code > Create codespace on main.
Tip
If you have a GitHub Copilot account, try getting GitHub Copilot features in your codespace.
Open Index.cshtml.
Index.cshtml is located in the Pages
folder.
Replace the first <div>
element with the following code:
<div class="jumbotron">
<h1>.NET 💜 Azure</h1>
<p class="lead">Example .NET app to Azure App Service.</p>
</div>
The changes are automatically saved.
Tip
Try this with GitHub Copilot:
<div>
element and click
.From the Source Control menu, enter a commit message such as Modify homepage
. Then, select Commit and confirm staging the changes by selecting Yes.
Tip
Let GitHub Copilot create a commit message for you by selecting in the message box.
Select Sync changes 1, then confirm by selecting OK.
It takes a few minutes for the deployment to run. To view the progress, navigate to https://github.com/<your-github-alias>/dotnetcore-docs-hello-world/actions
.
Return to the browser window that opened during the Browse to the app step, and refresh the page.
You see the updated ASP.NET Core 8.0 web app displayed in the page.
In the local directory, open the src/Pages/Index.cshtml file. Replace the first <div>
element:
<div class="jumbotron">
<h1>.NET 💜 Azure</h1>
<p class="lead">Example .NET app to Azure App Service.</p>
</div>
Save your changes, then redeploy the app using the azd up
command again:
azd up
azd up
skips the provisioning resources step this time and only redeploys your code, since there are no changes to the Bicep files.
Once deployment completes, the browser opens to the updated ASP.NET Core 8.0 web app.
To manage your web app, go to the Azure portal, and search for and select App Services.
On the App Services page, select the name of your web app.
The Overview page for your web app, contains options for basic management like browse, stop, start, restart, and delete. The left menu provides further pages for configuring your app.
In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, you can delete them by deleting the resource group.
In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, you can delete them by deleting the resource group.
In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, delete the resource group by running the following command in the Cloud Shell:
az group delete
For your convenience, the az webapp up
command you ran earlier in this project saves the resource group name as the default value whenever you run az
commands from this project.
In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, delete the resource group by running the following PowerShell command:
Remove-AzResourceGroup -Name myResourceGroup
This command may take a minute to run.
In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, you can delete them by deleting the resource group.
Use the azd down
command to remove the resource group and all resources associated with it:
azd down
Visit the Azure Developer CLI documentation for next steps on working with azd
templates and additional features.
Advance to the next article to learn how to create a .NET Core app and connect it to a SQL Database:
Events
Take the Microsoft Learn Challenge
Nov 19, 11 PM - Jan 10, 11 PM
Ignite Edition - Build skills in Microsoft Azure and earn a digital badge by January 10!
Register nowTraining
Module
Publish a web app to Azure with Visual Studio - Training
Learn how to use Azure App Service to create a new ASP.NET-based web app, then publish and update directly from Visual Studio.
Certification
Microsoft Certified: Azure Developer Associate - Certifications
Build end-to-end solutions in Microsoft Azure to create Azure Functions, implement and manage web apps, develop solutions utilizing Azure storage, and more.
Documentation
Deploy ASP.NET Core and Azure SQL Database app - Azure App Service
Learn how to deploy an ASP.NET Core web app to Azure App Service and connect to an Azure SQL Database.
Configure ASP.NET apps - Azure App Service
Learn how to configure an ASP.NET app in Azure App Service. This article shows the most common configuration tasks.
Deploy ASP.NET Core apps to Azure App Service
This article contains links to Azure host and deploy resources.