Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to find the number of lines of code in an entire solution? I've heard of MZ-Tools, but is there an open source equivalent?

share|improve this question
9  
I agree that it doesn't help much but if management are asking for it... – Fermin Aug 7 '09 at 14:54
15  
LoC is simply a metric and is particulairly interresting in 2 cases: 1) to get an idea how big the code base is i.e. when you join a new team 2) to measure your progress when trying to make your code base more compact – Piotr Owsiak Oct 11 '10 at 17:07
80  
Some people here are saying that counting lines of code is useless without giving it good thought. It is quite useful as it is a metric that should generally be minimized. It is a simple way to measure complexity of the solution(not efficiency) and if the problem is known to be simple, the more lines of code, generally the lower the quality. Another thing is why do people bother responding if it is just to say the question is a bad one? What would you think if a teacher told you your question just shouldn't be asked. – user753899 May 14 '11 at 18:35
21  
In VS2010 there is a in-built tool that counts all lines of code and other values too: Go to View -> Other Windows -> Code metrics results. A little button in the corner that looks like a calendar, click that, the tooltip should say Calculate code metrics for soulution, and let VS do it's thing. – user959631 Jul 27 '12 at 14:37
2  
The person doesn't always need to tell you why they want to count code. When the question is this simply stated, the case around why is irrelevant. Just answer his question. I hate that. There are times to ask why when clearly you need to and then there are times you don't (when you personally don't see a need...and are just badgering the poster in arrogance). – CoffeeAddict Jan 10 at 22:26
show 5 more comments

18 Answers

up vote 104 down vote accepted

An open source line counter for VS2005, 2003 and 2002 is available here:

http://www.wndtabs.com/

There is also discussion of creating a line counting VS addin, complete with code on Codeproject, here

http://www.codeproject.com/KB/macros/LineCounterAddin.aspx

Also Slick Edit Gadgets have a nice line-counter, here:

http://www.slickedit.com/index.php?option=com_content&view=article&id=78&Itemid=90 (Broken)

and Microsoft Visual Studio Team System 2008 includes a good line counter.

Just remember though:

Measuring programming progress by lines of code is like measuring aircraft building progress by weight. Bill Gates

share|improve this answer
2  
+1 for Slick Edit Gadgets, its what I use (to satify my manager) – edosoft Aug 7 '09 at 13:45
3  
Thanks for that, and don't worry the count is not a measure of programming progress! – Fermin Aug 7 '09 at 14:22
69  
+1 for the quote! :o> – sbi Aug 7 '09 at 20:41
12  
None of these seem to apply to Visual Studio 2010, and the slickedit link is broken. – MGOwen Jun 29 '11 at 1:42
18  
You find the LOC feature in Visual Studio 2010 Ultimate under "Analysis > Code metrics" I hope I translated it right. I have the German version. There it is "Analyse" > "Codemetriken berechnen" – OneWorld Mar 16 '12 at 19:08
show 5 more comments

I've found powershell useful for this. Because I consider LoC to be a pretty bogus metric anyway, I don't believe anything more formal should be required.

From a smallish solution's directory:

PS C:\Path> (dir -include *.cs,*.xaml -recurse | select-string .).Count
8396
PS C:\Path>

That will count the non-blank lines in all the solution's .cs and .xaml files. For a larger project, I just used a different extension list:

PS C:\Other> (dir -include *.cs,*.cpp,*.h,*.idl,*.asmx -recurse | select-string .).Count
909402
PS C:\Other>

Why use an entire app when a single command-line will do it? :)

