design improvement

This commit is contained in:
Frank Skare
2019-10-15 19:01:56 +02:00
parent cfca7786f3
commit 9bbde49a5c
3 changed files with 34 additions and 33 deletions

11
Clean.ps1 Normal file
View File

@@ -0,0 +1,11 @@
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")