11 lines
212 B
PowerShell
11 lines
212 B
PowerShell
function Remove($path) {
|
|
if (Test-Path $path) {
|
|
Remove-Item $path -Recurse -Force
|
|
} else {
|
|
Write-Host "Path don't exist: $path"
|
|
}
|
|
}
|
|
|
|
Remove("obj")
|
|
Remove(".vs")
|
|
Remove("*.csproj.user") |