share|improve this answer
4  
(The only time I've ever been asked to supply line counts was when upper management was figuring out how much time it would take to migrate all our products overseas so they could shut down our domestic site.) – Greg D Aug 7 '09 at 14:33
4  
(Yes, this includes codegen'd files and comments. No, that doesn't bother me. Designers, gen'd code, and comments need to be maintained, too.) – Greg D Aug 10 '09 at 14:20
2  
Thank you very much. Very nice and simple. – Tomas Pajonk Sep 11 '09 at 12:15
11  
very nice, completely forgot about powershell. it should become default replacement for cmd – lubos hasko Jan 17 '10 at 14:40
1  
Excellent! Your ending comment really sums it up, it's a trivial task, so why use a non-trivial tool? Though I really think it should be included in all versions of VS. – Sune Rievers Oct 1 '10 at 9:22
show 2 more comments

Found this tip: LOC with VS Find and replace

Not a plugin though if thats what you are looking for.

share|improve this answer
worked nicely . – corymathews Mar 25 '10 at 19:20
Thank you, really nice one. – MartyIX Aug 4 '10 at 18:05
Perfect. Does a great job. +1 – LiamGu Aug 25 '10 at 16:40
8  
+1 Much easier than installing a separate tool. – pate Jan 26 '11 at 19:32
handy! relatively quick and direct – curtisk Feb 16 '11 at 18:24
show 3 more comments

Visual Studio 2010 Ultimate has this built-in.

Analyze -> Calculate Code Metrics

share|improve this answer
What version of 2010? Pro doesn't seem to have that menu – Frankston Ralphington III Jun 20 '11 at 1:40
I have Ultimate edition installed – Herter Jun 22 '11 at 18:41
4  
Ultimate and Premium, I think – Stefan Dragnev Aug 29 '11 at 16:42
Premium does include it. However, it seems to skip over code files where the type is defined in xaml. – Trevor Mar 22 '12 at 15:19
2  
Warning: This does many other things besides simply line count. It also lists "Maintainability Index", "Cyclomatic Complexity", "Depth of Inheritance", and "Class Coupling", all of which are pretty complicated to compute, and you can't run the metrics for just part of it. What this means is that if your code-base is particularly large, you might be sitting for hours waiting for it. If all you want is line-count, there's much faster solutions out there. – Darrel Hoffman Sep 24 '12 at 17:55
show 3 more comments

I used once Ctrl + Shift + F. Next put a '\n' in the search box and enable regular expressions box. Then in the find results, in the end of the screen is the number of files searched and lines of codes finded.

share|improve this answer
5  
This is ugly but beautiful... – Alexander Apr 3 '12 at 23:51
2  
Love it =) Simple and works in any version of Visual Studio – Alex Jan 17 at 14:09
1  
Best answer here. – Paul Draper Mar 10 at 7:28

cloc is an excellent commandline, Perl-based, Windows-executable which will break down the blank lines, commented lines, and source lines of code, grouped by file-formats.

Now it won't specifically run on a VS solution file, but it can recurse through directories, and you can set up filename filters as you see fit.

Here's the sample output from their web page:


prompt> cloc perl-5.10.0.tar.gz
    4076 text files.
    3883 unique files.                                          
    1521 files ignored.

http://cloc.sourceforge.net v 1.07  T=10.0 s (251.0 files/s, 84566.5 lines/s)
-------------------------------------------------------------------------------
Language          files     blank   comment      code    scale   3rd gen. equiv
-------------------------------------------------------------------------------
Perl               2052    110356    112521    309778 x   4.00 =     1239112.00
C                   135     18718     22862    140483 x   0.77 =      108171.91
C/C++ Header        147      7650     12093     44042 x   1.00 =       44042.00
Bourne Shell        116      3402      5789     36882 x   3.81 =      140520.42
Lisp                  1       684      2242      7515 x   1.25 =        9393.75
make                  7       498       473      2044 x   2.50 =        5110.00
C++                  10       312       277      2000 x   1.51 =        3020.00
XML                  26       231         0      1972 x   1.90 =        3746.80
yacc                  2       128        97      1549 x   1.51 =        2338.99
YAML                  2         2         0       489 x   0.90 =         440.10
DOS Batch            11        85        50       322 x   0.63 =         202.86
HTML                  1        19         2        98 x   1.90 =         186.20
-------------------------------------------------------------------------------
SUM:               2510    142085    156406    547174 x   2.84 =     1556285.03
-------------------------------------------------------------------------------

The third generation equivalent scale is a rough estimate of how much code it would take in a third generation language. Not terribly useful, but interesting anyway.

share|improve this answer
Very nice. Thanks! – James McNellis May 1 '10 at 6:19
+1 Works perfectly :) – Sune Rievers Oct 1 '10 at 9:31
+1 for not reinventing the wheel and providing an portable solution. – JoeB Apr 16 at 15:38

