C# 클래스 WixSharp.Merge

Defines MergeModule to be embedded into MSI.

Note that WiX syntax allows Merge element to belong to the Product element. However the documentation (WiX v3.0.4917.0) explicitly requires it to be nested inside of the Directory element (even if there is no neither technical nor logical reason for this). Thus Wix# simply follows the WiX convention.

상속: WixEntity
파일 보기 프로젝트 열기: Eun/WixSharp

공개 프로퍼티들

프로퍼티 타입 설명
Feature Feature
FileCompression bool
SourceFile string

공개 메소드들

메소드 설명
Merge ( ) : System

Initializes a new instance of the Merge class.

Merge ( Feature feature, string sourceFile ) : System

Creates instance of the class with properties initialized with specified parameters.

Merge ( string sourceFile ) : System

Creates instance of the class with properties initialized with specified parameters.

메소드 상세

Merge() 공개 메소드

Initializes a new instance of the Merge class.
public Merge ( ) : System
리턴 System

Merge() 공개 메소드

Creates instance of the class with properties initialized with specified parameters.
public Merge ( Feature feature, string sourceFile ) : System
feature Feature the msm should be included in.
sourceFile string Relative path to the msm file to be taken for building the MSI.
리턴 System

Merge() 공개 메소드

Creates instance of the class with properties initialized with specified parameters.
public Merge ( string sourceFile ) : System
sourceFile string Relative path to the msm file to be taken for building the MSI.
리턴 System

프로퍼티 상세

Feature 공개적으로 프로퍼티

the merge module belongs to.
public Feature,WixSharp Feature
리턴 Feature

FileCompression 공개적으로 프로퍼티

Specifies if the files in the merge module should be compressed.
public bool FileCompression
리턴 bool

SourceFile 공개적으로 프로퍼티

Path to the merge module file.
public string SourceFile
리턴 string