2

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?

Iain Smith
  • 9,230
  • 4
  • 50
  • 61

1 Answers1

1

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

Iain Smith
  • 9,230
  • 4
  • 50
  • 61