-
-
Notifications
You must be signed in to change notification settings - Fork 213
Add Tooltip for MSBuild Properties in Preprocess View. #875
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
Add Tooltip for MSBuild Properties in Preprocess View. #875
Conversation
| .Replace(@"$({0})=""{1}"" (", @"\$\((?<Name>\w+)\)="".*"" \(") | ||
| .Replace(@"{2}"")", @".*""\)") | ||
| .Replace(@"$({0})=""{1}"" (", @"\$\((?<Name>\w+)\)=""(?<NewValue>.*)"" \(") | ||
| .Replace(@"{2}"")", @"(?<OrgValue>.*)""\)") |
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.
did you mean OldValue instead of OrgValue?
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.
Org == Original, but Old is a better match for the 3 letter New.
| } | ||
|
|
||
| // Search the "Property reassignment" folder. | ||
| var prFolder = this.PreprocessContext.Evaluation.Children.FirstOrDefault(p => p.Title == "Property reassignment"); |
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.
You can use the Strings.PropertyReassignment I think
Address feedbacks from #875
Add Tooltip for MSBuild Properties in Preprocess View.