Jenkins FxCop errors should fail the build

2019-08-24 21:25发布

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条回答
何必那么认真
2楼-- · 2019-08-24 22:26

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:

  1. Checkout FxCopParser.exe (under release folder)
  2. Pass the FxCop result xml file to it

    "D:\Testing\Source\FxCop\FxCopParser.exe" "D:\Testing\Source\FxCop\BrokerApplication.xml"

查看更多
登录 后发表回答