Advertisement
Guest User

Untitled

a guest
May 6th, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. @echo off
  2. echo A cleaning script for .NET MSBuild compiled folders - Jason Chalom 2015
  3. echo This will delete all bin and obj folders
  4. echo Beware!!
  5. echo
  6. echo First MSBUILD CLEAN will be activated.
  7. echo Will use the location for VS 2013 MS Build Tools 32 bit X86
  8. pause
  9. "C:\Program Files (x86)\MSBuild\12.0\Bin\msbuild.exe" /t:clean
  10. echo not implemented yet
  11. echo This will remove all bin and obj folders found
  12. pause
  13. for /d /r . %%d in (bin,obj) do @if exist "%%d" rd /s/q "%%d"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement