-
Notifications
You must be signed in to change notification settings - Fork 13
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
Upgrades to use .NET 8 RC1 #3681
Conversation
@@ -62,7 +62,7 @@ internal static partial class ProtocolLoggerExtensions | |||
remoteNetworkAddress); | |||
|
|||
// Multiple logging methods are using same event id. | |||
#pragma warning disable SYSLIB1006 | |||
#pragma warning disable SYSLIB1025 |
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.
The number was changed?
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.
Yes I get this new error with Visual Studio 2022 preview
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.
I think we should use 2 separate EventId here - for another PR!
We need to use a preview version because we are depending on RC packages otherwise installing the NuGet packages will fail.
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.
Looks good.
@@ -62,7 +62,7 @@ internal static partial class ProtocolLoggerExtensions | |||
remoteNetworkAddress); | |||
|
|||
// Multiple logging methods are using same event id. | |||
#pragma warning disable SYSLIB1006 | |||
#pragma warning disable SYSLIB1025 |
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.
I think we should use 2 separate EventId here - for another PR!
Fix #3678