CruiseControl 1.6 的 MSBuild 失败

发布于 2024-12-01 05:59:32 字数 871 浏览 1 评论 0原文

日安。

由于我们的 TFS 服务器升级到 2010,我们已更新到 ccnet 1.6。 在我们的 ccnet.config 中,我们正在执行一个包含 MSBuild exec 任务的 nant (0.9) 构建脚本。

使用 nant 脚本指定的参数在命令行运行 MSBuild 工作正常,但由于某种原因,当 ccnet 通过 nant 脚本执行 MSBuild 任务时,它失败并显示以下内容:

外部程序失败:C:\WINDOWS\Microsoft.NET\ Framework\v3.5\MSBuild.exe(返回代码为 128)

nant exec 任务:

<property name="MSBuildPath" value="${framework.dir}\MSBuild.exe"/>
    <exec program="${MSBuildPath}">
        <arg line="${project.svds}.sln" />
        <arg value="/t:Rebuild" />
        <arg value="/p:Configuration=Release" />
        <arg value="/p:Platform=x86" />
        <arg value="/verbosity:normal" />
        <arg line="/logger:'C:\Program Files\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MsBuild.dll'"/>
   </exec>

不幸的是,没有透露更多内容,而且一切都相当神秘。

G'day.

We've updated to ccnet 1.6 due to our TFS server being upgraded to 2010.
Within our ccnet.config we're executing a nant (0.9) build script that contains an MSBuild exec task.

Running MSBuild at command line with the parameters as specified by the nant script works okay, but for some reason when ccnet executes the MSBuild task via the nant script it fails with the following:

External Program Failed: C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe (return code was 128)

The nant exec task:

<property name="MSBuildPath" value="${framework.dir}\MSBuild.exe"/>
    <exec program="${MSBuildPath}">
        <arg line="${project.svds}.sln" />
        <arg value="/t:Rebuild" />
        <arg value="/p:Configuration=Release" />
        <arg value="/p:Platform=x86" />
        <arg value="/verbosity:normal" />
        <arg line="/logger:'C:\Program Files\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MsBuild.dll'"/>
   </exec>

Unfortunately no more is revealed and it's all rather cryptic.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悍妇囚夫 2024-12-08 05:59:32

128 没有要等待的子进程。< /p>

按如下方式设置 MSBuildPath 并尝试...

<property name="MSBuildPath" value="C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe" />    

线程可能会帮助您。

编辑

这可能是由于服务用户帐户所致。它可能作为本地系统帐户运行。更改服务帐户 - 通过控制面板/管理工具/服务可能会有所帮助。

128 There are no child processes to wait for.

Set MSBuildPath as below and try...

<property name="MSBuildPath" value="C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe" />    

This thread might help you.

EDIT

Possibly this can be due to the service user account. It may be running as the Local System account. Changing the service account - via Control Panel / Administrative Tools / Services may help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文