C# Class WixSharp.Bootstrapper.ManagedBootstrapperApplication

Class for defining a Wix# application for WiX standard Burn-based bootstrapper.

It is nothing else but a light container for the WiX metadata associated with the .NET assembly implementing WiX ManagedBootstrapper application.

Inheritance: WixStandardBootstrapperApplication
Datei anzeigen Open project: Eun/WixSharp

Public Properties

Property Type Description
AppAssembly string

Public Methods

Method Description
AutoGenerateSources ( string outDir ) : void

Automatically generates required sources files for building the Bootstrapper. It is used to automatically generate the files which, can be generated automatically without user involvement (e.g. BootstrapperCore.config).

ManagedBootstrapperApplication ( string appAssembly ) : System

Initializes a new instance of the ManagedBootstrapperApplication class.

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

Emits WiX XML.

Method Details

AutoGenerateSources() public method

Automatically generates required sources files for building the Bootstrapper. It is used to automatically generate the files which, can be generated automatically without user involvement (e.g. BootstrapperCore.config).
public AutoGenerateSources ( string outDir ) : void
outDir string The output directory.
return void

ManagedBootstrapperApplication() public method

Initializes a new instance of the ManagedBootstrapperApplication class.
public ManagedBootstrapperApplication ( string appAssembly ) : System
appAssembly string The application assembly.
return System

ToXml() public method

Emits WiX XML.
public ToXml ( ) : System.Xml.Linq.XContainer[]
return System.Xml.Linq.XContainer[]

Property Details

AppAssembly public_oe property

The assembly implementing Bootstrapper UI application
public string AppAssembly
return string