I tried to run the scanner for an asp.net project the Build is successful however when I run the “end” part I got this error.
SonarScanner for MSBuild 4.6.2
Using the .NET Framework version of the Scanner for MSBuild
Post-processing started.
The SonarQube MSBuild integration failed: SonarQube was unable to collect the required information about your projects.
Possible causes:
1. The project has not been built - the project must be built in between the begin and end steps
2. An unsupported version of MSBuild has been used to build the project. Currently MSBuild 14.0 and 15.0 are supported
3. The begin, build and end steps have not all been launched from the same folder
4. None of the analyzed projects have a valid ProjectGuid and you have not used a solution (.sln)
Generation of the sonar-properties file failed. Unable to complete SonarQube analysis.
13:14:03.204 Post-processing failed. Exit code: 1
The commands that I use:
SonarScanner.MSBuild.exe begin /k:"CSTESTING" /d:sonar.host.url="http://host-url" /d:sonar.login="token" /d:sonar.verbose=true
MsBuild.exe .\ExchangeWSV2.sln /t:Rebuild /v:diag
SonarScanner.MSBuild.exe end /d:sonar.login="token"
@Andrei_Epure Thanks for your response, I upload the log output of the commands but I tried with the MSBuild 14.023107.0 and with the 15.9.21.
With the both builds I got the same output error
The SonarQube MSBuild integration failed: SonarQube was unable to collect the required information about your projects.
Possible causes:
If I use dotnet I got a different error
ExchangeWSV2.sln : Solution file error MSB4249: Unable to build website project “ExchangeWS”. The ASP.NET compiler is only available on the .NET Framework version of MSBuild.
What kind of web application are you building, and does it have a .csproj or .vbproj file? (I’m guessing it’s a web application from the references to the aspnet compiler in the build output).
Hi @duncanp, sorry for the long wait. Yes it’s an aspnet project web application using dotnet framework 4.0. There is no csproj only the solution file.