0

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 ?

Anuja Lamahewa
  • 897
  • 1
  • 11
  • 23

1 Answers1

0

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"

Anuja Lamahewa
  • 897
  • 1
  • 11
  • 23