@@ -67,10 +67,10 @@ In this section, you will create a web application that allows users to sign in
67
67
options.UseFeatureFlags();
68
68
});
69
69
70
- // Add Azure App Configuration middleware to the container of services.
70
+ // Add Azure App Configuration middleware to the container of services
71
71
builder.Services.AddAzureAppConfiguration();
72
72
73
- // Add feature management to the container of services.
73
+ // Add feature management to the container of services
74
74
builder.Services.AddFeatureManagement();
75
75
76
76
// The rest of existing code in Program.cs
@@ -83,7 +83,7 @@ In this section, you will create a web application that allows users to sign in
83
83
84
84
var app = builder.Build();
85
85
86
- // Use Azure App Configuration middleware for dynamic configuration refresh.
86
+ // Use Azure App Configuration middleware for dynamic configuration refresh
87
87
app.UseAzureAppConfiguration();
88
88
89
89
// The rest of existing code in Program.cs
@@ -201,7 +201,7 @@ At this point, you can use the feature flag to enable or disable the `Beta` feat
201
201
// Existing code in Program.cs
202
202
// ... ...
203
203
204
- // Add feature management to the container of services.
204
+ // Add feature management to the container of services
205
205
builder .Services .AddFeatureManagement ()
206
206
.WithTargeting <ExampleTargetingContextAccessor >();
207
207
0 commit comments