Skip to content

Commit 3240499

Browse files
update
1 parent ae0a17b commit 3240499

7 files changed

+42
-21
lines changed

articles/azure-app-configuration/concept-feature-management.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -76,43 +76,42 @@ Azure App Configuration provides a centralized repository for feature flags. You
7676

7777
## Next steps
7878

79-
For more information on feature flags in Azure App Configuration, see the following quickstarts.
79+
To start using feature flags with Azure App Configuration, continue to the following quickstarts specific to your application’s language or platform.
8080

8181
> [!div class="nextstepaction"]
82-
> [Add feature flags to an ASP.NET Core app](./quickstart-feature-flag-aspnet-core.md)
82+
> [ASP.NET Core](./quickstart-feature-flag-aspnet-core.md)
8383
8484
> [!div class="nextstepaction"]
85-
> [Add feature flags to a .NET/.NET Framework app](./quickstart-feature-flag-dotnet.md)
85+
> [.NET/.NET Framework](./quickstart-feature-flag-dotnet.md)
8686
8787
> [!div class="nextstepaction"]
88-
> [Add feature flags to a .NET background service](./quickstart-feature-flag-dotnet-background-service.md)
88+
> [.NET background service](./quickstart-feature-flag-dotnet-background-service.md)
8989
9090
> [!div class="nextstepaction"]
91-
> [Add feature flags to a Spring Boot app](./quickstart-feature-flag-spring-boot.md)
91+
> [Java Spring](./quickstart-feature-flag-spring-boot.md)
9292
9393
> [!div class="nextstepaction"]
94-
> [Add feature flags to a Python app](./quickstart-feature-flag-python.md)
94+
> [Python](./quickstart-feature-flag-python.md)
9595
9696
> [!div class="nextstepaction"]
97-
> [Add feature flags to workloads in Azure Kubernetes Service](./quickstart-feature-flag-azure-kubernetes-service.md)
97+
> [Azure Kubernetes Service](./quickstart-feature-flag-azure-kubernetes-service.md)
9898
9999
> [!div class="nextstepaction"]
100-
> [Add feature flags to an Azure Functions app](./quickstart-feature-flag-azure-functions-csharp.md)
100+
> [Azure Functions](./quickstart-feature-flag-azure-functions-csharp.md)
101101
102102
To learn more about managing feature flags in Azure App Configuration, continue to the following tutorial.
103103

104104
> [!div class="nextstepaction"]
105105
> [Manage feature flags in Azure App Configuration](./manage-feature-flags.md)
106106
107-
Azure App Configuration offers built-in feature filters that enable you to activate a feature flag only during a specific period or to a particular targeted audience of your app. For more information, continue to the following tutorial.
107+
Feature filters allow you to enable a feature flag conditionally. Azure App Configuration offers built-in feature filters that enable you to activate a feature flag only during a specific period or to a particular targeted audience of your app. For more information, continue to the following tutorial.
108+
109+
> [!div class="nextstepaction"]
110+
> [Enable conditional features with feature filters](./howto-feature-filters.md)
108111
109112
> [!div class="nextstepaction"]
110113
> [Enable features on a schedule](./howto-timewindow-filter.md)
111114
112115
> [!div class="nextstepaction"]
113116
> [Roll out features to targeted audiences](./howto-targetingfilter.md)
114117
115-
To get a full feature rundown of feature management library, see the following documents.
116-
117-
> [!div class="nextstepaction"]
118-
> [.NET Feature Management](./feature-management-dotnet-reference.md)

articles/azure-app-configuration/howto-feature-filters-aspnet-core.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,8 @@ To learn more about the built-in feature filters, continue to the following tuto
9494

9595
> [!div class="nextstepaction"]
9696
> [Roll out features to targeted audience](./howto-targetingfilter.md)
97+
98+
For the full feature rundown of the .NET feature management library, continue to the following document.
99+
100+
> [!div class="nextstepaction"]
101+
> [.NET Feature Management](./feature-management-dotnet-reference.md)

articles/azure-app-configuration/howto-targetingfilter-aspnet-core.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,3 +228,8 @@ To learn more about the feature filters, continue to the following tutorials.
228228
229229
> [!div class="nextstepaction"]
230230
> [Enable features on a schedule](./howto-timewindow-filter-aspnet-core.md)
231+
232+
For the full feature rundown of the .NET feature management library, continue to the following document.
233+
234+
> [!div class="nextstepaction"]
235+
> [.NET Feature Management](./feature-management-dotnet-reference.md)

articles/azure-app-configuration/howto-timewindow-filter-aspnet-core.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,8 @@ To learn more about the feature filters, continue to the following tutorials.
5858
5959
> [!div class="nextstepaction"]
6060
> [Roll out features to targeted audience](./howto-targetingfilter.md)
61+
62+
For the full feature rundown of the .NET feature management library, continue to the following document.
63+
64+
> [!div class="nextstepaction"]
65+
> [.NET Feature Management](./feature-management-dotnet-reference.md)

articles/azure-app-configuration/manage-feature-flags.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -143,18 +143,25 @@ Feature flags created with the Feature manager are stored as regular key-values.
143143

144144
## Next steps
145145

146-
To learn how to use feature flags in your applications, continue to the following quickstarts.
146+
To start using feature flags with Azure App Configuration, continue to the following quickstarts specific to your application’s language or platform.
147147

148148
> [!div class="nextstepaction"]
149-
> [.NET/.NET Framework Console App](./quickstart-feature-flag-dotnet.md)
149+
> [ASP.NET Core](./quickstart-feature-flag-aspnet-core.md)
150150
151151
> [!div class="nextstepaction"]
152-
> [.NET Background Service](./quickstart-feature-flag-dotnet-background-service.md)
152+
> [.NET/.NET Framework](./quickstart-feature-flag-dotnet.md)
153153
154154
> [!div class="nextstepaction"]
155-
> [ASP.NET Core](./quickstart-feature-flag-aspnet-core.md)
155+
> [.NET background service](./quickstart-feature-flag-dotnet-background-service.md)
156+
157+
> [!div class="nextstepaction"]
158+
> [Java Spring](./quickstart-feature-flag-spring-boot.md)
156159
157-
To get a full feature rundown of .NET feature management library, see the following document.
160+
> [!div class="nextstepaction"]
161+
> [Python](./quickstart-feature-flag-python.md)
162+
163+
> [!div class="nextstepaction"]
164+
> [Azure Kubernetes Service](./quickstart-feature-flag-azure-kubernetes-service.md)
158165
159166
> [!div class="nextstepaction"]
160-
> [.NET Feature Management](./feature-management-dotnet-reference.md)
167+
> [Azure Functions](./quickstart-feature-flag-azure-functions-csharp.md)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,4 +183,4 @@ To enable feature management capability for other types of apps, continue to the
183183
For the full feature rundown of the .NET feature management library, continue to the following document.
184184
185185
> [!div class="nextstepaction"]
186-
> [.NET Feature Management](./feature-management-dotnet-reference.md)
186+
> [.NET Feature Management](./feature-management-dotnet-reference.md)

articles/azure-app-configuration/run-experiments-aspnet-core.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ To learn more about the experimentation concepts, refer to the following documen
502502
> [!div class="nextstepaction"]
503503
> [Experimentation](./concept-experimentation.md)
504504
505-
To get a full feature rundown of `Microsoft.FeatureManagement` package, see the following doc.
505+
For the full feature rundown of the .NET feature management library, continue to the following document.
506506
507507
> [!div class="nextstepaction"]
508508
> [.NET Feature Management](./feature-management-dotnet-reference.md)

0 commit comments

Comments
 (0)