Created
July 8, 2024 16:41
-
-
Save idiotandrobot/eb28562e16ffddb3fbb7482554452331 to your computer and use it in GitHub Desktop.
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 Clean-Solution { | |
param ([string]$path) | |
Write-Host "Removing bin from: $path" | |
Get-ChildItem $path -include bin -recurse | Remove-Item | |
Write-Host "Removing obj from: $path" | |
Get-ChildItem $path -include obj -recurse | Remove-Item | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment