VS/C# 构建事件中的错误处理
我刚刚编写了一个用于预构建事件的小实用程序。该实用程序作为独立运行时工作正常,但在构建事件中使用时不执行任何操作。是否有一种标准方法来注意和处理构建事件中的错误条件,或者这是更高级构建控制的领域?
I have just written a small utility to be used in a pre-build event. The utilty works fine when run as standalone, but does nothing when used in the build event. Is there a standard way of noticing and dealing with error conditions in build events, or is that the domain of more advanced build control?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK,Visual Studio 通过程序返回代码检测构建事件结果。如果程序返回 0,则构建事件成功。如果出现问题,请在实用程序中生成适当的返回代码。从控制台应用程序抛出异常也是可以的,未处理的异常详细信息将打印在构建输出中,然后构建停止。
AFAIK, Visual Studio detects build event results by the program return code. If program returns 0, build event succeeded. Generate appropriate return code in your utility, if something is wrong. Throwing exception from a Console application is also OK, unhandled exception details are printed in the build output, and build stops.