C# 클래스 WixSharp.Bootstrapper.MsiPackage

Standard WiX MsiPackage.
상속: Package
파일 보기 프로젝트 열기: Eun/WixSharp 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
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