C# 클래스 WixSharp.EmbeddedAssembly

Defines assembly file to be embedded into MSI (Binary table).

You can use this class to embed any .NET assembly to be used during the installation. Note that none of the binary files are installed on the target system. They are just available at installation time for using CustomActions.

상속: Binary
파일 보기 프로젝트 열기: Eun/WixSharp

공개 프로퍼티들

프로퍼티 타입 설명
RefAssemblies string[]

공개 메소드들

메소드 설명
EmbeddedAssembly ( )

Initializes a new instance of the EmbeddedAssembly class.

EmbeddedAssembly ( Id id, string sourcePath )

Initializes a new instance of the EmbeddedAssembly class.

EmbeddedAssembly ( string sourcePath )

Initializes a new instance of the EmbeddedAssembly class with properties initialized with specified parameters.

메소드 상세

EmbeddedAssembly() 공개 메소드

Initializes a new instance of the EmbeddedAssembly class.
public EmbeddedAssembly ( )

EmbeddedAssembly() 공개 메소드

Initializes a new instance of the EmbeddedAssembly class.
public EmbeddedAssembly ( Id id, string sourcePath )
id Id The explicit to be associated with instance.
sourcePath string Relative path to the assembly file to be taken for building the MSI.

EmbeddedAssembly() 공개 메소드

Initializes a new instance of the EmbeddedAssembly class with properties initialized with specified parameters.
public EmbeddedAssembly ( string sourcePath )
sourcePath string Relative path to the assembly file to be taken for building the MSI.

프로퍼티 상세

RefAssemblies 공개적으로 프로퍼티

The referenced assemblies the EmbeddedAssembly depends on.
public string[] RefAssemblies
리턴 string[]