Skip to content

Commit 7b6c991

Browse files
committed
Additional PR improvements
1 parent 0fd626c commit 7b6c991

File tree

5 files changed

+13
-18
lines changed

5 files changed

+13
-18
lines changed

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

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,30 @@ ms.service: azure-app-configuration
66
ms.devlang: csharp
77
ms.custom: devx-track-csharp, mode-other
88
ms.topic: quickstart
9-
ms.date: 10/28/2022
9+
ms.date: 28/03/2023
1010
ms.author: zhenlwa
1111
#Customer intent: As an ASP.NET Core developer, I want to use feature flags to control feature availability quickly and confidently.
1212
---
1313

1414
# Quickstart: Add feature flags to an ASP.NET Core app
1515

16-
In this quickstart, you'll create a feature flag in Azure App Configuration and use it to dynamically control the availability of a new web page in an ASP.NET Core app without restarting or redeploying it.
16+
In this quickstart, you'll create a feature flag in Azure App Configuration and use it to dynamically control the availability of a new web page in an ASP.NET Core app without restarting or redeploying it.
1717

1818
The feature management support extends the dynamic configuration feature in App Configuration. The example in this quickstart builds on the ASP.NET Core app introduced in the dynamic configuration tutorial. Before you continue, finish the [quickstart](./quickstart-aspnet-core-app.md), and the [tutorial](./enable-dynamic-configuration-aspnet-core.md) to create an ASP.NET Core app with dynamic configuration first.
1919

2020
## Prerequisites
2121

2222
Follow the documents to create an ASP.NET Core app with dynamic configuration.
23-
* [Quickstart: Create an ASP.NET Core app with App Configuration](./quickstart-aspnet-core-app.md)
24-
* [Tutorial: Use dynamic configuration in an ASP.NET Core app](./enable-dynamic-configuration-aspnet-core.md)
23+
- [Quickstart: Create an ASP.NET Core app with App Configuration](./quickstart-aspnet-core-app.md)
24+
- [Tutorial: Use dynamic configuration in an ASP.NET Core app](./enable-dynamic-configuration-aspnet-core.md)
2525

2626
## Create a feature flag
2727

28-
Navigate to the Azure App Configuration store you created previously in Azure portal. Under **Operations** section, select **Feature manager** > **Create** to add a feature flag called *Beta*.
28+
Add a feature flag called *Beta* to the App Configuration store and leave **Label** and **Description** with their default values. For more information about how to add feature flags to a store using the Azure portal or the CLI, go to [Create a feature flag](./quickstart-azure-app-configuration-create.md#create-a-feature-flag).
2929

3030
> [!div class="mx-imgBorder"]
3131
> ![Enable feature flag named Beta](./media/add-beta-feature-flag.png)
3232
33-
Leave the rest of fields empty for now. Select **Apply** to save the new feature flag. To learn more, check out [Manage feature flags in Azure App Configuration](./manage-feature-flags.md).
34-
3533
## Use a feature flag
3634

3735
1. Navigate into the project's directory, and run the following command to add a reference to the [Microsoft.FeatureManagement.AspNetCore](https://www.nuget.org/packages/Microsoft.FeatureManagement.AspNetCore) NuGet package.

articles/azure-app-configuration/quickstart-feature-flag-azure-functions-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The .NET Feature Management libraries extend the framework with feature flag sup
2525

2626
## Add a feature flag
2727

28-
Add a feature flag called *Beta* to the App Configuration store and leave **Label** and **Description** with their default values. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Add key-values](./quickstart-azure-app-configuration-create.md#create-a-feature-flag).
28+
Add a feature flag called *Beta* to the App Configuration store and leave **Label** and **Description** with their default values. For more information about how to add feature flags to a store using the Azure portal or the CLI, go to [Create a feature flag](./quickstart-azure-app-configuration-create.md#create-a-feature-flag).
2929

3030
> [!div class="mx-imgBorder"]
3131
> ![Enable feature flag named Beta](media/add-beta-feature-flag.png)

articles/azure-app-configuration/quickstart-feature-flag-dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The .NET Feature Management libraries extend the framework with feature flag sup
3131

3232
## Add a feature flag
3333

34-
Add a feature flag called *Beta* to the App Configuration store and leave **Label** and **Description** with their default values. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Add key-values](./quickstart-azure-app-configuration-create.md#create-a-feature-flag).
34+
Add a feature flag called *Beta* to the App Configuration store and leave **Label** and **Description** with their default values. For more information about how to add feature flags to a store using the Azure portal or the CLI, go to [Create a feature flag](./quickstart-azure-app-configuration-create.md#create-a-feature-flag).
3535

3636
> [!div class="mx-imgBorder"]
3737
> ![Enable feature flag named Beta](media/add-beta-feature-flag.png)

articles/azure-app-configuration/quickstart-feature-flag-spring-boot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The Spring Boot Feature Management libraries extend the framework with comprehen
2626

2727
## Add a feature flag
2828

29-
Add a feature flag called *Beta* to the App Configuration store and leave **Label** and **Description** with their default values. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Add key-values](./quickstart-azure-app-configuration-create.md#create-a-feature-flag).
29+
Add a feature flag called *Beta* to the App Configuration store and leave **Label** and **Description** with their default values. For more information about how to add feature flags to a store using the Azure portal or the CLI, go to [Create a feature flag](./quickstart-azure-app-configuration-create.md#create-a-feature-flag).
3030

3131
> [!div class="mx-imgBorder"]
3232
> ![Enable feature flag named Beta](media/add-beta-feature-flag.png)

articles/azure-app-configuration/quickstart-python.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,16 @@ This document shows examples of how to use the [Azure SDK for Python](https://gi
2222

2323
- Azure subscription - [create one for free](https://azure.microsoft.com/free/)
2424
- Python 3.6 or later - for information on setting up Python on Windows, see the [Python on Windows documentation](/windows/python/)
25-
- An Azure App Configuration store
25+
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
2626

2727
## Create a key-value
2828

29-
1. In the Azure portal, open your App Configuration store and select **Configuration Explorer** > **Create** > **Key-value** to add the following key-value:
29+
Add the following key-value to the App Configuration store and leave **Label** and **Content Type** with their default values. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Add key-values](./quickstart-azure-app-configuration-create.md#create-a-key-value).
3030

31-
| Key | Value |
32-
|----------------------------|-------------------------------------|
33-
| *TestApp:Settings:Message* | *Data from Azure App Configuration* |
31+
| Key | Value |
32+
|----------------------------|-------------------------------------|
33+
| *TestApp:Settings:Message* | *Data from Azure App Configuration* |
3434

35-
Leave **Label** and **Content Type** empty for now.
36-
37-
1. Select **Apply**.
3835

3936
## Set up the Python app
4037

0 commit comments

Comments
 (0)