Created
December 19, 2016 17:54
-
-
Save emersonsoares/2c51636ccaa56d3080d66259c4f6b6e8 to your computer and use it in GitHub Desktop.
Delete all bin and obj folders from Solution directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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