count.bat 288 B

123456789
  1. @rem Use this to count the number of lines of code in Paint.NET
  2. @rem First number in the last row is the number of lines of code.
  3. @rem This counts all our .cs, .c, .cpp, .h files
  4. pushd ..
  5. dir /b /s /a-d *.cs *.c *.cpp *.h > _list.txt
  6. src\BuildTools\wc @_list.txt
  7. del _list.txt
  8. popd
  9. pause