Skip to content

Instantly share code, notes, and snippets.

@kasunkv
Created January 19, 2020 06:30
Show Gist options
  • Save kasunkv/ebad082e0c7b554881f01a5c10a3587c to your computer and use it in GitHub Desktop.
Save kasunkv/ebad082e0c7b554881f01a5c10a3587c to your computer and use it in GitHub Desktop.
Register Microsoft.TimeWindow feature filter in Startup.cs
using Microsoft.FeatureManagement;
using Microsoft.FeatureManagement.FeatureFilters;
namespace MusicStore.Web
{
public class Startup
{
...
public void ConfigureServices(IServiceCollection services)
{
...
// Configure Feature Management
services
.AddFeatureManagement()
.AddFeatureFilter<TimeWindowFilter>(); // register PercentageFilter
...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment