Skip to content
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

CA1862 false-positive on .NET Framework 4.8 #7053

Closed
avivanoff opened this issue Nov 24, 2023 · 0 comments · Fixed by #7083
Closed

CA1862 false-positive on .NET Framework 4.8 #7053

avivanoff opened this issue Nov 24, 2023 · 0 comments · Fixed by #7083

Comments

@avivanoff
Copy link

avivanoff commented Nov 24, 2023

Analyzer

Diagnostic ID: CA1862: Use the 'StringComparison' method overloads to perform case-insensitive string comparisons

Analyzer source

SDK: Built-in CA analyzers in .NET 8 SDK or later

Version: SDK 8.0.100

Describe the bug

Steps To Reproduce

  1. Create SDK-style project that targets .NET Framework 4.8 and enable NET Analyzers.
  2. Make sure CA1862 is enabled.
  3. Add code similar to someString.ToUpperInvariant().Contains("ABC").
  4. Build the project.

Expected behavior

CA1862 should not fire.

Actual behavior

CA1862 is triggered.

Additional context

String.Contains overload that takes StringComparison does not exist in .NET Framework 4.8.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant