FastlaneProvider.

Pilot(Action<FastlanePilotConfiguration>) Method

Summary

Executes fastlane pilot with the specified configuration action.
Assembly
Cake.Fastlane.dll
Namespace
Cake.Fastlane
Containing Type
FastlaneProvider

Syntax

public void Pilot(Action<FastlanePilotConfiguration> configurator)

Examples

Fastlane.Pilot(config =>
   {
       config.AppIdentifier = "com.fastlane.cake";
       config.Distribute = true;
       config.WaitProcessingInterval = 45;
   });

Attributes

Type Description
CakeAliasCategoryAttribute

Parameters

Name Type Description
configurator Action<FastlanePilotConfiguration> The fastlane pilot configuration action.

Return Value

Type Description
void