Skip to content

Instantly share code, notes, and snippets.

@sgaulding
Last active March 15, 2017 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sgaulding/aa11a9618843b9ebbc83 to your computer and use it in GitHub Desktop.
Save sgaulding/aa11a9618843b9ebbc83 to your computer and use it in GitHub Desktop.
Clean up Visual Studio directories
Get-ChildItem -inc bin,obj -rec | Remove-Item -rec -force
Get-ChildItem -inc bin,obj -rec | ? { $_.PsIsContainer -and $_.FullName -notmatch 'node_modules' } | ? { Remove-Item $_.FullName -rec -force }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment