-
Notifications
You must be signed in to change notification settings - Fork 27
[Xamarin.MacDev] Add an AppleSdkVersion struct which replaces IPhoneSdkVersion and MacOSXSdkVersion. #87
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
Conversation
…dkVersion and MacOSXSdkVersion. This reduces code duplication and makes it possible to simplify logic in a few places.
spouliot
left a comment
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.
comments are not related to the renaming itself
| AppleSdkVersion.V10_11, | ||
| AppleSdkVersion.V10_12, | ||
| AppleSdkVersion.V10_13, | ||
| AppleSdkVersion.V10_14, |
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.
not sure who use the API but should include 10.15, 11.[0-3] ?
Also not so clear about the new minor version of 11.x
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 believe VSMac are using these.
I didn't want to remove any that VSMac might be using (nor add any VSMac isn't using).
| AppleSdkVersion.V9_2, | ||
| AppleSdkVersion.V9_3, | ||
| AppleSdkVersion.V10_0, | ||
| AppleSdkVersion.V10_1 |
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.
same comment, that seems incomplete
who's using this ?
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.
Same: VSMac.
| AppleSdkVersion.V10_9, | ||
| AppleSdkVersion.V10_10, | ||
| AppleSdkVersion.V10_11, | ||
| AppleSdkVersion.V10_12 |
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.
more missing versions
should not it be identical to the previous one ?
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.
Same.
This reduces code duplication and makes it possible to simplify logic in a few places.