Created
June 27, 2025 05:54
-
-
Save wullemsb/a22c7515cb90231a52aef1608137e96a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.FeatureManagement; | |
using Microsoft.FeatureManagement.FeatureFilters; | |
var builder = WebApplication.CreateBuilder(args); | |
builder.AddServiceDefaults(); | |
// Add services to the container. | |
builder.Services.AddFeatureManagement() | |
.AddFeatureFilter<PercentageFilter>(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment