-
Notifications
You must be signed in to change notification settings - Fork 79
TrimKeyPrefix for FeatureFlagOptions #587
Copy link
Copy link
Closed
Labels
FeatureManagementportalIssues relating to the AppConfig portal.Issues relating to the AppConfig portal.question
Description
This is my setup, see the last code line below
configBuilder.AddAzureAppConfiguration(options =>
{
...
options.Select($"{applicationName}:*", $"{azureConfigEnv}");
options.TrimKeyPrefix($"{applicationName}:");
options.UseFeatureFlags(featureOptions =>
{
featureOptions.Select($"{applicationName}/", azureConfigEnv);
featureOptions.TrimKeyPrefix($"{applicationName}:"); <==== Doesn't Exist!
});
});
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
FeatureManagementportalIssues relating to the AppConfig portal.Issues relating to the AppConfig portal.question