You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add .NET 10 support to test project and fix CI workflow
Root cause: Test project only targeted net8/9 while main library targets net8/9/10.
This meant NET10-specific code paths were never tested, causing coverage gaps.
Changes:
- Add net10.0 to test project TargetFrameworks
- Add Microsoft.AspNetCore.Mvc.Testing 10.0.0 package for net10
- Disable Microsoft Testing Platform (xunit compatibility issue with .NET 10)
- Update CI to collect coverage from both net9 (fallback) and net10 (native)
- Merge coverage reports to get complete picture of both code paths
0 commit comments