FastlaneProvider.

Match(FastlaneMatchConfiguration) Method

Summary

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

Syntax

public void Match(FastlaneMatchConfiguration matchConfiguration = null)

Examples

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

          Fastlane.Match(configuration);

Attributes

Type Description
CakeAliasCategoryAttribute

Parameters

Name Type Description
matchConfiguration FastlaneMatchConfiguration The fastlane match configuration.

Return Value

Type Description
void