exec任务超时视为错误

exec任务超时视为错误

本文介绍了将MSBuild exec任务超时视为错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在为这样的MSBuild Exec任务指定超时:

I'm specifying a timeout for an MSBuild Exec task like this:

<Exec Command="MyCommand.bat" Timeout="3000" />

如果我的命令超时,MSBuild将发出警告.我希望它改为发出使构建失败的错误.我该如何实现?

If my command times out, MSBuild issues a warning. I would like it to instead issue an error that fails the build. How can I achieve that?

推荐答案

使用 OnError 元素和错误任务:

<Target Name="ExecCommand">
        <Exec Command="MyCommand.bat" Timeout="3000" />
    <OnError ExecuteTargets="TimeoutErrorHandler"/>
</Target>

<Target Name="TimeoutErrorHandler">
    <Error Text="Command timeout"/>
</Target>

这篇关于将MSBuild exec任务超时视为错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 09:01