Created
March 2, 2015 20:38
-
-
Save jonathanpeppers/1aa7f661c8be15970ece to your computer and use it in GitHub Desktop.
Xamarin.iOS FAKE example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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