-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Fix mono/osx build and tests #758
Conversation
Commit 8f27bba broke the mono build as a result of changed field/property names, which were being compiled only for `FEATURE_WIN32_REGISTRY`.
... generated app.config file. This caused test failures with mono/osx as it was running with `15.0` but the app.config had entries for `14.1` .
@@ -581,12 +581,12 @@ public void ExtensionPathsTest_Basic1() | |||
#if XPLAT |
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.
(discussion, doesn't need to be done now)
Should we remove this condition? It seems . . . imprecise, and I vaguely recall that it was mostly to reduce code churn caused by porting a feature that originated in xplat to master.
(I'm working on it!)
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.
Oh, you had to add the XPLAT
define in this review. Then I think it should be removed entirely. If I'm reading the code right that shouldn't require any code change--it was just there to wall off the platform-detection methods that don't exist in master yet.
Thanks! Looks good once we just get rid of the |
... constant that is unnecessary now. "it was just there to wall off the platform-detection methods that don't exist in master yet." - Rainer
Removed |
Awesome. Looks good to me. @Microsoft/msbuild-maintainers ? |
LGTM |
No description provided.