Count the number of lines in your project with one line of Powershell
December 11th, 2009
Comments Off
ls * -recurse -include *.aspx, *.ascx, *.cs, *.ps1 | Get-Content | Measure-Object -Line
Just replace the file extensions with the ones you use in your project.

