FastlaneProvider.

Pem(Action<FastlanePemConfiguration>) Method

Summary

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

Syntax

public void Pem(Action<FastlanePemConfiguration> configurator)

Examples

Fastlane.Pem(config =>
   {
       config.Development = true;
       config.ActiveDaysLimit = 45;
   });

Attributes

Type Description
CakeAliasCategoryAttribute

Parameters

Name Type Description
configurator Action<FastlanePemConfiguration> The fastlane pem configuration action.

Return Value

Type Description
void