This plugin enables the analysis of C# and VB.NET source files contained in .NET projects with JetBrains ReSharper Command Line Tools
- Supports JetBrains ReSharper Command Line Tools (at least version 8.2.0.2151)
- Compatible with the C# Plugin v4.1+
- Compatible with the Visual Basic.NET Plugin v2.4+
Visual Basic .NET support The example below is for C#. VB.NET Plugin users should use the property "sonar.resharper.vbnet.reportPath" instead of "sonar.resharper.cs.reportPath".
Here are the exact steps to import ReSharper Command Line Tools results into SonarQube, using the SonarQube Scanner for MSBuild from the command line:
- Enable some ReSharper rules in your quality profile (see Quality Profiles for more details)
- Open a Developer Command Prompt for Visual Studio
- Put yourself in the root folder of the project you want to analyze (a sample project, available on GitHub, can be browsed or downloaded: projects\languages\csharp)
- Run the following commands:
- Begin the SonarQube Analysis and provide all required properties, including "sonar.resharper.solutionFile" and "sonar.resharper.cs.reportPath"
MSBuild.SonarQube.Runner.exe begin /k:"sonarqube_project_key" /n:"sonarqube_project_name" /v:"sonarqube_project_version" /d:sonar.resharper.cs.reportPath="%CD%\resharper.xml" /d:sonar.resharper.solutionFile="%CD%\ConsoleApplication1.sln"
- Build the project, for example:
msbuild "%CD%\ConsoleApplication1.sln"
- Run ReSharper's Command Line Tool inspectcode.exe
"C:\jetbrains-commandline-tools\inspectcode.exe" /output="%CD%\resharper.xml" "%CD%\ConsoleApplication1.sln"
- End the SonarQube Analysis and upload it to the SonarQube server
MSBuild.SonarQube.Runner.exe end
Many "Skipping the ReSharper issue at line..." messages can be shown in the logs at INFO level even if ReSharper issues are correctly imported into SonarQube: These messages are too verbose and can be safely ignored.
See Issue: Too many "Skipping the ReSharper issue at line ..." messages Open (SONARRSHPR-21)