C# 클래스 WixSharp.Binary

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

You can use this class to embed any file (e.g. exe, dll, image) 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.

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

공개 프로퍼티들

프로퍼티 타입 설명
IsAssembly bool

공개 메소드들

메소드 설명
Binary ( )

Initializes a new instance of the Binary class.

Binary ( Id id, string sourcePath )

Initializes a new instance of the Binary class.

Binary ( string sourcePath )

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

메소드 상세

Binary() 공개 메소드

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

Binary() 공개 메소드

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

Binary() 공개 메소드

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

프로퍼티 상세

IsAssembly 공개적으로 프로퍼티

The flag that indicates if the binary file is a .NET assembly.
public bool IsAssembly
리턴 bool