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
Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk
From Version 9.0.0-beta.24368.9 -> To Version 9.0.0-beta.24375.3
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