mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
20 lines
364 B
PowerShell
20 lines
364 B
PowerShell
Set-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
|
|
|
|
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"
|
|
|
|
.\Other\clean.ps1
|
|
exit $lastExitCode
|