mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
22 lines
307 B
PowerShell
22 lines
307 B
PowerShell
if (Test-Path Netch\bin)
|
|
{
|
|
Remove-Item -Recurse -Force Netch\bin
|
|
}
|
|
|
|
if (Test-Path Netch\obj)
|
|
{
|
|
Remove-Item -Recurse -Force Netch\obj
|
|
}
|
|
|
|
if (Test-Path NetchLib\bin)
|
|
{
|
|
Remove-Item -Recurse -Force NetchLib\bin
|
|
}
|
|
|
|
if (Test-Path NetchLib\obj)
|
|
{
|
|
Remove-Item -Recurse -Force NetchLib\obj
|
|
}
|
|
|
|
exit 0
|