找不到MSBuild.SonarQube.Internal.PostProcess.exe

时间:2015-10-01 10:44:04

标签: msbuild sonarqube opencover

当我将声纳主机从localhost更改为我的机器ip时,无法执行ms build的声纳运行。

尝试在sonar.properties文件和sonarqube_analysis.xml中更改主机。

c:\HID\project-test\PACS\sonar_opencover\Project>MSBuild.SonarQube.Runner.exe end
Default properties file was found at C:\HID\project-test\dotnet\MSBuild.SonarQube.Runner-1.0.1\SonarQube.Analysis.xml
Loading analysis properties from C:\HID\project-test\dotnet\MSBuild.SonarQube.Runner-1.0.1\SonarQube.Analysis.xml
Post-processing started.
Execution failed. The specified executable does not exist: c:\HID\project-test\PACS\sonar_opencover\Project\.sonarqube\bin\MSBuild.SonarQube.Internal.PostProcess.exe
Post-processing failed. Exit code: 1

我执行的脚本

@call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd.bat"
MSBuild.SonarQube.Runner.exe begin /k:"jenkins_test5" /n:"jenkins_test5" /v:"1.0" /d:sonar.cs.opencover.reportsPaths="%CD%\opencover.xml"
msbuild.exe
"C:\HID\project-test\PACS\sonar_opencover\opencover.4.6.210\OpenCover.Console.exe" -output:"%CD%\opencover.xml" -register:user -target:"vstest.console.exe" -targetargs:"UnitTestProject1\bin\Debug\UnitTestProject1.dll"
MSBuild.SonarQube.Runner.exe end

2 个答案:

答案 0 :(得分:1)

我今天遇到了这个问题。事实证明我错过了配置SonarQube.Analysis.xml。基本上,它期望

<Property Name="sonar.host.url">http://{server}:9000/sonar</Property>

包括 / sonar (来自服务器上sonar.properties的sonar.web.context设置)。

我在SonarQube.Analysis.xml中错过了/声纳,并且与您的症状完全相同。

答案 1 :(得分:0)

我有这个错误,因为sonarcube网址错误,无法连接到conarcube主机:

<Property Name="sonar.host.url">http://{server}:{Port}</Property>

在询问我的同事之后,我发现网址已经更改,我更正了网址并且成功运作。