Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save IcodeNet/4161056 to your computer and use it in GitHub Desktop.
Save IcodeNet/4161056 to your computer and use it in GitHub Desktop.
Delete all the bin and obj folders in a solution 2012
Delete all the bin and obj folders in a solution 2012:
Right-click on the solution in Solution Explorer
Open Command Prompt
Run powershell
Paste and run :
Get-ChildItem -include bin,obj -recu -Force | remove-item -force -recurse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment