20 lines
340 B
Batchfile

@ECHO OFF
echo --------------------------
echo CleanUp GeneralInfo
echo --------------------------
echo remove debug
rmdir /s /q debug
echo rmdir /s /q release
rmdir /s /q release
echo GeneralInfo.vcxproj*.user
del /q GeneralInfo.vcxproj*.user
DEL *.sln /Q
DEL *.suo /Q /A:HA
DEL *.ncb /Q
DEL *.log /Q
DEL *.scc /Q
DEL *.dat /Q
@ECHO ON