C# Class Monobjc.Tools.External.CodeSign

Wrapper class around the codesign command line tool.
Exibir arquivo Open project: Monobjc/monobjc-tools

Private Properties

Property Type Description

Public Methods

Method Description
PerformSigning ( String target, String identity, String entitlements, TextWriter outputWriter = null, TextWriter errorWriter = null ) : void

Sign the target with the following identity.

PerformSigning ( String bundle, String identity, TextWriter outputWriter = null, TextWriter errorWriter = null ) : void

Sign the target with the following identity.

Method Details

PerformSigning() public static method

Sign the target with the following identity.
public static PerformSigning ( String target, String identity, String entitlements, TextWriter outputWriter = null, TextWriter errorWriter = null ) : void
target String The path to the target.
identity String The signing identity.
entitlements String
outputWriter System.IO.TextWriter
errorWriter System.IO.TextWriter
return void

PerformSigning() public static method

Sign the target with the following identity.
public static PerformSigning ( String bundle, String identity, TextWriter outputWriter = null, TextWriter errorWriter = null ) : void
bundle String The path to the application bundle.
identity String The signing identity.
outputWriter System.IO.TextWriter
errorWriter System.IO.TextWriter
return void