FastlaneProvider.

Match(Action<FastlaneMatchConfiguration>) Method

Summary

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

Syntax

public void Match(Action<FastlaneMatchConfiguration> configurator)

Examples

Fastlane.Match(config =>
{
    config.CertificateType = CertificateType.Development;
    config.AppIdentifier = "com.fastlane.cake";
    config.ForceForNewDevices = true;
});

Attributes

Type Description
CakeAliasCategoryAttribute

Parameters

Name Type Description
configurator Action<FastlaneMatchConfiguration> The fastlane match configuration action.

Return Value

Type Description
void