21 lines
243 B
Batchfile
21 lines
243 B
Batchfile
|
|
@ECHO OFF
|
|
|
|
DEL *.sln /Q
|
|
DEL *.suo /Q /A:HA
|
|
DEL *.ncb /Q
|
|
DEL *.log /Q
|
|
del *.aps /s
|
|
del *.user /Q
|
|
del *.dat /Q
|
|
|
|
del BuildLog.htm /s
|
|
del build.log /s
|
|
RMDIR Debug /S /Q
|
|
RMDIR Release /S /Q
|
|
RMDIR Debug_X64 /S /Q
|
|
RMDIR Release_X64 /S /Q
|
|
|
|
|
|
@ECHO ON
|