导出 .NET 中的圈复杂度
我知道我可以通过右键单击并选择“计算代码指标”来访问 Visual Studio 2008 团队资源管理器中代码的圈复杂度。 我想公开此数据以供 Web 应用程序显示。 有谁知道通过 API 访问这些数据的方法吗?
感谢您的帮助!
I know that I can access the cyclomatic complexity to my code in Visual Studio 2008 Team Explorer by right clicking and selecting "Calculate Code Metrics". I would like to expose this data for a web application to display it. Does anybody know of any way of accessing this data through an API?
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我使用 NDepend 来处理类似的事情。 您可以在 NDepend 中创建 CQL 查询并执行它们。
示例:
返回圈复杂度大于 8 的方法。
I use NDepend for stuff like that. You can create CQL queries in NDepend and execute them.
Example:
returns the methods with a cyclomatic complexity greater than 8.
如本答案中所述,可以利用Gendarme开源工具的API来计算方法的圈复杂度
As described in this answer, one can leverage the API of the Gendarme open source tool to calculate the cyclomatic complexity of a method
没有API。 但您可以读取 代码指标电动工具。 因此,您可以通过命令行生成代码指标 XML 文件,如下所示:
然后从 MetricsResults.xml 中获取所需的数据。
有关此强大工具的详细信息 这里。
如果要在 TFS 构建中运行代码指标,请参阅 此处 和 此处 查看选项。
There is no API. But you can read an XML file generated by the Code Metrics Power Tool. So you would generate the code metrics XML file by command line like:
Then grab the data you want out of MetricsResults.xml.
More info on the power tool here.
If you want to run code metrics in your TFS build, see here and here for options.
我不知道——Visual Studio 有任何此类 API 吗? ——但是计算圈复杂度相当容易。 宪兵可能就是您的答案。
I don't -- does Visual Studio have any APIs of that sort? -- but computing cyclomatic complexity is reasonably easy. Gendarme might be your answer.