FxCop 1.36 与 CruiseControl.NET 1.5

发布于 2024-09-12 01:03:41 字数 542 浏览 2 评论 0原文

我需要使用 CruiseControl.NET 1.5 运行 FxCop 以进行持续集成。我已将构建脚本包含在执行 FxCop 项目文件的命令中。

当我在 CruiseControl.NET 中构建项目时,出现以下错误。

C:\CPLBuildScripts\CheckpointLearning\FullBuild\Web.BuildScript.proj (19,5):
            
            errorMSB3073: The command "C:\Program Files\Microsoft FxCop 1.36\FxCopCmd.exe /p:C:\CheckpointLearningFullBuilld\CPL.FxCop /o:C:\CheckpointLearningFullBuilld_Artifacts\Artifacts\FxCop_AnalysisReport.xml" exited with code 9009

(19,5) 指的是上面的命令。

I need to run FxCop with CruiseControl.NET 1.5 for continuous Integration. I have included the buildscript with the command to execute the FxCop project file.

When I Build the project in CruiseControl.NET, I get the following error.

C:\CPLBuildScripts\CheckpointLearning\FullBuild\Web.BuildScript.proj (19,5):
            
            errorMSB3073: The command "C:\Program Files\Microsoft FxCop 1.36\FxCopCmd.exe /p:C:\CheckpointLearningFullBuilld\CPL.FxCop /o:C:\CheckpointLearningFullBuilld_Artifacts\Artifacts\FxCop_AnalysisReport.xml" exited with code 9009

(19,5) Refers to the above command.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小鸟爱天空丶 2024-09-19 01:03:41

您似乎缺少 fxcopcmd.exe 路径周围的引号。

You seem to be missing quotes around the fxcopcmd.exe path.

风筝在阴天搁浅。 2024-09-19 01:03:41

您应该将命令更改为

"C:\Program Files\Microsoft FxCop 1.36\FxCopCmd.exe" /p:C:\CheckpointLearningFullBuilld\CPL.FxCop /o:C:\CheckpointLearningFullBuilld_Artifacts\Artifacts\FxCop_AnalysisReport.xml

You should change the command to

"C:\Program Files\Microsoft FxCop 1.36\FxCopCmd.exe" /p:C:\CheckpointLearningFullBuilld\CPL.FxCop /o:C:\CheckpointLearningFullBuilld_Artifacts\Artifacts\FxCop_AnalysisReport.xml
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文