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
The build always fails with ThisAssembly requires MSBuild 16.8+ or .NET SDK 5.0+..
This seems to be because the comparison of MSBuild short version (i.e. 16.8 vs 16.10) is
not done numerically, but as a string, resulting in 16.10 being smaller than 16.8. This
didn't surface before because 16.9 is lexicographically greater than 16.8, but now that's
no longer the case.
The text was updated successfully, but these errors were encountered:
The build always fails with
ThisAssembly requires MSBuild 16.8+ or .NET SDK 5.0+.
.This seems to be because the comparison of MSBuild short version (i.e. 16.8 vs 16.10) is
not done numerically, but as a string, resulting in 16.10 being smaller than 16.8. This
didn't surface before because 16.9 is lexicographically greater than 16.8, but now that's
no longer the case.
The text was updated successfully, but these errors were encountered: