Reputation: 854
Under the "SDK Version" area of a MonoTouch project in MonoDevelop (Project Options -> Build -> iPhone Build -> General Tab) I currently have 3 options: "4.3", "5.0" and "Default". Is it true that "Default" will automatically use the SDK that has the highest version number? If not, what does it do?
For reference I'm using MonoTouch 5.0 and MonoDevelop 2.8.1.
Upvotes: 1
Views: 464
Reputation: 43553
The default is based on what's being returned from a native function call (it's not related to MonoTouch or MonoDevelop). That's likely not very helpful (and could even change, however unlikely).
If you want to know, specifically for your project, you add -v -v -v
to your additional touch arguments (in your Project's Options, iPhone Build) then you should see the command-line options that MonoDevelop gives to mtouch
. That will give your the resolved default into a (definitive) version number.
Upvotes: 1