mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
16 lines
265 B
PowerShell
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
|