Context
else if is a thing in powershell but only since about 3 months ago...which means that if you just updated powershell, the PR is unnecessary. This just means you don't have to be on the very latest version for it to work.

Testing
I used it
This commit is contained in:
Forgind 2022-05-06 06:10:57 -07:00 коммит произвёл GitHub
Родитель 72ac0c2fc8
Коммит c7a17fc9b3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -60,8 +60,10 @@ if ($runtime -eq "Detect") {
Write-Host "Detected path that does not look like an sdk. Writing .NET Framework assemblies."
}
}
else if ($runtime -eq "Full") {
$runtime = "Desktop"
else {
if ($runtime -eq "Full") {
$runtime = "Desktop"
}
}
if ($runtime -eq "Desktop") {