We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39ea45b commit 19b14f6Copy full SHA for 19b14f6
Xamarin.MacDev/MonoTouchSdk.cs
@@ -302,6 +302,17 @@ static string GetPlatformKey (PlatformName platform)
302
}
303
304
305
+ public Version RecommendedXcodeVersion {
306
+ get {
307
+ PString version;
308
+
309
+ if (!versions.TryGetValue ("RecommendedXcodeVersion", out version))
310
+ return new Version (8, 0);
311
312
+ return System.Version.Parse (version.Value);
313
+ }
314
315
316
public IList<IPhoneSdkVersion> GetKnownSdkVersions (PlatformName platform)
317
{
318
var list = new List<IPhoneSdkVersion> ();
0 commit comments