-
Notifications
You must be signed in to change notification settings - Fork 5k
Replace NET6_0 with NET #115209
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 NET6_0 with NET #115209
Conversation
@@ -23,7 +23,7 @@ public IpcSocket(AddressFamily addressFamily, SocketType socketType, ProtocolTyp | |||
} | |||
|
|||
// .NET 6 implements this method directly on Socket, but for earlier runtimes we need a polyfill | |||
#if !NET6_0_OR_GREATER | |||
#if !NET |
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.
@ViktorHofer it was outdated because project is netcoreapp3.1
Line 4 in 6ee6d40
<TargetFrameworks>netstandard2.0;netcoreapp3.1</TargetFrameworks> |
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.
This looks like shared among multiple repos given the GitHubRepositoryName
condition.
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.
diagnostics and runtime. diagnostics also uses netstandard2 and current sdk for projects. netcoreapp3.1 has been out of support for years
.../FunctionalTests/Android/Device_Emulator/gRPC/grpc-dotnet/testassets/Shared/InteropClient.cs
Show resolved
Hide resolved
Tagging subscribers to this area: @dotnet/runtime-infrastructure |
Yeah, diagnostics owns it. If you'd like this change to be out there, it needs to go in the diagnostics repo. That being said, this change is correct and benign. |
I looked at the diagnostics code and it already diverged a bit from this (uses NET8) but I agree this is harmless to take here. |
/ba-g Build analysis got stuck |
@akoeplinger there is one more project using ancient tfm #115373 |
No description provided.