Skip to content

Instantly share code, notes, and snippets.

@jonathanpeppers
Created March 2, 2015 20:38
Show Gist options
  • Save jonathanpeppers/1aa7f661c8be15970ece to your computer and use it in GitHub Desktop.
Save jonathanpeppers/1aa7f661c8be15970ece to your computer and use it in GitHub Desktop.
Xamarin.iOS FAKE example
open Fake.XamarinHelper
//Our variables such as project, solution, etc.
Target "ios" (fun () ->
iOSBuild (fun defaults ->
{defaults with
ProjectPath = solution
Configuration = "Ad-Hoc|iPhone"
Target = "Build"
})
TeamCityHelper.PublishArtifact (project + "/bin/iPhone/Ad-Hoc/*.ipa")
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment