Skip to content

Commit

Permalink
chore(build): add dotnot 9 to prerequisite check (#32158)
Browse files Browse the repository at this point in the history
### Issue # (if applicable)

Closes #32282.

### Reason for this change
.NET 9 is now out: https://devblogs.microsoft.com/dotnet/announcing-dotnet-9
  • Loading branch information
msambol authored Nov 30, 2024
1 parent 81cde0e commit 6931632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check-build-prerequisites.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ app_min="6.0.100"
check_which $app $app_min
app_v=$(${app} --list-sdks)
echo -e "Checking dotnet version... \c"
if [ $(echo $app_v | grep -c -E "[678]\.[0-9]+\.[0-9]+") -eq 1 ]
if [ $(echo $app_v | grep -c -E "[6789]\.[0-9]+\.[0-9]+") -eq 1 ]
then
echo "Ok"
else
Expand Down

0 comments on commit 6931632

Please sign in to comment.