I'm using a new roslyn's Code Analyzer feature. I have a ruleset with only one rule CA1008: Enums should have zero value.
. This rule is from Microsoft.AnalyzerPowerPack
analyzer.
When I run Code Analysis in visual studio, it claims that
Warning CA0064 CA0064 : No analysis was performed because the specified rule set could not be loaded or did not contain any managed code analysis rules.
When I open some file, the warning normally pops up into the error window. How can I enforce VS to give me the results for all the files within the project, not just the opened ones?