Has anyone successfully created Xamarin.Forms with gitlab-ci?

I am working on a pet project using Xamarin.Forms and I am wondering if anyone has experience setting up gitlab-ci.yml. It seems that there is limited customization material for the .NET assembly as a whole, trying good luck in creating one of them before combining both assemblies. Tried for each .csproj project for the build path.

Any insight and experience will be appreciated.

Current .gitlab-ci.yml

image: mono variables: Solution: Solution.sln stages: - build - test - deploy before_script: - nuget restore $Solution build: stage: build script: - MONO_IOMAP=case xbuild /p:Configuration="Release" /p:Platform="iPhone" /t:Build $Solution 
+12
xamarin xamarin.forms gitlab-ci
source share
1 answer

not yet, unfortunately, you will need a Windows machine, prerequisites:

  • Windows
    • Yeah! The .NET Framework only works on Windows, so the computer you are going to use must use Windows.
  • Geet
    • Do you think we need to install Git? Well, this is a joke, obviously we need git on how we are going to use GitLab!
  • Msbuild
    • To be able to create and publish our application, we need to install MSBuild.

You can get more information here about building on .Net, on which the new Xamarin form depends.

0
source share

All Articles