Version: Unity 6 (6000.0)
LanguageEnglish
  • C#

PBXCapabilityType Constructor

Declaration

public PBXCapabilityType(bool requiresEntitlements, string framework, bool optionalFramework);

Parameters

Description
requiresEntitlements This capability requires an entitlements file therefore we need to add this entitlements file to the code signing entitlement.
framework The frameworks to be added to the project for this capability. If set to null, no frameworks are added.
optionalFramework Set as true to indicate the described frameworks as optional for this capability. The frameworks will only be added to the PBXProject when forced.

Description

This object represents what a capability changes in the PBXProject file.


Declaration

public PBXCapabilityType(bool requiresEntitlements, string[] frameworks, bool optionalFrameworks);

Parameters

Description
requiresEntitlements This capability requires an entitlements file therefore we need to add this entitlements file to the code signing entitlement.
frameworks The frameworks to be added to the project for this capability. If set to null, no frameworks are added.
optionalFrameworks Set as true to indicate the described frameworks as optional for this capability. The frameworks will only be added to the PBXProject when forced.

Description

This object represents what a capability changes in the PBXProject file.