Reputation: 1737
I'm implemented ICompileModule
, which allow using generic attributes. It works fine (Build successful), but Visual Studio mark this code as error (at analysis step).
How i can hide/suppress these errors? May be using Visual Stuido/ReSharper plugin?
Upvotes: 2
Views: 919
Reputation: 3207
This is not the answer to this particular question, but it may help others who came here via the question's title.
Some errors are created by Roslyn Analyzers that can be toggled:
Right-click on project's References > Analyzers , "Open Active Rule Set"
Then toggle the error in question
Unfortunately for @maxswitcher, the error in question is not handled by Roslyn Analyzers.
Upvotes: 1