Skip to content

Instantly share code, notes, and snippets.

@cybermaxs
Last active August 29, 2015 14:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cybermaxs/dd732e196bf904134c7f to your computer and use it in GitHub Desktop.
Save cybermaxs/dd732e196bf904134c7f to your computer and use it in GitHub Desktop.
Clean up your .net solutions folders with powershell. Delete bin, obj, packages and TestResults
Write-Host "Deleting bin, obj, packages,TestResults folders ..." -nonewline
Get-ChildItem -inc bin,obj,TestResults,packages -rec | Remove-Item -rec -force
Write-Host "Done" -ForegroundColor Yellow
@cybermaxs
Copy link
Author

PS > .\cleanup.ps1

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