Reputation: 6581
I get the error after updating Xamarin in Visual Studio which I had to do after a git pull. I have also applied the Xamarin updates in Xamarin Studio on my Mac build host. (Xamarin Studio > Check for updates).
The iOS SDK version '9.2' is not installed, and no newer version was found.
Upvotes: 6
Views: 7954
Reputation: 752
You can also modify the SDK version of your iOS project from visual studio in order to support older SDKs where you cant update the XCode or SDKs.
Upvotes: 6
Reputation: 1570
You can manually edit .csproj file and replace <MtouchSdkVersion>9.2</MtouchSdkVersion>
with the version you actually have on your mac. This can be a solution when you use an old OS which does not offer updates for XCode.
Upvotes: 2
Reputation: 6581
XCode needed updating to get the latest SDK.
The App Store told me there were updates, and mentioned SDK 9.2 in the summary so I updated.
It appears the cause was a commit on the csproj that bumped the SDK.
Upvotes: 4