In Visual Studio Team System 2008 you can do from the menu Analyze--> 'Calculate Code Metrics for Solution' and it will give you a line count of your entire solution (among other things g)

share|improve this answer
6  
Visual Studio Team System 2008 doesn't manage to count unmanaged code. ;) – Christian Feb 3 '10 at 14:29

For future readers I'd like to advise the DPack extension for Visual Studio 2010.

It's got a load of utilities built in including a line counter which says how many lines are blank, code, and etc.

share|improve this answer
1  
This should get more votes. – twerdster Jun 11 '12 at 23:32
+1 Really helpful extension! – Darxis Aug 29 '12 at 20:57

A simple solution is to search in all files. Type in "*" while using wildcards. Which would match all lines. At the end of the find results window you should see a line of the sort:

Matching lines: 563 Matching files: 17 Total files searched: 17

Of course this is not very good for large projects, since all lines are mached and loaded into memory to be dispayed at the find results window.

Reference:

share|improve this answer

I prefer OxyProject Metrics VS Addin.

share|improve this answer

Answers here are a little bit out of date, may be from vs 2008 time. Because in newer Visual Studio versions 2010/2012, this feature is already built-in. Thus there are no reason to use any extension or tools for it.

Feature to count lines of code - Calculate Metrics. With it you can calculate your metrics (LOC, Maintaince index, Cyclomatic index, Depth of inheritence) for each project or solution.

Just right click on solution or project in Solution Explorer,

enter image description here

and select "Calculate metrics"

enter image description here

Later data for analysis and aggregation could be imported to Excel. Also in Excel you can filter out generated classes, or other noise from your metrics. These metrics including Lines of code LOC could be gathered also during build process, and included in build report

share|improve this answer
1  
Visual Studio 2010 also have this metrics. Actually nothing new in VS2012 at all. – Mike Chaliy Nov 14 '12 at 11:03
Yep, but answers here are from time of vs 2008 and a little bit out of date, why use anything or install some extension when it's a built-in feature. And even it's not new feature many people do not know about it. – Regfor Nov 14 '12 at 11:42
@MikeChaliy May be second introduction sentence has confused you, so I've rewritten it a little bit to avoid such confusion. – Regfor Nov 14 '12 at 11:49
i have a n-layer solution but that display this error: "Exception has been thrown by the target of an invocation." why? – user197508 Nov 16 '12 at 18:38
@Regfor I disagree with your statement, "no reason to use any extension or tools for it.". If I, as I do, wish to count the lines of code in 500 solution files why would I want to open them individually in VS to view the lines of code. A stand alone tool would be much more efficient. – Michael Eakins Feb 20 at 19:49
show 2 more comments

Other simple tool For VS2008 (open source): http://www.accendo.sk/Download/SourceStat.zip

share|improve this answer

Use Menu-> Analyse - > Calculate Code Metrics option in Visual Studio 2010 Ultimate.

share|improve this answer

You could use:

share|improve this answer
LOX Metrics is very nice – Kovu Nov 4 '09 at 17:00

I came up with a quick and dirty powershell script for counting lines in a folder structure. It's not nearly as full featured as some of the other tools referenced in other answers, but I think it's good enough to provide a rough comparison of the size of code files relative to one another in a project or solution.

The script can be found here:

https://gist.github.com/1674457

share|improve this answer

Agree with Ali Parr. The WndTab Line Counter addin is a such tool. http://www.codeproject.com/KB/macros/linecount.aspx

It's also a good idea to search from download site to find some related tool. http://www.cnet.com/1770-5_1-0.html?query=code+counter&tag=srch

share|improve this answer

Try neptuner. It also gives you stuff like spaces, tabs, Lines of comments in addition to LoC. http://neptuner.googlecode.com/files/neptuner_0_30_windows.zip

share|improve this answer

You can use the Project Line Counter add-in in Visual Studio 2010. Normally it doesn't work with Visual Studio 2010, but it does with a helpful .reg file from here: http://www.onemanmmo.com/index.php?cmd=newsitem&comment=news.1.41.0

share|improve this answer

protected by Brad Larson Jul 31 '12 at 20:46

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.