One team will analyze our .NET project(solution) code, so, before, they asked about how many lines of code contains our project.
Is there some statistical data, some code metrics in VS 2010?
|
One team will analyze our .NET project(solution) code, so, before, they asked about how many lines of code contains our project. Is there some statistical data, some code metrics in VS 2010? |
|||||||||
|
|
You can also use DPack:
DPack is very handy but you can use it only for solution statistics:
|
|||
|
|
|
Yes Here is a tutorial: http://blogs.msdn.com/b/habibh/archive/2009/10/27/how-to-count-the-lines-of-code-loc-in-your-application-using-visual-studio.aspx Or you can use a dedicated tools like this one: http://code.msdn.microsoft.com/LOCCounter |
|||||||||
|
|
Open the search (ctrl+shift+f), Search for all files in the solution (*.cs or *.vb), use regular expression Wait. |
|||
|
|
Using powershell move to the folder containing your project files and enter the command
replace "cs" "vb" with file extensions you want to include in your count. |
|||
|
|