You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/host-and-deploy/azure-apps/index.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: This article contains links to Azure host and deploy resources.
5
5
monikerRange: '>= aspnetcore-2.1'
6
6
ms.author: bradyg
7
7
ms.custom: mvc
8
-
ms.date: 11/07/2019
8
+
ms.date: 12/16/2019
9
9
uid: host-and-deploy/azure-apps/index
10
10
---
11
11
# Deploy ASP.NET Core apps to Azure App Service
@@ -81,13 +81,13 @@ When an app setting is created or modified in the Azure Portal and the **Save**
81
81
82
82
::: moniker range=">= aspnetcore-3.0"
83
83
84
-
When an app uses the [Generic Host](xref:fundamentals/host/generic-host), environment variables aren't loaded into an app's configuration by default and the configuration provider must be added by the developer. The developer determines the environment variable prefix when the configuration provider is added. For more information, see <xref:fundamentals/host/generic-host> and the [Environment Variables Configuration Provider](xref:fundamentals/configuration/index#environment-variables-configuration-provider).
84
+
When an app uses the [Generic Host](xref:fundamentals/host/generic-host), environment variables are loaded into the app's configuration when <xref:Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder*> is called to build the host. For more information, see <xref:fundamentals/host/generic-host> and the [Environment Variables Configuration Provider](xref:fundamentals/configuration/index#environment-variables-configuration-provider).
85
85
86
86
::: moniker-end
87
87
88
88
::: moniker range="< aspnetcore-3.0"
89
89
90
-
When an app builds the host using [WebHost.CreateDefaultBuilder](/dotnet/api/microsoft.aspnetcore.webhost.createdefaultbuilder), environment variables that configure the host use the `ASPNETCORE_` prefix. For more information, see <xref:fundamentals/host/web-host> and the [Environment Variables Configuration Provider](xref:fundamentals/configuration/index#environment-variables-configuration-provider).
90
+
When an app uses the [Web Host](xref:fundamentals/host/web-host), environment variables are loaded into the app's configuration when <xref:Microsoft.AspNetCore.WebHost.CreateDefaultBuilder*> is called to build the host. For more information, see <xref:fundamentals/host/web-host> and the [Environment Variables Configuration Provider](xref:fundamentals/configuration/index#environment-variables-configuration-provider).
91
91
92
92
::: moniker-end
93
93
@@ -140,14 +140,16 @@ When swapping between deployment slots, any system using data protection won't b
140
140
For more information, see <xref:security/data-protection/implementation/key-storage-providers>.
## Deploy an ASP.NET Core app that uses a .NET Core preview
144
144
145
-
ASP.NET Core 3.0 is supported on Azure App Service. To deploy a preview release of a .NET Core version later than .NET Core 3.0, use one of the following techniques. These approaches are also used when the runtime is available but the SDK hasn't been installed on Azure App Service.
145
+
To deploy an app that uses a preview release of .NET Core, see the following resources. These approaches are also used when the runtime is available but the SDK hasn't been installed on Azure App Service.
146
146
147
147
*[Specify the .NET Core SDK Version using Azure Pipelines](#specify-the-net-core-sdk-version-using-azure-pipelines)
148
-
*[Deploy a self-contained preview app](#deploy-a-self-contained-preview-app).
149
-
*[Use Docker with Web Apps for containers](#use-docker-with-web-apps-for-containers).
150
-
*[Install the preview site extension](#install-the-preview-site-extension).
148
+
*[Deploy a self-contained preview app](#deploy-a-self-contained-preview-app)
149
+
*[Use Docker with Web Apps for containers](#use-docker-with-web-apps-for-containers)
150
+
*[Install the preview site extension](#install-the-preview-site-extension)
151
+
152
+
See the [ASP.NET Core on App Service Dashboard](https://aspnetcoreon.azurewebsites.net/) for the version of ASP.NET Core available on Azure App service.
151
153
152
154
### Specify the .NET Core SDK Version using Azure Pipelines
0 commit comments