Reputation: 1360
I want to set a continuous integration environment on my raspberry in order to build and deploy Xamarin.Android and other .Net projects.
I installed Jenkins on my raspbian. I installed Mono on my server following this example.
I'm able to run a xbuild
command :
I installed the MSBUILD plugin on Jenkins.
I face trouble trying to configure Jenkins with MSBUILD command.
In the system configuration, I have the following snapshot :
I do not know what is the path to MSBUILD I have to set. I do not know how to get it from my server. I'm sure the mono instalation worked fine because I can use MSBUILD in command line. How can I retrieve this information ?
On Windows it would be this path : C:\Windows\Microsoft.Net\Framework\{version}\MSBuild.exe
On Mac it would be something like that : /Library/Frameworks/Mono.framework/Commands/xbuild
Upvotes: 0
Views: 4187
Reputation: 1360
I found the path following this article
/usr/lib/mono/4.5/xbuild.exe
Upvotes: 1