Skip to content

Instantly share code, notes, and snippets.

@oli-g-sk
Last active April 7, 2021 19:05
Show Gist options
  • Save oli-g-sk/ae9e42829975089ab0c162ab098ef04d to your computer and use it in GitHub Desktop.
Save oli-g-sk/ae9e42829975089ab0c162ab098ef04d to your computer and use it in GitHub Desktop.
PowerShell script to delete .NET 'bin' and 'obj' folders
Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment