Skip to content

Instantly share code, notes, and snippets.

@jsuarezruiz
Created December 21, 2017 20:31
Show Gist options
  • Save jsuarezruiz/8cea9486bd766aef0f7495eec7a9810d to your computer and use it in GitHub Desktop.
Save jsuarezruiz/8cea9486bd766aef0f7495eec7a9810d to your computer and use it in GitHub Desktop.
Clean Bin/Obj Folders
Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment