-
Notifications
You must be signed in to change notification settings - Fork 447
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
Ignore IDE0044 for vstest #18100
Ignore IDE0044 for vstest #18100
Conversation
Co-authored-by: Sam Harwell <sam@tunnelvisionlabs.com>
@@ -6,6 +6,9 @@ | |||
<BuildCommandArgs>$(BuildCommandArgs) /p:SemanticVersioningV1=true</BuildCommandArgs> | |||
<BuildCommand>$(ProjectDirectory)\eng\common\build$(ShellExtension) $(BuildCommandArgs)</BuildCommand> | |||
<DeterministicBuildOptOut>true</DeterministicBuildOptOut> | |||
|
|||
<!-- https://github.com/dotnet/source-build/issues/3814 --> | |||
<NoWarn>$(NoWarn),IDE0044</NoWarn> |
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.
Curious, where is that NoWarn setting respected when building the repo?
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.
Viktor brings up a good point that I overlooked. The NoWarn infra was removed with #17712.
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.
Yep, I just saw that myself. Confirmed that the build is not fixed by this. My bad. I will create a patch to address the code fixes. They are pretty simple.
Fixes dotnet/source-build#3814