问题
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"
What i want is to fail the job if there are any FxCop errors.
Is there anyway to do this ?
回答1:
After googling for hours I found a partial answer here and decided to update it to an executable.
You can find my solution here.
How to run it:
- Checkout FxCopParser.exe (under release folder)
Pass the FxCop result xml file to it
"D:\Testing\Source\FxCop\FxCopParser.exe" "D:\Testing\Source\FxCop\BrokerApplication.xml"
来源:https://stackoverflow.com/questions/56195786/jenkins-fxcop-errors-should-fail-the-build