Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- rem enter project directory
- d:
- cd\
- cd "YOUR PROJECT FOLDER HERE"
- rem remove .vs, Binaries, DerivedDataCache, Intermediate, Saved, , VS Solution file
- rmdir /s /q .vs
- rmdir /s /q Binaries
- rmdir /s /q DerivedDataCache
- rmdir /s /q Intermediate
- rmdir /s /q Saved
- del *.sln
- rem enter plugin directory and remove Binaries and Intermediate
- cd "YOUR PROJECT FOLDER HERE"\Plugins\"YOUR PLUGIN FOLDER HERE"
- rmdir /s /q Binaries
- rmdir /s /q Intermediate
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement