Add missing SDK dependency to global.json (#9886)

Contributes to: https://github.com/dotnet/source-build/issues/3170

Backport of changes in https://github.com/dotnet/installer/pull/18478

### Description

Each .NET repo needs to specify all used SDKs in `global.json` file.
This change adds the missing SDK.
This commit is contained in:
Nikola Milosavljevic 2024-02-01 16:33:13 -08:00 коммит произвёл GitHub
Родитель 82446d74e2 15c54a30c5
Коммит 2f51e1d1a9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 3 добавлений и 2 удалений

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

@ -21,6 +21,7 @@
"rollForward": "latestPatch"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24075.5"
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24075.5",
"Microsoft.Build.NoTargets": "2.0.1"
}
}

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

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.Build.NoTargets/2.0.1">
<Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>