Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AvgustPol/00e5389c202bca8c811c8229645bccc0 to your computer and use it in GitHub Desktop.
Save AvgustPol/00e5389c202bca8c811c8229645bccc0 to your computer and use it in GitHub Desktop.
[ .NET CORE ] Remove all cached obj, bin folders
Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }
@AvgustPol
Copy link
Author

P.s. I'm not claiming myself as the author of this script

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