Reputation: 647
After I installed Xamarin Studio v5.10 (build 871) on my Mac (OS X Yosemite v10.10.5), I can't find the Xamarin.iOS Build Host
, even when using Spotlight. I want to pair Visual Studio with my Mac development machine. I found an answer on the Xamarin forums:
I was having the same issue on my Mac and was able to resolve the issue by deleting the following directories/folders and reinstalling.
/Applications/Xamarin Studio.app /Developer/MonoTouch /Developer/MonoAndroid /Library/Frameworks/Mono.framework /Library/Frameworks/Xamarin.Mac.framework /Library/Frameworks/Xamarin.Android.framework
Hope this helps.
Thx, Leland
I performed these steps and have uninstalled Xamarin on the Mac and then reinstalled, but this hasn't helped. What can the problem be and how can I solve it?
Upvotes: 1
Views: 5695
Reputation: 33983
The Xamarin.iOS Build host has evolved into the Build Agent.
You now don't have to start a separate application to be able to connect to your Mac and compile your iOS apps.
Here's how to do it;
Remote Login
and tick the Remote Login box on the left side.
Select which users or user groups can connect.From now own it should connect automagically. Just wait for the screen in the Visual Studio toolbar icon to turn green.
For more info check the Xamarin documentation. Also when you're connecting this way for the first time on an existing Xamarin project be sure to do a clean and rebuild to avoid errors.
Upvotes: 2
Reputation: 74094
OS-X Build Host
has become OS-X Build Agent
:
Overview
The Xamarin Mac Agent provides a way for Visual Studio developers writing Xamarin.iOS apps to connect to a Mac effortlessly to control the building, deployment, and running of apps. Visual Studio connects to the Mac over SSH, which provides several benefits, including:
Ref: http://developer.xamarin.com/guides/ios/getting_started/installation/windows/xamarin-mac-agent/
Upvotes: 4