From 6384d36249edd7572f2738b5fe72d8748a11aab9 Mon Sep 17 00:00:00 2001 From: "k.zakiev" Date: Sun, 14 Jun 2020 16:40:40 +0300 Subject: [PATCH] fixed link to the command-line config provider (#18800) --- aspnetcore/fundamentals/configuration/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/configuration/index.md b/aspnetcore/fundamentals/configuration/index.md index 57ca39dea5..2a952b976d 100644 --- a/aspnetcore/fundamentals/configuration/index.md +++ b/aspnetcore/fundamentals/configuration/index.md @@ -45,7 +45,7 @@ ASP.NET Core web apps created with [dotnet new](/dotnet/core/tools/dotnet-new) o 1. Environment variables using the [Environment Variables configuration provider](#evcp). 1. Command-line arguments using the [Command-line configuration provider](#command-line). -Configuration providers that are added later override previous key settings. For example, if `MyKey` is set in both *appsettings.json* and the environment, the environment value is used. Using the default configuration providers, the [Command-line configuration provider](#command-line-configuration-provider) overrides all other providers. +Configuration providers that are added later override previous key settings. For example, if `MyKey` is set in both *appsettings.json* and the environment, the environment value is used. Using the default configuration providers, the [Command-line configuration provider](#clcp) overrides all other providers. For more information on `CreateDefaultBuilder`, see [Default builder settings](xref:fundamentals/host/generic-host#default-builder-settings).