-
Notifications
You must be signed in to change notification settings - Fork 643
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[TFM Display] Add feature flag to display TFM. #8867
Conversation
@@ -52,6 +52,7 @@ public class FeatureFlagService : IFeatureFlagService | |||
private const string DisplayPackagePageV2PreviewFeatureName = GalleryPrefix + "DisplayPackagePageV2Preview"; | |||
private const string DisplayPackagePageV2FeatureName = GalleryPrefix + "DisplayPackagePageV2"; | |||
private const string ShowReportAbuseSafetyChanges = GalleryPrefix + "ShowReportAbuseSafetyChanges"; | |||
private const string DisplayTFMFeatureName = GalleryPrefix + "DisplayTFM"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please change TFM
to Tfm
everywhere. .NET's naming guideline is to pascal case acronyms longer than two characters: https://docs.microsoft.com/en-us/dotnet/standard/design-guidelines/capitalization-conventions#capitalization-rules-for-identifiers
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you think of using the term TargetFramework
instead of TFM
? This may be clearer to folks. For example:
private const string DisplayTFMFeatureName = GalleryPrefix + "DisplayTFM"; | |
private const string DisplayTargetFrameworkFeatureName = GalleryPrefix + "DisplayTargetFramework"; |
@@ -52,6 +52,7 @@ public class FeatureFlagService : IFeatureFlagService | |||
private const string DisplayPackagePageV2PreviewFeatureName = GalleryPrefix + "DisplayPackagePageV2Preview"; | |||
private const string DisplayPackagePageV2FeatureName = GalleryPrefix + "DisplayPackagePageV2"; | |||
private const string ShowReportAbuseSafetyChanges = GalleryPrefix + "ShowReportAbuseSafetyChanges"; | |||
private const string DisplayTFMFeatureName = GalleryPrefix + "DisplayTFM"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you think of using the term TargetFramework
instead of TFM
? This may be clearer to folks. For example:
private const string DisplayTFMFeatureName = GalleryPrefix + "DisplayTFM"; | |
private const string DisplayTargetFrameworkFeatureName = GalleryPrefix + "DisplayTargetFramework"; |
No description provided.