Hamarin and Travis-chi

I have a simple hello world app that fails to build. I am getting the following output from the assembly.

Warnings:
/home/travis/build/chaione/csharptrav/csharp/csharp.iOS/csharp.iOS.csproj:  warning : Could not find project file /usr/lib/mono/xbuild/Xamarin/iOS/Xamarin.iOS.CSharp.targets, to import. Ignoring.
/home/travis/build/chaione/csharptrav/csharp/csharp.Droid/csharp.Droid.csproj:  warning : Could not find project file /usr/lib/mono/xbuild/Novell/Novell.MonoDroid.CSharp.targets, to import. Ignoring.

Errors: 
/home/travis/build/chaione/csharptrav/csharp/csharp.sln (default targets) ->
(Build target) ->
    /home/travis/build/chaione/csharptrav/csharp/csharp.iOS/csharp.iOS.csproj: error : /home/travis/build/chaione/csharptrav/csharp/csharp.iOS/csharp.iOS.csproj: /home/travis/build/chaione/csharptrav/csharp/csharp.iOS/csharp.iOS.csproj could not import "$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets"

      

What do I need to do to build this? The solution consists of 6 projects: Core PCL (profile 78), Android, iOS, Android UI test, IOS UI test, UnitTest (using NUnit).

+3


source to share


1 answer


I had a problem like this and went to https://www.appveyor.com/ . Here https://github.com/XLabs/Xamarin-Forms-Labs/blob/master/appveyor.yml you can find a link to appveyor.yml which plays the role of .travis.yml. Please note that you must have a Xamain license. The credentials are protected in the appveyor.yml file.



0


source







All Articles