Roslynator
Roslynator is a set of code analysis tools for C#, powered by Roslyn.
Tools
- IDE extensions for:
- NuGet packages that contain collection of analyzers
- Testing framework that allows unit testing of analyzers, refactoring and code fixes
- .NET client libraries that extend Roslyn API
- Command line tool
Documentation
Contributions
Contributions are welcome! If you are interested please see:
- documentation for developers
- available issues
TIP: Bugfixes or small improvements can be implemented right away. Larger task like adding new analyzer or refactoring should be discussed first.
Command Line Tool
Run following command to install Roslynator command line tool:
dotnet tool install -g roslynator.dotnet.cli
See documentation for further information.
Testing Framework
- Roslynator Testing Framework can be used for unit testing of analyzers, refactorings and code fixes.
- Framework is distributed as NuGet package.
- Learn how to use the framework from actual usages in Roslynator repo:
Client Libraries
- Roslynator client libraries are meant be used for development of your own analyzers/refactorings.
- It does not contain any analyzers/refactorings itself.
- See reference.