You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[main] Update dependencies from dotnet/arcade (#524)
* Update dependencies from https://github.com/dotnet/arcade build 20240725.3
Microsoft.DotNet.Arcade.Sdk
From Version 9.0.0-beta.24368.9 -> To Version 9.0.0-beta.24375.3
* Update dependencies from https://github.com/dotnet/arcade build 20240801.1
Microsoft.DotNet.Arcade.Sdk
From Version 9.0.0-beta.24368.9 -> To Version 9.0.0-beta.24401.1
* Update dependencies from https://github.com/dotnet/arcade build 20240808.2
Microsoft.DotNet.Arcade.Sdk
From Version 9.0.0-beta.24401.1 -> To Version 9.0.0-beta.24408.2
---------
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
if [ "$desired_version"!="-1" ];then majorVersion="$_major";break;fi
85
+
minVersion=8
86
+
maxVersion="$((maxVersion +1))"# +1 for headspace
87
+
i="$maxVersion"
88
+
while [ "$i"-ge$minVersion ];do
89
+
desired_version="$(check_version_exists "$i")"
90
+
if [ "$desired_version"!="-1" ];then majorVersion="$i";break;fi
91
+
i=$((i -1))
96
92
done
97
93
98
94
if [ -z"$majorVersion" ];then
99
95
if!command -v "$compiler"> /dev/null;then
100
-
echo"Error: No usable version of $compiler found."
96
+
echo"Error: No compatible version of $compilerwas found within the range of $minVersion to $maxVersion. Please upgrade your toolchain or specify the compiler explicitly using CLR_CC and CLR_CXX environment variables."
0 commit comments