本文介绍了Jenkins FxCop错误应使构建失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个 FxCop.project文件,我使用Jenkins作业对其进行调用
I have a FxCop.project file which i call using a Jenkins job
"C:\Program Files (x86)\Microsoft Fxcop 10.0\FxCopCmd.exe" /project:"D:\Testing\Source\FxCop\BrokerApplication.FxCop" /out:"D:\Testing\Source\FxCop\BrokerApplication.xml"
如果有任何FxCop错误,我要失败的工作.
What i want is to fail the job if there are any FxCop errors.
反正有这样做吗?
推荐答案
在搜寻了几个小时后,我发现了部分答案,并决定将其更新为可执行文件.
After googling for hours I found a partial answer here and decided to update it to an executable.
您可以在此处找到解决方案.
You can find my solution here.
如何运行:
- 检出FxCopParser.exe(在发行版文件夹下)
-
将FxCop结果xml文件传递给它
- Checkout FxCopParser.exe (under release folder)
Pass the FxCop result xml file to it
这篇关于Jenkins FxCop错误应使构建失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!