Files
netch/clean.ps1
2021-06-15 21:44:03 +08:00

16 lines
265 B
PowerShell

function Delete {
param([string]$Path)
if (Test-Path $Path) {
Remove-Item -Recurse -Force $Path | Out-Null
}
}
Delete ".vs"
Delete "Netch\bin"
Delete "Netch\obj"
Delete "Tests\bin"
Delete "Tests\obj"
Delete "TestResults"
exit 0