Release Overview
Microsoft shipped the .NET 9.0.2 SDK (version 9.0.200) in February 2026. This is a servicing update within the .NET 9 feature band — it includes security fixes, performance improvements, and bug fixes with no breaking changes from the 9.0.100 band.
Key Highlights
Security Patches
- Includes security fixes for ASP.NET Core and .NET Runtime (see official release notes for CVE details)
Performance Improvements
- JIT compiler improvements for ARM64 and x64 workloads
- Reduced middleware pipeline overhead in ASP.NET Core Minimal APIs
- Garbage collector tuning for large object heap compaction
Bug Fixes
JsonSerializerimprovements forrequiredproperty handlingHttpClientconnection pooling stability fixes in containerized environments- EF Core query translation fixes for edge-case LINQ expressions
How to Upgrade
Update your global.json:
{
"sdk": {
"version": "9.0.200",
"rollForward": "latestFeature"
}
}
Or install directly:
dotnet --list-sdks
# Verify 9.0.200 is available after installation
Migration Notes
No breaking changes. Existing .NET 9 applications should work without modification. Run your test suite to verify:
dotnet test --configuration Release
Next Steps
The next .NET 9 servicing update (9.0.3) is expected in March 2026. The .NET 10 Preview 1 is already available for early testing.