[PM-28727] Upgrade to .NET 10#7171
Open
dereknance wants to merge 60 commits intomainfrom
Open
Conversation
- I accidentally had the updated Program locally and that was why tests were working for me locally
Contributor
|
New Issues (2)Checkmarx found the following issues in this Pull Request
|
BTreston
previously approved these changes
Apr 27, 2026
Contributor
BTreston
left a comment
There was a problem hiding this comment.
Looks good for AC owned files
prograhamming
previously approved these changes
Apr 28, 2026
dani-garcia
previously approved these changes
Apr 28, 2026
enmande
previously approved these changes
Apr 28, 2026
# Conflicts: # global.json
464511a
|
dani-garcia
approved these changes
Apr 29, 2026
enmande
approved these changes
Apr 29, 2026
amorask-bitwarden
approved these changes
Apr 29, 2026
BTreston
approved these changes
Apr 29, 2026
djsmith85
approved these changes
Apr 29, 2026
Contributor
djsmith85
left a comment
There was a problem hiding this comment.
Approving for platform
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.





🎟️ Tracking
PM-28727
📔 Objective
This PR upgrades from .NET 8 to 10.
I left most dependencies at their current versions so they can go through the usual Renovate process.
Notable Changes
Base64.IsValidenforces canonical padding.IHostBuilderstyle #6843WebHostBuilderis obsoleteX509Certificate2constructors are obsoleteNuGetAuditLeveldefaults tolowwith .NET 10, resulting in any dependency with a known vulnerability to block when runningdotnet restore. I elected to set it tocriticalto only block builds for vulns at that severity, and let the existing Renovate process take care of the rest. ❗ I can be convinced to disable this entirely.System.Text.Json8.0.5 pin removed because package pruning emits NU1510Microsoft.Extensions.Caching.Memory8.0.1 pin removed as Microsoft.Data.SqlClient requires >=9 and was resulting in a package downgradeMicrosoft.AspNetCore.HttpOverrides.IPNetworkandKnownNetworkshave been marked as obsoleteNullReferenceExceptionin.Trim()calls. Added null-conditional operators in property setters inGlobalSettings.csMessagePackfrom 2.x to 3.x. The wire format appears compatible for our use case