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

Inheritance: Binary
Show file Open project: Eun/WixSharp

Public Properties

Property Type Description
RefAssemblies string[]

Public Methods

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

Method Details

EmbeddedAssembly() public method

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

EmbeddedAssembly() public method

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

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.

Property Details

RefAssemblies public property

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