Xamarin.iOS - MSBUILD does not generate IPA

I am setting up a build environment for an ios application. I use iMac as a build node with the Visual Studio 2013 community. When I create a solution from visual studio everything works fine and it generates an IPA. But when I try to do this from the msbuild project, it works fine, but does not create an IPA. however this gives me this warning:

(SayHello target) → C: \ Program Files (x86) \ MSBuild \ Xamarin \ iOS \ Xamarin.iOS.Windows.After.targets (54.5): warning: the object link is not installed on the object instance.

The command line that I use: msbuild "solution.sln" /t:build /p:Configuration=release

+4
source share
1 answer

Found the answer for this in here

1) ServerAddress 2) ServerUsernameExample

msbuild "solution.sln" /t:build /p:Configuration=release /p:ServerAddress=xx.xx.xx.xx:22 /p:ServerUser=userName

xx.xx.xx.xx - IP- Mac, "userName" Mac Build Host.

+1

All Articles