Hi,
I need some help with sonar-scanner. I’m trying to scan .NET core 3.1 C# solution.
The scan runs but no cs files are actually being scanned.
I’m using:
SonarQube server 7.9.4, sonar-scanner 5.0.4, Java 11.0.9.1 Debian, Linux 4.19.121-linuxkit amd64.
The command that I’m using to run the scanner is:
/sonar/sonar-scanner -Dsonar.projectKey=com.ncr.emerald.selling.services
-Dsonar.login=“Token”
-Dsonar.host.url=http://URL
-Dsonar.projectBaseDir=<Path/to/solution>
-Dsonar.sourceEncoding=UTF-8
-Dsonar.verbose=true
-Dsonar.language=cs
-X
The C# sensor is being loaded but I get the following:
10:41:26.363 INFO: Sensor C# Properties [csharp]
10:41:26.364 WARN: Property missing: ‘sonar.cs.analyzer.projectOutPaths’. No protobuf files will be loaded for this project.
10:41:26.364 WARN: No Roslyn issues report found for this project.
In the end cs files are being indexed but not scanned.
what am I missing?
For .NET / C#, you should be using the SonarScanner for .NET. It will handle most of your project config (including source code locations) for you. You’ll need to pass a few basic parameters in on the command line, but the docs go over all that.
Hi,
i send you a few log files with different command that i tried
the first is:
/sonar/sonar-scanner begin -Dsonar.projectKey=com.ncr.emerald.selling.services -Dsonar.login=“token” -Dsonar.host.url=http://sonar.ncr.com -Dsonar.projectBaseDir=/app/selling-transaction-management/src/ -Dsonar.sourceEncoding=UTF-8 -X
the second command is:
/sonar/sonar-scanner -Dsonar.projectKey=com.ncr.emerald.selling.services -Dsonar.login=“token” -Dsonar.host.url=http://sonar.ncr.com -Dsonar.projectBaseDir=/app/selling-transaction-management/src/ -Dsonar.sourceEncoding=UTF-8 -X
the final solution to the configuration problem is this:
apt update && apt install -y default-jre
dotnet tool install --global dotnet-sonarscanner --version 5.0.4
mkdir /sonar
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.dotnet/tools**/**
COPY SonarQube.Analysis.xml /sonar/SonarQube.Analysis.xml
the problem was i was missing the final / in the path statement.
about the permissions error i’m receiving putting the token into the sonar.login property and removing the sonar.password property did not solve the issue.