-
Notifications
You must be signed in to change notification settings - Fork 482
Remove rulesets #6367
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
Remove rulesets #6367
Changes from 5 commits
db4f25a
e9723f8
9880540
53e89f9
cc6bd76
0386078
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -51,7 +51,8 @@ protected override void InitializeWorker(CompilationStartAnalysisContext context | |
|
|
||
| private static bool IsToLowerOrToUpper(string methodName) | ||
| { | ||
| return methodName == ToLowerMethodName || methodName == ToUpperMethodName; | ||
| // TODO: Compare symbols instead of method name. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. File a tracking issue?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I got a PR for it already #6382 |
||
| return methodName is ToLowerMethodName or ToUpperMethodName; | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,7 @@ | |
| <PropertyGroup> | ||
| <TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks> | ||
| <NonShipping>true</NonShipping> | ||
| <IsShipping>false</IsShipping> | ||
|
Comment on lines
5
to
+6
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where are we using
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| <ExcludeFromSourceBuild>true</ExcludeFromSourceBuild> | ||
| </PropertyGroup> | ||
| <ItemGroup> | ||
|
|
@@ -32,4 +33,4 @@ | |
| </ItemGroup> | ||
| <Import Project="..\Utilities\Compiler\Analyzer.Utilities.projitems" Label="Shared" /> | ||
| <Import Project="..\Utilities\Workspaces\Workspaces.Utilities.projitems" Label="Shared" /> | ||
| </Project> | ||
| </Project> | ||
Uh oh!
There was an error while loading. Please reload this page.