Last active
December 23, 2015 19:59
-
-
Save mhinze/6686766 to your computer and use it in GitHub Desktop.
Delete-BinObj.ps1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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