I am running sonarqube:latest in a Docker container locally on my development machine to get some stuff working.
I’m trying to analyze a C# project that runs on .NET Core 3.1. Looking at this page I assumed I could use the .NET Core Global Tool to scan it but that gives me the following error while running the end step:
This also happens when I try to use .NET 5 dotnet <path to SonarScanner.MSBuild.dll> etc. It does nicely scan all the TypeScript and CSS stuff that’s in my project but in the end there are no C# results in SonarQube.
Removing this (and fixing the resulting build errors) still gives me the same warning when running it on the whole solution. So I know need to debug which project is giving problems and why that’s resulting in this warning.
Any pointers on how to do that or what could be the problem?
The original problem from @Wouter_de_Kort was identified on the SO website to be coming from the custom value of ErrorLog property. This issue was created to address that:
The problem of @luismachadoreis most likely isn’t the same as the original one. Did you confirmed that you’re using RunAnalyzer or RunAnalyzerDuringBuild properties in your project? If not, I’d suggest to create a new thread for investigation and gathering more info.
I have the exact same issue as described above. Tried
dotnet build -p:RunAnalyzersDuringBuild=true
… but that didn’t change anything. Still getting the
WARN: Your project contains C# files which cannot be analyzed with the scanner you are using. To analyze C# or VB.NET, you must use the SonarScanner for .NET 5.x or higher, see https://redirect.sonarsource.com/doc/install-configure-scanner-msbuild.html
I just gave up on this issue and moved in another direction but it has become relevant again. @Pavel_Mikula If you can explain to me what you need I’m more then happy to give all the logs and other stuff you need in a private thread. Would love to solve this because it’s our only blocker for using SonarCloud at the moment.
Using the new scanner I get the following when analyzing the C# files in our project:
WARN: No Roslyn issue reports were found. The C# files have not been analyzed. You can get help on the community forum: https://community.sonarsource.com
Thank you for the logs. It turns out that we didn’t properly implement the user-provided ErrorLog value. Scanner 5.3.0 supports absolute ErrorLog paths but doesn’t support relative paths.
I’ve created an issue to support relative paths as well.
As a workaround, you can set ErrorLog to an absolute path with $(MSBuildProjectDirectory) property: