We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ba8f77 commit 4f5a4daCopy full SHA for 4f5a4da
clean.bat
@@ -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