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.Fastlane.
Summary
Executes fastlane match with the specified configuration action.
- Assembly
- Cake
.Fastlane .dll - Namespace
- Cake
.Fastlane - Containing Type
- Fastlane
Match Provider
Syntax
public void Match(Action<FastlaneMatchConfiguration> action)
Examples
Fastlane.Match(config =>
{
config.CertificateType = CertificateType.Development;
config.AppIdentifier = "com.fastlane.cake";
config.ForceForNewDevices = true;
});
Parameters
Name | Type | Description |
---|---|---|
action | Action |
The action. |
Return Value
Type | Description |
---|---|
void |