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: articles/azure-app-configuration/quickstart-aspnet-core-app.md
+4-8Lines changed: 4 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ In this quickstart, you'll use Azure App Configuration to centralize storage and
23
23
> [!TIP]
24
24
> The Azure Cloud Shell is a free, interactive shell that you can use to run the command line instructions in this article. It has common Azure tools preinstalled, including the .NET Core SDK. If you're logged in to your Azure subscription, launch your [Azure Cloud Shell](https://shell.azure.com) from shell.azure.com. You can learn more about Azure Cloud Shell by [reading our documentation](../cloud-shell/overview.md)
@@ -112,9 +111,6 @@ dotnet new mvc --no-https --output TestAppConfig
112
111
app.Run();
113
112
```
114
113
115
-
This code will connect to your App Configuration Store using a connection string and load all keys that have the *TestApp* prefix from a previous step.
116
-
117
-
118
114
#### [.NET 5.x](#tab/core5x)
119
115
120
116
1. In *Program.cs*, add a reference to the .NET Core Configuration API namespace:
@@ -183,7 +179,7 @@ dotnet new mvc --no-https --output TestAppConfig
183
179
```
184
180
---
185
181
186
-
With the preceding change, the [configuration provider for App Configuration](/dotnet/api/Microsoft.Extensions.Configuration.AzureAppConfiguration) has been registered with the .NET Core Configuration API.
182
+
This code will connect to your App Configuration Store using a connection string and load all keys that have the *TestApp* prefix from a previous step. For more information on connecting to the configuration provider, reference the [configuration provider for App Configuration docs](/dotnet/api/Microsoft.Extensions.Configuration.AzureAppConfiguration).
0 commit comments