-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Replace NETCOREAPP compiler directive with NET #101693
Conversation
Consistently use the `NET` preprocessor directive instead of a mix of both `NETCOREAPP` and `NET`.
Note regarding the
|
Tagging subscribers to this area: @dotnet/area-meta |
src/tools/illink/src/ILLink.RoslynAnalyzer/NullableAttributes.cs
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM based on cursory review. I would be great if you can search for and fix outliers like the ones @sbomer pointed out.
* Replace NETCOREAPP compiler directive with NET Consistently use the `NET` preprocessor directive instead of a mix of both `NETCOREAPP` and `NET`. * Remaining NETCOREAPP usages * Update TestCaseCompilationMetadataProvider.cs * Update TestCaseCompilationMetadataProvider.cs
* Replace NETCOREAPP compiler directive with NET Consistently use the `NET` preprocessor directive instead of a mix of both `NETCOREAPP` and `NET`. * Remaining NETCOREAPP usages * Update TestCaseCompilationMetadataProvider.cs * Update TestCaseCompilationMetadataProvider.cs
Follow-up on 2616119
Consistently use the
NET
preprocessor directiveinstead of a mix of both
NETCOREAPP
andNET
.@jkotas this is a straight search&replace of
NETCOREAPP
->NET
and!NETCOREAPP
->!NET
. Do we want to take this change? The benefit is just consistency without any kind of enforcement so I'm fine with taking or closing this change.