Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
MingMingCheng committed Jul 29, 2014
1 parent 0ba8f77 commit 4f5a4da
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions clean.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@echo on
echo Delete visual studio intermediate files
echo Begin deleting...
for /r . %%c in (.) do @if exist "%%c\Debug" rd /S /Q "%%c\Debug"
for /r . %%c in (.) do @if exist "%%c\Release" rd /S /Q "%%c\Release"
for /r . %%c in (.) do @if exist "%%c\x64" rd /S /Q "%%c\x64"
for /r . %%c in (.) do @if exist "%%c\GeneratedFiles" rd /S /Q "%%c\GeneratedFiles"
for /r . %%c in (*.bsc *.aps *.clw *.ncb *.plg *.positions *.WW *.user *.sdf *.opensdf *Log.txt *.aux *.bbl *.blg *.brf *.log *.synctex) do del "%%c"
del /q /A:H *.suo
rmdir /s /q .\ipch
echo End deleting...
pause

0 comments on commit 4f5a4da

Please sign in to comment.