Skip to content

Instantly share code, notes, and snippets.

@superwills
Created October 23, 2021 21:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save superwills/1f05ac24eb18d031b0a995320a302832 to your computer and use it in GitHub Desktop.
Save superwills/1f05ac24eb18d031b0a995320a302832 to your computer and use it in GitHub Desktop.
Visual Studio 2019 cleanup script
REM put this in the ROOT of your Visual Studio 2019 project folder.
rd .vs /s /q
rd Debug /s /q
rd Release /s /q
rd x64 /s /q
REM OpenGL is the name of your project
rd OpenGL\Debug /s /q
rd OpenGL\Release /s /q
rd OpenGL\x64 /s /q
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment