Jenkins无法构建在其构建后事件中运行批处理文件的Visual Studio项目

时间:2018-02-11 16:51:42

标签: jenkins

我是Jenkins的新手并开始设置Jenkins。

我有一个Visual Studio项目可以使用post build事件构建,该事件运行批处理脚本文件(复制一些文件)。

然而,当我使用MSBuild通过Jenkins构建项目时,它无法构建项目。

我还尝试通过从Jenkins工作区打开解决方案/项目来构建项目,但它仍然失败。

我不知道为什么会失败。

有任何建议或帮助吗?

在visual studio中设置构建事件:

call "$(ProjectDir)..\..\dependencies\scripts\postbuild\ExternalStandard.bat" "$(ProjectDir)..\" "$(TargetDir)" "$(Configuration)"
call "$(ProjectDir)..\..\dependencies\scripts\postbuild\CopyDependenciesInternalLicensing.bat" "$(ProjectDir)..\" "$(TargetDir)" "$(Configuration)"

Jenkins构建错误: enter image description here

1 个答案:

答案 0 :(得分:0)

尝试更换"来电"用" cmd / c"。 "呼叫"通常在批处理文件中使用。