-
-
Notifications
You must be signed in to change notification settings - Fork 263
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
RCS1077 for OrderBy(x => x) #1492
Comments
This seems like a beginner-friendly task and I'm interested in contributing. I'll see about doing this this weekend if that's ok. |
@BenjaminBrienen You are more than welcome to do so! Please see this file where you can a reference to the analyzer and cod fix provider:
Also, following file can be useful even though you are not adding new analyzer: https://josefpihrt.github.io/docs/roslynator/how-to-add-new-analyzer |
Analysis is working, working on code fix |
Apparently Order() only exists new newer versions of .NET. The code fix works though! |
I found something that I could use |
RCS1077 should recommend replacing
.OrderBy(x => x)
with.Order()
.The text was updated successfully, but these errors were encountered: