Open
Description
arcade defaults to want to use the dotnet that is on PATH if it matches the global.json SDK version:
Line 54 in 3fe889b
but that doesn't work when the global.json files has a tools.runtimes
section:
Lines 131 to 138 in 3fe889b
This is the case for aspnetcore: https://github.com/dotnet/aspnetcore/blob/480683e067ec01616eef758f8b0a4f968bf9fbee/global.json#L7C6-L7C14.
Could we extend this condition so that when DotNetBuildFromSource
is set to true
that the sdk on path does get used?
Does that make sense?