I currently try to setup my app using V3.
Works actually fine for WP8 and Android. But I'm strugeling over iOS.
As described in the new tutorial I've added the following references to my Core-Project:
- Cirrious.CrossCore.dll
- Cirrious.MvvmCross.dll
When I open my solution on my mac (got a solution which only includes the iOS and the Core project) Xamarin Studio starts to complain, that it can not find the System.Windows.Input stuff which is needed for the ICommand.
Currently it does not find ICommand/IList/MvxRealyCommand in the code... :S
So the question: Which dll's I've to reference ein the core project to make it work in Xamarin Studio?
edit: Ok, I've to add the following references to my Core-Project:
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Net" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ServiceModel" />
<Reference Include="System.Windows" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Xml.Serialization" />
</ItemGroup>
Not sure whether I need all of them, just copy pasted them from the Conference-Example. I've to do some more researches on this :S