Skip to content

Instantly share code, notes, and snippets.

@elusive
Created January 19, 2021 15:43
Show Gist options
  • Save elusive/cf02b88c8278ae48c620ca589e6650a6 to your computer and use it in GitHub Desktop.
Save elusive/cf02b88c8278ae48c620ca589e6650a6 to your computer and use it in GitHub Desktop.
Cleanup Dotnet Project
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