Reputation: 155
I am new to developing analyzers and code fixes using Roslyn Analyzer. I am using Visual Studio 2019 Community Edition. I am creating an Analyzer with code fix in Visual Studio. Or do I need to create a separate solution for each rule (which includes Analyzer.cs and CodeFixProvider.cs).
Upvotes: 0
Views: 328
Reputation: 19021
You have multiple analyzers or fixers in the same project, no problem. I think the only advice would be if the analyzers are entirely unrelated you may want to break them up, if only because people using your analyzers might want to consume one but not the other.
Upvotes: 1