Skip to content

Instantly share code, notes, and snippets.

@mhinze
Last active December 23, 2015 19:59
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 mhinze/6686766 to your computer and use it in GitHub Desktop.
Save mhinze/6686766 to your computer and use it in GitHub Desktop.
Delete-BinObj.ps1
function global:Delete-BinObj()
{
$path = join-path $solutionScriptsContainer '..' -resolve
Get-ChildItem $path -include bin,obj -recurse -Force | remove-item -force -recurse
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment