VS/C# 构建事件中的错误处理

发布于 2024-09-03 22:55:39 字数 105 浏览 6 评论 0原文

我刚刚编写了一个用于预构建事件的小实用程序。该实用程序作为独立运行时工作正常,但在构建事件中使用时不执行任何操作。是否有一种标准方法来注意和处理构建事件中的错误条件,或者这是更高级构建控制的领域?

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 技术交流群。

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

发布评论

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

评论(1

只有影子陪我不离不弃 2024-09-10 22:55:39

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.

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