-
Notifications
You must be signed in to change notification settings - Fork 117
Description
Is your feature request related to a problem? Please describe.
All too often, I'm having to clone CsWin32 enums that I want to publicly expose within my project, which resorts in me effectively cloning the enum by hand, such as here. This is time-consuming and bloats my codebase.
Describe the solution you'd like
Consider a BannedApiAnalyzers line of M:System.String.IsNullOrEmpty(System.String);Use string.IsNullOrWhiteSpace() instead., a solution could be Public:IMAGE_SUBSYSTEM.
Describe alternatives you've considered
Creating a new project where I can have the entirety of CsWin32 publicised, limited down to what symbols I want, but it doesn't help me here as there'd then be a disconnect between the types used in my internal CsWin32 project and the public CsWin32 project.