-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Set severity of rule CA1870 to warning #92135
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
Conversation
Tagging subscribers to this area: @dotnet/area-meta Issue DetailsFollowup after dotnet/roslyn-analyzers#6898, #91727
|
@MichalStrehovsky I'm seeing odd Segmentation fault failures in |
If you click through the test results, you'll find a link to how to download the crash dump for this (it's We're crashing on a stack overflow, the repeating part is:
This by itself doesn't make much sense. The way we got into the repeating part is:
The problem is that this PR is introducing use of reflection into the implementation of reflection. That doesn't lead to anything good. |
Thanks! |
Followup after dotnet/roslyn-analyzers#6898, #91727