C# Класс WixSharp.Bootstrapper.MsiPackage

Standard WiX MsiPackage.
Наследование: Package
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
EnableFeatureSelection bool?
MsiProperties string

Открытые методы

Метод Описание
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.

Описание методов

MsiPackage() публичный Метод

Initializes a new instance of the MsiPackage class.
public MsiPackage ( ) : System.Linq
Результат System.Linq

MsiPackage() публичный Метод

Initializes a new instance of the MsiPackage class.
public MsiPackage ( string path ) : System.Linq
path string The path.
Результат System.Linq

ToXml() публичный Метод

Emits WiX XML.
public ToXml ( ) : System.Xml.Linq.XContainer[]
Результат System.Xml.Linq.XContainer[]

Описание свойств

EnableFeatureSelection публичное свойство

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
Результат bool?

MsiProperties публичное свойство

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
Результат string