1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
@echo off
rem MS Visual Studio specific ---
if exist *.opensdf del *.opensdf
if exist *.sdf del *.sdf
pushd Example
if exist Debug rmdir Debug /Q /S
if exist Release rmdir Release /Q /S
if exist Win32 rmdir Win32 /Q /S
if exist x64 rmdir x64 /Q /S
if exist *.ncb del *.ncb
if exist *.user del *.user
if exist *.suo del *.suo /AH
popd
pushd Library
if exist Debug rmdir Debug /Q /S
if exist Release rmdir Release /Q /S
if exist Win32 rmdir Win32 /Q /S
if exist x64 rmdir x64 /Q /S
if exist *.ncb del *.ncb
if exist *.user del *.user
if exist *.suo del *.suo /AH
popd
|