Skip to content

felipebaltazar/FeatureFlag.Management

Repository files navigation

FeatureFlag.Management

Control your features with this escalable, mockable and decoupled sdk

NuGet NuGet

Getting started

  • Install the FeatureFlag.Management package
Install-Package FeatureFlag.Management -Version 0.0.1-pre
  • You can get your features using the FeatureFlagManager (building new instance or DI)
var manager = new FeatureFlagManager(new MyResolver());
var myFeature = manager.Get<MyFeature>();

if (myFeature.IsEnabled)
{
    // do somethng
}