Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions global.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
// We currently require the .NET 10 SDK to build and test the project.
//
// GOTCHA: Our CI infrastructure for Windows uses VS 2022 which comes with MSBuild 17.x. The
// .NET 10 SDK versions in the 10.0.2xx series require MSBuild 18.x, so we specify the most
// recent 10.0.1xx series release which is compatible with MSBuild 17.x.
// .NET 10 SDK versions in the 10.0.2xx series require MSBuild 18.x, so we stick with the
// 10.0.1xx feature band which is compatible with MSBuild 17.x.
//
"version": "10.0.107",
"version": "10.0.100",

// We cannot allow any roll forward due to the above MSBuild compatibility issues.
"rollForward": "disable",
// Allow roll-forward within the 10.0.1xx feature band so servicing patches
// are picked up automatically without requiring a PR for each bump.
"rollForward": "patch",
Comment thread
paulmedynski marked this conversation as resolved.

// Do not allow pre-release versions.
//
Expand Down
Loading