setup-dotnet/__tests__/clear-installed-dotnet.ps1

27 lines
707 B
PowerShell
Raw Normal View History

2021-02-03 12:13:32 +00:00
$os = $args[0]
2021-02-03 12:31:11 +00:00
$linuxDotnetPaths = @("/usr/share/dotnet", "$env:HOME/.dotnet")
$macOSDotnetPaths = @("$env:HOME/.dotnet")
$windowsDotnetPaths = @("$env:LocalAppData\Microsoft\dotnet/*",
"$env:ProgramFiles\dotnet/*",
"$env:HOME\.dotnet")
2021-02-03 12:13:32 +00:00
$pathsToClear = @()
2021-02-03 12:17:48 +00:00
if ($os -eq "Linux") {
2021-02-03 12:13:32 +00:00
$pathsToClear = $linuxDotnetPaths
2021-02-03 12:15:56 +00:00
} elseif ($os -eq "macOS") {
2021-02-03 12:13:32 +00:00
$pathsToClear = $macOSDotnetPaths
2021-02-03 12:17:48 +00:00
} elseif ($os -eq "Windows") {
2021-02-03 12:31:11 +00:00
Write-Host $env:LocalAppData
2021-02-03 12:13:32 +00:00
$pathsToClear = $windowsDotnetPaths
}
foreach ($path in $pathsToClear) {
if (Test-Path $path) {
2021-02-03 12:20:22 +00:00
Write-Host "Clear $path path"
2021-02-03 12:13:32 +00:00
Remove-Item $path -Recurse -Force
}
}
2021-02-03 11:56:08 +00:00
dotnet --info