C# Class 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.

Inheritance: WixEntity
ファイルを表示 Open project: Eun/WixSharp

Public Properties

Property Type Description
IsAssembly bool

Public Methods

Method Description
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.

Method Details

Binary() public method

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

Binary() public method

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() public method

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.

Property Details

IsAssembly public_oe property

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