Skip to content

Commit d7edccf

Browse files
authored
Merge pull request #104932 from lisaguthrie/confprovider-ga-updates
Updating for v3.0 GA version of config provider
2 parents 5a9ecef + 63c25a4 commit d7edccf

5 files changed

+10
-10
lines changed

articles/azure-app-configuration/enable-dynamic-configuration-aspnet-core.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Before you continue, finish [Create an ASP.NET Core app with App Configuration](
5050
1. Add a reference to the `Microsoft.Azure.AppConfiguration.AspNetCore` NuGet package by running the following command:
5151

5252
```CLI
53-
dotnet add package Microsoft.Azure.AppConfiguration.AspNetCore --version 3.0.0-preview-011100002-1192
53+
dotnet add package Microsoft.Azure.AppConfiguration.AspNetCore
5454
```
5555
5656
1. Open *Program.cs*, and update the `CreateWebHostBuilder` method to add the `config.AddAzureAppConfiguration()` method.

articles/azure-app-configuration/howto-integrate-azure-managed-service-identity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ To set up a managed identity in the portal, you first create an application and
7575
1. Add a reference to the *Azure.Identity* package:
7676

7777
```cli
78-
dotnet add package Azure.Identity --version 1.1.0
78+
dotnet add package Azure.Identity
7979
```
8080
8181
1. Find the endpoint to your App Configuration store. This URL is listed on the **Access keys** tab for the store in the Azure portal.

articles/azure-app-configuration/quickstart-aspnet-core-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: lisaguthrie
77
ms.service: azure-app-configuration
88
ms.devlang: csharp
99
ms.topic: quickstart
10-
ms.date: 01/21/2020
10+
ms.date: 02/19/2020
1111
ms.author: lcozzens
1212

1313
#Customer intent: As an ASP.NET Core developer, I want to learn how to manage all my app settings in one place.
@@ -99,7 +99,7 @@ The Secret Manager tool stores sensitive data for development work outside of yo
9999
1. Add a reference to the `Microsoft.Azure.AppConfiguration.AspNetCore` NuGet package by running the following command:
100100

101101
```dotnetcli
102-
dotnet add package Microsoft.Azure.AppConfiguration.AspNetCore --version 3.0.0-preview-011100002-1192
102+
dotnet add package Microsoft.Azure.AppConfiguration.AspNetCore
103103
```
104104
105105
1. Run the following command to restore packages for your project:

articles/azure-app-configuration/quickstart-dotnet-core-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ You use the [.NET Core command-line interface (CLI)](https://docs.microsoft.com/
4848
1. Add a reference to the `Microsoft.Extensions.Configuration.AzureAppConfiguration` NuGet package by running the following command:
4949
5050
```CLI
51-
dotnet add package Microsoft.Extensions.Configuration.AzureAppConfiguration --version 3.0.0-preview-011100001-1152
51+
dotnet add package Microsoft.Extensions.Configuration.AzureAppConfiguration
5252
```
5353
5454
2. Run the following command to restore packages for your project:

articles/azure-app-configuration/quickstart-feature-flag-aspnet-core.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ Add the [Secret Manager tool](https://docs.microsoft.com/aspnet/core/security/ap
8787

8888
1. Add reference to the `Microsoft.Azure.AppConfiguration.AspNetCore` and the `Microsoft.FeatureManagement.AspNetCore` NuGet packages by running the following commands:
8989

90-
```
91-
dotnet add package Microsoft.Azure.AppConfiguration.AspNetCore --version 3.0.0-preview-011100002-1192
90+
```dotnetcli
91+
dotnet add package Microsoft.Azure.AppConfiguration.AspNetCore
9292
dotnet add package Microsoft.FeatureManagement.AspNetCore --version 2.0.0-preview-010610001-1263
9393
```
9494

9595
1. Run the following command to restore packages for your project:
9696

97-
```
97+
```dotnetcli
9898
dotnet restore
9999
```
100100

@@ -104,7 +104,7 @@ Add the [Secret Manager tool](https://docs.microsoft.com/aspnet/core/security/ap
104104

105105
This command must be executed in the same directory as the *.csproj* file.
106106

107-
```
107+
```dotnetcli
108108
dotnet user-secrets set ConnectionStrings:AppConfig <your_connection_string>
109109
```
110110

@@ -191,7 +191,7 @@ Add the [Secret Manager tool](https://docs.microsoft.com/aspnet/core/security/ap
191191
{
192192
app.UseExceptionHandler("/Home/Error");
193193
}
194-
194+
195195
app.UseStaticFiles();
196196
app.UseCookiePolicy();
197197
app.UseAzureAppConfiguration();

0 commit comments

Comments
 (0)