DCSIMG
DEV,Code Metrics - Shai Raiten's Blog

Shai Raiten's Blog

It's all about code...

Browse by Tags

All Tags » DEV » Code Metrics (RSS)
Integrating Code Metrics in TFS 2010 Build - WF 4.0
Integrating Code Metrics in TFS 2010 Build – WF 4.0 In my last two posts I talked about What is Code Metrics and about the Code Metrics From The Command Line - Power Tools available, in this post I’ll show how you can integrate Code Metrics as part of your Build Process without writing any custom code activity. This is not the best solution but because Jakob Ehn – Already did an amazing work to integrate Code Metrics into Team Build 2010, I will show you how to integrate the Code Metrics into the...
Code Metrics From The Command Line - Power Tools
Code Metrics From The Command Line - Power Tools In my last post I’ve talked about What is Code Metrics in Visual Studio, and how Code Metrics will allow you to monitor you code to find those un-maintainable and complex hotspots “Microsoft just release a command line because many customers are looking for a way to generate code metrics information as part of their build process. In this way, the complexity associated with assemblies coming out of your nightly builds could potentially be tracked and...
What is Code Metrics
What is Code Metrics Visual Studio 2008/2010 comes with a nice tool that called – Code Metrics: “gives you the ability to dig deep to find those un-maintainable and complex hotspots” Code Metrics calculate 5 measures: Lines of Code – Indicates the approximate number of lines in the code. The count is based on the IL code and is therefore not the exact number of lines in the source code file. A very high count might indicate that a type or method is trying to do too much work and should be split up...