C# Class WixSharp.Bootstrapper.MsiPackage

Standard WiX MsiPackage.
Inheritance: Package
Afficher le fichier Open project: Eun/WixSharp Class Usage Examples

Méthodes publiques

Свойство Type Description
EnableFeatureSelection bool?
MsiProperties string

Méthodes publiques

Méthode Description
MsiPackage ( ) : System.Linq

Initializes a new instance of the MsiPackage class.

MsiPackage ( string path ) : System.Linq

Initializes a new instance of the MsiPackage class.

ToXml ( ) : System.Xml.Linq.XContainer[]

Emits WiX XML.

Method Details

MsiPackage() public méthode

Initializes a new instance of the MsiPackage class.
public MsiPackage ( ) : System.Linq
Résultat System.Linq

MsiPackage() public méthode

Initializes a new instance of the MsiPackage class.
public MsiPackage ( string path ) : System.Linq
path string The path.
Résultat System.Linq

ToXml() public méthode

Emits WiX XML.
public ToXml ( ) : System.Xml.Linq.XContainer[]
Résultat System.Xml.Linq.XContainer[]

Property Details

EnableFeatureSelection public_oe property

Specifies whether the bundle will allow individual control over the installation state of Features inside the msi package. Managing feature selection requires special care to ensure the install, modify, update and uninstall behavior of the package is always correct. The default is "no".
public bool? EnableFeatureSelection
Résultat bool?

MsiProperties public_oe property

MSI properties to be set based on the value of a burn engine expression. This is a KeyValue mapping expression of the following format:

<key>=<value>[;<key>=<value>]

Example: "COMMANDARGS=[CommandArgs];GLOBAL=yes""

public string MsiProperties
Résultat string