Skip to content

Commit 4f5a4da

Browse files
committed
.
1 parent 0ba8f77 commit 4f5a4da

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

clean.bat

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
@echo on
2+
echo Delete visual studio intermediate files
3+
echo Begin deleting...
4+
for /r . %%c in (.) do @if exist "%%c\Debug" rd /S /Q "%%c\Debug"
5+
for /r . %%c in (.) do @if exist "%%c\Release" rd /S /Q "%%c\Release"
6+
for /r . %%c in (.) do @if exist "%%c\x64" rd /S /Q "%%c\x64"
7+
for /r . %%c in (.) do @if exist "%%c\GeneratedFiles" rd /S /Q "%%c\GeneratedFiles"
8+
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"
9+
del /q /A:H *.suo
10+
rmdir /s /q .\ipch
11+
echo End deleting...
12+
pause

0 commit comments

Comments
 (0)