构建后事件失败?
在构建后事件中的特定条件下,是否有办法强制构建失败?我正在使用的包在构建后一起运行 jslint 和一些其他解决方案,如果 jslint 产生错误,我希望 Visual Studio 失败。
我知道 VS2010 的 jslint 插件会因错误而导致构建失败,但我的要求限制我只能使用包含 jslint 的打包错误检查解决方案。
Is there a way to force the build to fail given certain conditions in the post-build event? The package I'm working with runs jslint and a few other solutions all together on post-build, I would like Visual Studio to fail if jslint produces an error.
I am aware of the jslint plugin for VS2010 that will fail the build on error, but my requirements are restricting me to using the packaged bugchecking solution in which jslint is contained.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
构建后事件基本上是批处理脚本 - 您可以使用“if ERRORLEVEL”检查错误返回值。
失败的复制命令示例:
Post build events are basically batch scripts - you can check for error return values using "if ERRORLEVEL".
Example of a failing copy command:
我相信有一个名为 continueonerror 和 breakonerror 等的属性可以添加到这些构建后事件中。你能看一下同样的吗?我已经实现了这个,但是如果这不能解决你的问题或者其他人不能解决你的问题,那么我的机器将无法访问。
I believe there is an attribute called continueonerror and breakonerror etc that can be added to these post build events. Can you take a look at the same.. I hv this implemented but right nw no access to my machine will get back to you if this doesn't solve your problem or if smbody else can't..