Skip to content

Instantly share code, notes, and snippets.

@emersonsoares
Created December 19, 2016 17:54
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 emersonsoares/2c51636ccaa56d3080d66259c4f6b6e8 to your computer and use it in GitHub Desktop.
Save emersonsoares/2c51636ccaa56d3080d66259c4f6b6e8 to your computer and use it in GitHub Desktop.
Delete all bin and obj folders from Solution directory
Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { Remove-Item $_.fullname -Force -Recurse -Verbose } -Verbose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment