user8862022
user8862022

Reputation:

Jenkins setup for Xamarin Forms app on MacOSX

I am trying to setup a Jenkins job for Xamarin.Forms app. I have added the MSBuild plugin to my Jenkins configuration and am trying to configure the MSBuild location.

I tried to add this Path:/Library/Frameworks/Mono.framework/Commands/xbuild to MSBuild location but the Jenkins dashboard is showing this warning:

enter image description here

What is the exact path for the MSBuild? how can I fix this warning?

Upvotes: 2

Views: 130

Answers (1)

Iain Smith
Iain Smith

Reputation: 9703

msbuild and xbuild are located here /Library/Frameworks/Mono.Framework/Commands on a Mac.

I was running Jenkins on a Mac and did this:

  • Path to MSBuild:/Library/Frameworks/Mono.Framework/Commands
  • Name: msbuild (don't think this part matters, it is just the name you can call it anything you want.)

like so: enter image description here

Upvotes: 1

Related Questions