fix: use latestPatch in global.json to avoid MSBuild version conflict

latestFeature picks up SDK 10.0.201 on CI runners, which requires
MSBuild 18.0. The MSIX build step uses VS MSBuild 17.14.x, causing
build failures. latestPatch keeps us in 10.0.1xx where MSBuild 17.x
is compatible.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Scott Hanselman 2026-03-31 14:14:36 -07:00
parent c6b0289a3e
commit aa4ea5794b

View File

@ -1,6 +1,6 @@
{
"sdk": {
"version": "10.0.102",
"rollForward": "latestFeature"
"rollForward": "latestPatch"
}
}