Hello.
I have an asp.net project which I want to analyse with my Sonarqube 7.3 enterprise.
How can I make the analysis?
I tried using Sonar-Scanner but I got 0 for everything: bugs, vulnerabilities, codesmells, duplications. I found this strange.
Can you point me in the right direction?
My sonar-project.properties looks like this:
sonar.projectKey=AAA
sonar.projectName=AAA
sonar.projectVersion=1.0
sonar.sources=.
I’ve also tried to do this using C# plugin.
https://docs.sonarqube.org/pages/viewpage.action?pageId=1441900
I’ve done all the stated procedure.
when I run the the analysis in my command line, using this command:
SonarScanner.MSBuild.exe begin /k:“AAA” /n:“AAA” /v:“1.0”
MSBuild.exe /t:Rebuild
SonarScanner.MSBuild.exe end
I get this (the same):
WHat are the recommended options to scan asp.net code? What am i doing wrong?