在Jenkins中我如何使用FxCop Runner Plugin和.dll附加的.dll进行分析?

时间:2015-07-27 10:30:53

标签: jenkins reference fxcop

在Jenkins中我如何使用FxCop Runner Plugin和.dll附加的.dll进行分析?我正在为jenkins使用FxCop Runner Plugin来分析构建。但我得到了以下错误 找不到一个或多个引用的程序集。使用'/ directory'或'/ reference'开关指定其他程序集引用搜索路径。

如何使用jenkins runner插件添加引用?

1 个答案:

答案 0 :(得分:0)

您正在运行哪个版本的FxCop?

两件事:

1将/ gac标志添加到FxCop

2将FxCopCmd.exe.config文件更改为AssemblyReferenceResolveMode,从StrongName更改为StrongNameIgnoringVersion

OR(这不是你想要的,但是)创建一个FxCop项目文件并在那里添加所有引用;然后在cmd中调用它。

"C:\Program Files (x86)\Microsoft Fxcop 10.0\FxCopCmd.exe" /project:"C:\Jenkins\jobs\8.5-StaticCodeAnalsis\Project.FxCop" /out:"C:\Jenkins\jobs\8.5-StaticCodeAnalsis\workspace\FxCopReport.xml"

enter image description here