nant nantcontrib 配置以使用 fxcop
我需要运行我在 NAnt 构建文件中实现的 FxCop 属性。 我有 NAnt 和 NAntContrib。我已将 nantcontrib\bin
的内容复制到 nant\bin 文件夹,并将环境变量设置为 FxCopCmd.exe
。
然后我在运行 NAnt 脚本时收到错误:
无效属性 (fxcop)
可能是什么问题?
I need to run FxCop attribute which I have implemented in NAnt build file.
I have NAnt and NAntContrib. I have copied the contents of nantcontrib\bin
to nant\bin folder and have set environment variable to FxCopCmd.exe
.
Then I'm getting the error when I run NAnt script:
invalid attribute (fxcop)
What could be the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过使用 NAnt 的
exec
任务,直接从 NAnt 调用 FxCop 稍微简单一些,无需使用 NAntContrib 任务。有关实施细节,请参阅文章 I写了关于集成 NAnt 和 FxCop 的文章。这是代码:
It's a bit simpler to invoke FxCop directly from NAnt, without using the NAntContrib task, by using NAnt's
exec
task. For implementation details, have a look at an article I wrote about integrating NAnt and FxCop.Here's the code: