Hey,
According to the documentation here: https://developer.xamarin.com/guides/cross-platform/ci/jenkins_walkthrough/
I have to build for iPhone using xbuild like this:
xbuild /p:Configuration="Release" \ /p:Platform="iPhone" \ /p:IpaPackageDir="$HOME/Builds" \ /t:Build MyProject.sln
But, because my project also inlcude a WinPhone variant, I get this error:
App/App.WinPhone/OM_App.WinPhone.csproj: error : App/App.WinPhone/App.WinPhone.csproj: App/App.WinPhone/App.WinPhone.csproj could not import
Do I have to remove the WinPhone project from the solution? Can I somehow only build the iOS Project?
I tried specifying the iOS csproj file, but now success.
Thanks!