Skip to content

Instantly share code, notes, and snippets.

@jonasbg
Created November 1, 2018 09:13
Show Gist options
  • Save jonasbg/536919c1af14de56e2783e36e7825c05 to your computer and use it in GitHub Desktop.
Save jonasbg/536919c1af14de56e2783e36e7825c05 to your computer and use it in GitHub Desktop.
Powershell - delete all Obj and Bin folders
Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }
@jonasbg
Copy link
Author

jonasbg commented Nov 1, 2018

The best way to completely clean up your visual studio solution

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment