-
Notifications
You must be signed in to change notification settings - Fork 27
Fix StyleCop Issues - Document Parameters #25
Fix StyleCop Issues - Document Parameters #25
Conversation
@mark-monteiro still a draft? |
No, was just waiting for the previous PR to get merged so this didn't get reviewed/merged out-of order |
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.
Finally found the time :)
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
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 can be made one line
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.
How would you do that? I tried this but then the project wouldn't load:
<PropertyGroup Condition=" '$(Configuration)' == 'Release' " TreatWarningsAsErrors="true"/>
error : The attribute "TreatWarningsAsErrors" in element is unrecognized.
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.
<TreatWarningsAsErrors Condition=" '$(Configuration)' == 'Release' ">true</TreatWarningsAsErrors>
And put it in the PropertyGroup
above
This builds on PR #23 and should not be reviewed/merged until that one has been merged