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/use-variant-feature-flags-aspnet-core.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ In this tutorial, you use a variant feature flag to manage experiences for diffe
28
28
dotnet new razor --auth Individual -o QuoteOfTheDay
29
29
```
30
30
31
-
1. Create a [user secret](/aspnet/core/security/app-secrets) for the application by navigating into the *QuoteOfTheDay* folder and run the following commands. This secret holds the endpoint for your App Configuration store.
31
+
1. Create a [user secret](/aspnet/core/security/app-secrets) for the application by navigating into the *QuoteOfTheDay* folder and run the following commands. Replace the `<Your App Configuration store endpoint>` placeholder with your App Configuration store's endpoint. You can find the endpoint in your App Configuration store's **Overview** blade in the Azure portal.
32
32
33
33
```dotnetcli
34
34
dotnet user-secrets init
@@ -45,7 +45,7 @@ In this tutorial, you use a variant feature flag to manage experiences for diffe
45
45
46
46
## Connect to App Configuration for feature management
47
47
48
-
1. Open *Program.cs*, and add the following using statements.
48
+
1. Open *Program.cs* and add the following using statements.
49
49
50
50
```csharp
51
51
using Azure.Identity;
@@ -61,7 +61,8 @@ In this tutorial, you use a variant feature flag to manage experiences for diffe
0 commit comments