Skip to content

Commit 99e4b60

Browse files
authored
Update ConfigurationForNonAppConfigurationFiles (dotnet#16766)
1 parent e58ba2f commit 99e4b60

File tree

1 file changed

+14
-1
lines changed
  • aspnetcore/fundamentals/configuration

1 file changed

+14
-1
lines changed

aspnetcore/fundamentals/configuration/index.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to use the Configuration API to configure an ASP.NET Core
55
monikerRange: '>= aspnetcore-2.1'
66
ms.author: riande
77
ms.custom: mvc
8-
ms.date: 01/23/2020
8+
ms.date: 01/29/2020
99
uid: fundamentals/configuration/index
1010
---
1111
# Configuration in ASP.NET Core
@@ -49,6 +49,19 @@ The *options pattern* is an extension of the configuration concepts described in
4949

5050
Before the app is configured and started, a *host* is configured and launched. The host is responsible for app startup and lifetime management. Both the app and the host are configured using the configuration providers described in this topic. Host configuration key-value pairs are also included in the app's configuration. For more information on how the configuration providers are used when the host is built and how configuration sources affect host configuration, see <xref:fundamentals/index#host>.
5151

52+
## Other configuration
53+
54+
This topic only pertains to *app configuration*. Other aspects of running and hosting ASP.NET Core apps are configured using configuration files not covered in this topic:
55+
56+
* *launch.json*/*launchSettings.json* are tooling configuration files for the Development environment, described:
57+
* In <xref:fundamentals/environments#development>.
58+
* Across the documentation set where the files are used to configure ASP.NET Core apps for Development scenarios.
59+
* *web.config* is a server configuration file, described in the following topics:
60+
* <xref:host-and-deploy/iis/index>
61+
* <xref:host-and-deploy/aspnet-core-module>
62+
63+
For more information on migrating app configuration from earlier versions of ASP.NET, see <xref:migration/proper-to-2x/index#store-configurations>.
64+
5265
## Default configuration
5366

5467
::: moniker range=">= aspnetcore-3.0"

0 commit comments

Comments
 (0)