add/edit paths where we look for dotnet sdk. (#2957)

* add/edit paths where we look for dotnet sdk.

* using the only one default dotnet sdk path for linux
This commit is contained in:
Deep Choudhery 2024-10-29 20:46:38 -07:00 коммит произвёл GitHub
Родитель 1504b571cd
Коммит 0ca514bf23
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 6 добавлений и 5 удалений

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

@ -74,15 +74,16 @@ internal class MsBuildInitializer
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
sdkBasePath = @"/usr/local/share/dotnet/x64/sdk";
//check for the ARM sdk first
sdkBasePath = @"/usr/local/share/dotnet/sdk";
if (!Directory.Exists(sdkBasePath))
{
sdkBasePath = @"/usr/local/share/dotnet/x64";
}
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
sdkBasePath = @"/usr/share/dotnet/sdk";
if (!Directory.Exists(sdkBasePath))
{
sdkBasePath = @"/usr/local/share/dotnet/sdk";
}
}
return sdkBasePath;