-
Notifications
You must be signed in to change notification settings - Fork 396
Add ruleset as input to fast up to date #2464
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,11 @@ | |
<SuppressOutOfDateMessageOnBuild Condition="'$(SuppressOutOfDateMessageOnBuild)' == ''">true</SuppressOutOfDateMessageOnBuild> | ||
</PropertyGroup> | ||
|
||
<!-- If the project we're compiling has a ruleset, make sure we check it for up-to-date checks. --> | ||
<ItemGroup Condition="'$(CodeAnalysisRuleSet)' != ''"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Make sure to verify that this doesn't do anything wonky in the old PS (the designtime targets are imported by non-SDK projects as well). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It doesn't look like the old PS took rulesets into account for fast up to date, so this will add it there, too. I'll check to make sure it doesn't change anything, but I assume it's OK to extend the old PS as well? |
||
<UpToDateCheckInput Include="$(CodeAnalysisRuleSet)" /> | ||
</ItemGroup> | ||
|
||
<!-- | ||
Locate the approriate localized xaml resources based on the language ID or name. | ||
|
||
|
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.
whitespace