Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
Updates centrally-managed NuGet dependency versions in Directory.Packages.props to newer releases across core build/analyzer/test tooling and framework-specific package sets.
Changes:
- Bumped several build/test tooling packages (e.g., Immediate.Handlers, Scriban, Verify.XunitV3, code coverage, Meziantou analyzers/polyfill, SourceLink).
- Updated
Microsoft.CodeAnalysis.Analyzersversion. - Updated framework-conditional
Microsoft.Extensions.*package versions for net8/net9/net10.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| <PackageVersion Include="Immediate.Handlers" Version="3.4.0" /> | ||
| <PackageVersion Include="Microsoft.Bcl.HashCode" Version="6.0.0" /> | ||
| <PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="4.14.0" /> | ||
| <PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="5.3.0" /> |
There was a problem hiding this comment.
Microsoft.CodeAnalysis.Analyzers was bumped to 5.3.0 while the Roslyn packages (Microsoft.CodeAnalysis.*) remain pinned at 4.8.0. The analyzers package generally tracks the Roslyn major/minor line, and this mismatch can cause analyzer load failures or missing-API issues during build. Consider keeping Microsoft.CodeAnalysis.Analyzers on a 4.x version compatible with Roslyn 4.8.0, or upgrading the Microsoft.CodeAnalysis.* packages as a set to the matching 5.3.0 line.
| <PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="5.3.0" /> | |
| <PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="4.11.0" /> |
No description provided.