-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.NET 8 preparation #1734
.NET 8 preparation #1734
Conversation
Add Visual Studio spell checker dictionary.
Put the mutation report into the artifacts directory.
Tidy up the docfx .gitignore files.
Fix typo
- Remove some redundant code analysis suppressions. - Resolve some new code analysis warnings from .NET 8 SDK. - Fix-up some whitespace. - Fix a minor typo.
Fix xunit warning about duplicated test cases by using a `Func<TimeSpan>` so we can use `Timeout.InfiniteTimeSpan` and `TimeSpan.FromMilliseconds(-1)` which are equal.
Avoid warnings from enabling trim analysis for unsupported TFMs when using the .NET 8 SDK.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1734 +/- ##
=======================================
Coverage 84.56% 84.56%
=======================================
Files 307 307
Lines 6790 6790
Branches 1043 1043
=======================================
Hits 5742 5742
Misses 839 839
Partials 209 209
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
Attempt to resolve mutant in the ResiliencePipeline constructor.
Use attributes instead of pragmas so the native AOT compiler can see them. Relates to App-vNext#1732.
@martintmk Can you help me resolve the mutant? I tried fixing it in 4723fdc but that just seemed to make it worse 😅 |
Allow for missing mutation to unblock the PR. Can cycle back to raise it back to 100 later when I work out how to appease the tool.
Fix Stryker configuration to properly allow for some slack.
Cherry-pick various changes from #1144 that do not need the .NET 8 SDK to actually be used yet.
Func<TimeSpan>
so we can useTimeout.InfiniteTimeSpan
andTimeSpan.FromMilliseconds(-1)
which are equal.