Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix UsingTask order for VS 17.12 (#647)
As per https://learn.microsoft.com/en-us/visualstudio/msbuild/usingtask-element-msbuild?view=vs-2022: > Unlike properties and items, the first `UsingTask` element that applies to a > `TaskName` will be used; to override tasks you must define a new `UsingTask` > before the existing one, or specify `Override="true"` in the new `UsingTask`. Therefore when using Visual Studio 17.12 .NET 8 was picked instead of .NET 9, as the task/condition for .NET 8 also matched and came first. This was broken in a69773a, before that, the conditions had upper bounds.
- Loading branch information