Skip to content

Commit 31399e1

Browse files
committed
fix: change SDK rollForward to latestPatch for lock file compatibility
latestFeature allowed rolling from 10.0.103 to 10.0.201 on CI runners, causing Microsoft.NET.ILLink.Tasks version mismatch with lock files. latestPatch keeps the SDK within the same feature band (10.0.1xx), ensuring lock file consistency across local and CI environments. Made-with: Cursor
1 parent f9c82ce commit 31399e1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
33
"version": "10.0.103",
4-
"rollForward": "latestFeature"
4+
"rollForward": "latestPatch"
55
}
66
}

src/Dotnet.CI.Template.Sample/packages.lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
},
1111
"Microsoft.NET.ILLink.Tasks": {
1212
"type": "Direct",
13-
"requested": "[10.0.4, )",
14-
"resolved": "10.0.4",
15-
"contentHash": "CCx8ojW3mOL150/LnP0DK7qpMrJEt6xxNCmJFKoX89v1h0FwpsEHqennowGPYDxp6zIkIO4f9PxynjOeLF+1zw=="
13+
"requested": "[10.0.3, )",
14+
"resolved": "10.0.3",
15+
"contentHash": "0B6nZyCHWXnvmlB559oduOspVdNOnpNXPjhpWVMovLPAsDVG7A4jJR9rzECf67JUzxP8/ee/wA8clwIzJcWNFA=="
1616
}
1717
}
1818
}

0 commit comments

Comments
 (0)