This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.VSforMac.
Summary
Creates an IPA archive of an iOS Appof an app with MDTool
Change your project settings to output an IPA file, and use the MSBuild to build.
See documentation for more info: https://developer.xamarin.com/guides/ios/deployment,_testing,_and_metrics/app_distribution/ipa_support/#Building_via_the_Command_Line_On_Mac
Syntax
public static FilePath BuildiOSIpa(this ICakeContext context, FilePath projectFile, string configuration = "Release", string platform = "iPhone", Action<MSBuildSettings> settings = null)
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
projectFile |
FilePath |
The .CSPROJ file to build from. |
configuration |
string |
The MSBuild /p:Configuration to use (default is Release). |
platform |
string |
The MSBuild /p:Platform to build with configuration to use (default is iPhone). |
settings |
Action<MSBuildSettings> |
The MSBuild settings. |
Return Value
Type |
Description |
FilePath |
|