Hi,
I'm writing some DiagnosticAnalyzer for VS 2015 (Roslyn), I want to implement a dialog options, which allows user to enable/disable any DiagnosticAnalyzer they like, how can I achieve that?
Currently, as I investigated, DiagnosticDescriptor has property isEnabledByDefault, which only affects at the time you install the extensions. Another the option is to return false in method TryGetDiagnostic of DiagnosticAnalyzer class, but it's not a good way to handle this particular case.
Thanks,
Nha.