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
Показать файл Открыть проект

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

Свойство Тип Описание
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