优雅的构建后事件失败
当 Visual Studio 2010 中的生成后事件失败时,您会在错误中显示整个生成后批处理文件。有什么方法可以隐藏它并显示更清晰的错误消息吗?
我发现这篇文章来抑制原始错误,但我仍然需要构建失败 - 只需一条干净的消息。
When a post-build event fails in Visual Studio 2010, you get the entire post-build batch file displayed in the error. Is there any way to hide that and show a cleaner error message instead?
I found this article to suppress the original error, but I still need the build to fail - just with a clean message.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用
@echo
命令即可输出您需要的信息。Just use
@echo
command to output the information you need.