Skip to content

Instantly share code, notes, and snippets.

@d1820
d1820 / CleanBinObj.ps1
Last active November 1, 2023 19:10 — forked from xtrmstep/cleanup-objbin.ps1
PowerShell command to delete all \bin and \obj folders. Use as a VS2022 External Tool
Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { Write-Host "Removing $($_.fullname)"; remove-item $_.fullname -Force -Recurse }; Write-Host "Complete"