Skip to content

Instantly share code, notes, and snippets.

@nikomartn
Created June 5, 2021 17:25
Show Gist options
  • Save nikomartn/f37a7cbab414895ef401d92056969bb5 to your computer and use it in GitHub Desktop.
Save nikomartn/f37a7cbab414895ef401d92056969bb5 to your computer and use it in GitHub Desktop.
Clean-DotNetProject remove *\bin and *\obj from your heavy projects!
Get-ChildItem -Recurse -Directory | Where-Object {$_.Name -eq "obj" -or $_.Name -eq "bin"} | Remove-Item -Recurse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment