-
Notifications
You must be signed in to change notification settings - Fork 33
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
Address compiler warnings #113
Conversation
f08a33b
to
c60ff55
Compare
<IsPackable>false</IsPackable> | ||
<IsTestProject>true</IsTestProject> | ||
<NoWarn>EF1001,CS8602,CS8618</NoWarn> | ||
</PropertyGroup> |
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.
Does it makes sense to migrate those settings (or a subset) to tests/Directory.Build.props
?
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 don't think it's worth it yet. There won't likely be more test projects or any new stuff any time soon.
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.
So we have Directory.Build.props
already, seems like a natural place for such settings.
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
<IsPackable>false</IsPackable> | ||
<IsTestProject>true</IsTestProject> | ||
<NoWarn>EF1001,CS8602,CS8618</NoWarn> | ||
</PropertyGroup> |
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.
So we have Directory.Build.props
already, seems like a natural place for such settings.
Mostly just around null annotations but also a few unused properties etc.
Solution now compiles 100% clean with Roslyn, no warnings.