Any ideas as to how to make this error message go away?
Cannot run process E:\Program Files\Microsoft FxCop 1.36\FxCop.exe\FxCopCmd.exe /forceoutput /gac /ignoregeneratedcode /f:\Sacog\bin\Debug\Sacog.dll /out:05A1B22A-DE6E-49ae-AA30-DC52A074EF22\fxcop-result.xml : file not found
I had to set the following in buildAgent.properties file
system.FxCopRoot=c:\\Program Files (x86)\\Microsoft FxCop 1.36
Make sure to escape the colon and backslashes.
Then I had to create an artifact from my compile build configuration of the bin folder containing the assemblies I wanted FxCop to look at. Then I had to create an artifact dependency on that artifact in the FxCop build configuration; otherwise there were not any assemblies available for FxCop tp operate on.
That did the trick for me.