Skip to content

Instantly share code, notes, and snippets.

@bbenetskyy
Created December 5, 2021 20:01
Show Gist options
  • Save bbenetskyy/1d8c55925dd83a5c56bde1273e00e848 to your computer and use it in GitHub Desktop.
Save bbenetskyy/1d8c55925dd83a5c56bde1273e00e848 to your computer and use it in GitHub Desktop.
var settings = new XBuildSettings()
.WithProperty("SolutionDir", new string[] { SOLUTION_DIR })
.WithProperty("OutputPath", new string[] { IOS_ARTIFACTS })
//to test on simulators use "iPhoneSimulator" to test on real devices use "iPhone"
.SetConfiguration("iPhoneSimulator")
.SetVerbosity(Verbosity.Quiet)
.WithTarget("Build");
XBuild(IOS, settings);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment