FastlaneProvider.

Deliver(FastlaneDeliverConfiguration) Method

Summary

Delivers the specified deliver configuration.
Assembly
Cake.Fastlane.dll
Namespace
Cake.Fastlane
Containing Type
FastlaneProvider

Syntax

public void Deliver(FastlaneDeliverConfiguration deliverConfiguration = null)

Examples

         var configuration = new FastlaneDeliverConfiguration
         {
             CertificateType = CertificateType.Development,
             AppIdentifier = "com.fastlane.cake",
             ForceForNewDevices = true
         };

         Fastlane.Deliver(configuration);

Attributes

Type Description
CakeAliasCategoryAttribute

Parameters

Name Type Description
deliverConfiguration FastlaneDeliverConfiguration The fastlane deliver configuration.

Return Value

Type Description
void