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
.NET feature management library provides a way to develop and expose application functionality based on features flags. Once a new feature is developed, many applications have special requirements, such as when the feature should be enabled and under what conditions. This library provides a way to define these relationships, and also integrates into common .NET code patterns to make exposing these features possible.
34
+
.NET feature management library provides a way to develop and expose application functionality based on feature flags. Once a new feature is developed, many applications have special requirements, such as when the feature should be enabled and under what conditions. This library provides a way to define these relationships, and also integrates into common .NET code patterns to make exposing these features possible.
31
35
32
36
Feature flags provide a way for .NET and ASP.NET Core applications to turn features on or off dynamically. Developers can use feature flags in simple use cases like conditional statements to more advanced scenarios like conditionally adding routes or MVC filters. Feature flags are built on top of the .NET Core configuration system. Any .NET Core configuration provider is capable of acting as the backbone for feature flags.
33
37
@@ -49,48 +53,6 @@ Here are some of the benefits of using .NET feature management library:
49
53
50
54
The .NET feature management library is open source. For more information, visit the [GitHub repo](https://github.com/microsoft/FeatureManagement-Dotnet).
51
55
52
-
## Index
53
-
54
-
:::zone target="docs" pivot="stable-version"
55
-
56
-
*[Feature Flags](#feature-flags)
57
-
*[Feature Filters](#feature-filters)
58
-
*[Feature Flag Declaration](#feature-flag-declaration)
0 commit comments