FastlaneProvider.

Pem(FastlanePemConfiguration) Method

Summary

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

Syntax

public void Pem(FastlanePemConfiguration pemConfiguration)

Examples

          var configuration = new FastlanePemConfiguration
          {
              Development = true,
              ActiveDaysLimit = 45
          };

          Fastlane.Pem(configuration);

Attributes

Type Description
CakeAliasCategoryAttribute

Parameters

Name Type Description
pemConfiguration FastlanePemConfiguration The fastlane pem configuration.

Return Value

Type Description
void