有没有办法让 NAnt 捕获异常并运行回滚脚本?
我正在使用 NAnt 运行一些部署脚本。它大大简化了流程。现在的问题是,当出现错误时,我希望 NAnt 任务运行我的回滚脚本。但是我只知道任务出错时会失败的选项。是否有任何烘焙方式可以在错误时设置属性,或者在上一个任务失败时使用选择语句来重定向任务流程?
I am using NAnt to run some scrips for a deployment. It has simplified the process a lot. The issue now is that when there is an error I want the NAnt task to run my roll back scripts. However I only know of the option to fail on error for my tasks. Is there any sort of baked in way to set properties on error or to use the the chose statement to redirect the flow of the tasks if a previous task fails?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了寻找有关 NAnt 的另一个问题的答案(nant 构建脚本中的错误处理)。这将满足我必须自动启动回滚脚本的需求。唯一需要注意的是,它不是基本 NAnt 的一部分,而是 NAntContrib 的一部分,但这是一个小细节。
I found the answer looking for another question about NAnt (error handling in nant build scripts). This will fill the need I have to automatically kick off roll back scripts. Only thing catch is that is not a part of base NAnt but NAntContrib, but that a minor detail.