Sonarqube project page dont show Project for MsBuild

Hi,

I have create CICD pipeline for MsBuild. I am using below mention code in my pipeline

stage(‘Code Quality’) {
steps {
echo ‘Code Quality’
withSonarQubeEnv(‘SonarQubeToken’) {
script {
scannerHome = tool ‘SonarQubeMsBuild’
echo “${scannerHome}”
bat “”${tool ‘MsBuild’}"\msbuild.exe begin /k:“DigitalSignature” /d:sonar.login=‘token’"
bat “”${tool ‘MsBuild’}"\msbuild.exe /t:Rebuild /p:Configuration=Release"
bat “”${tool ‘MsBuild’}"\msbuild.exe end /d:sonar.login=‘token’"
}
}
}
}

I am not getting any error. But not showing result in sonarqube.

SOnar

Hi,

Can you share the analysis logs?

 
Ann

Analysislog.txt (7.0 KB)
Hello,

I have attached my analysis log. Please review it

Thanks

Hi,

First, I want to double-check that you’ve already revoked that token you just published. :slight_smile:

Second, I see a couple things in your log. First:

CoreCompile:
Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.

You need to do a full rebuild with each analysis. Analysis eavesdrops on the build to gather information about your project. No build → no analysis.

Second, I notice there are some non-UTF-8 characters in your project key. The problem is probably the lack of a build, but it might be worth trying without these characters in the key: “�

 
HTH,
Ann

Hello Ann,

I have verified my publish token generated new token. I have rectified non-UTF-8 characters still i could not able to push the build on Sonar.
AnalysisLog.txt (33.9 KB)

stage(‘Code Quality’) {
steps {
echo ‘Code Quality’
withSonarQubeEnv(‘SonarQubeToken’) {
//bat “SonarScanner.MSBuild.exe begin /k:MsBuild /d:sonar.host.url=http://localhost:9000 /d:sonar.login=3f3112ec12c214928535038257cf972f92de5e95”
script {
scannerHome = tool ‘SonarQubeMsBuild’
echo “${scannerHome}”
bat “”${tool ‘MsBuild’}"\msbuild.exe begin /k:‘NetMsBuild’ /d:sonar.host.url=http://localhost:9000 /d:sonar.login=‘4a68bdafbd06dc455c99e6df103138685d3fa3c2’"
bat “”${tool ‘MsBuild’}"\msbuild.exe /t:Rebuild /p:Configuration=Release"
bat “”${tool ‘MsBuild’}"\msbuild.exe end /d:sonar.login=‘4a68bdafbd06dc455c99e6df103138685d3fa3c2’"
}
}
}
}

What I am missing here. Please help

Hi,

Are you doing a rebuild? I’m still seeing a lot of Skipping target lines in your log. Again,

 
Ann

Hi Ann,

Sorry to ask how to rebuild

Hi,

I believe it’s literally rebuild instead of build.

 
HTH,
Ann