CruiseControl MSBuild 自动计算源代码行数
在我的公司,我们使用巡航控制来自动化代码库的日常构建。这是通过 MsBuild 工具完成的。 FxCop 已经集成到 MsBuild 中
平台详细信息是:-
- Visual Studio 2010
- C# .NET 3.5
- WPF
有没有人使用它来自动计算每个构建中的代码行,以便我们可以计算每个构建中添加的行数?请提供任何建议
In my company we are using cruise control to automate daily builds of the codebase. This is done through MsBuild tool. FxCop is already integrated into MsBuild
The Platform details are:-
- Visual Studio 2010
- C# .NET 3.5
- WPF
Has any one used this to automate calculation of the lines of code in each build so we can calcuate the number of lines added in each build? Please provide any suggestions
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
VS2010 代码指标强大工具(下载链接)包含以下数量代码行数与其他一些指标一起作为指标之一。
来自文档:
您可以通过
exec
任务运行此工具作为构建过程的一部分,通过merge
块将该工具的输出(一个简单的 XML 文件)合并到主构建日志中,然后通过 Web 仪表板上的简单 XSLT 显示代码行数。The VS2010 code metrics power tool (download link) includes the number of lines of code as one of the metrics along with a few others.
From the docs:
You could run this tool as part of the build process via an
exec
task, merge in the tool's output (a simple XML file) into the main build log via amerge
block, then display the number of lines of code via a simple XSLT on the web dashboard.