mirror of
https://github.com/ckaczor/WixBalExtensionExt.git
synced 2026-01-19 17:25:59 -05:00
Initial commit
This commit is contained in:
40
wixext/data/tables.xml
Normal file
40
wixext/data/tables.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<copyright file="tables.xml" company="Outercurve Foundation">
|
||||
Copyright (c) 2004, Outercurve Foundation.
|
||||
This software is released under Microsoft Reciprocal License (MS-RL).
|
||||
The license and further copyright text can be found in the file
|
||||
LICENSE.TXT at the root directory of the distribution.
|
||||
</copyright>
|
||||
-->
|
||||
<!--
|
||||
The table definitions for the Windows Installer XML Toolset Bal Extension.
|
||||
-->
|
||||
<tableDefinitions xmlns="http://schemas.microsoft.com/wix/2006/tables">
|
||||
<tableDefinition name="WixBalCondition" bootstrapperApplicationData="yes">
|
||||
<columnDefinition name="Condition" type="string" length="255" primaryKey="yes" localizable="yes"
|
||||
category="condition" description="Expression which must evaluate to TRUE in order for install to commence."/>
|
||||
<columnDefinition name="Message" type="localized" length="255" escapeIdtCharacters="yes"
|
||||
category="formatted" description="Localizable text to display when condition fails and install must abort."/>
|
||||
</tableDefinition>
|
||||
|
||||
<tableDefinition name="WixExtbaOptions" bootstrapperApplicationData="yes">
|
||||
<columnDefinition name="SuppressOptionsUI" type="number" length="2" nullable="yes"
|
||||
maxValue="1" description="If 1, don't show Options button during install."/>
|
||||
<columnDefinition name="SuppressDowngradeFailure" type="number" length="2" nullable="yes"
|
||||
maxValue="1" description="If 1, attempts to downgrade are treated as a successful no-op."/>
|
||||
<columnDefinition name="SuppressRepair" type="number" length="2" nullable="yes"
|
||||
maxValue="1" description="If 1, don't show Repair button during maintenance."/>
|
||||
<columnDefinition name="ShowVersion" type="number" length="2" nullable="yes"
|
||||
maxValue="1" description="If 1, show the version number on the UI."/>
|
||||
<columnDefinition name="LaunchPassive" type="number" length="2" nullable="yes"
|
||||
maxValue="1" description="If 1, execute LaunchTarget automatically during passive install."/>
|
||||
<columnDefinition name="LaunchQuiet" type="number" length="2" nullable="yes"
|
||||
maxValue="1" description="If 1, execute LaunchTarget automatically during quiet install."/>
|
||||
</tableDefinition>
|
||||
|
||||
<tableDefinition name="WixStdbaOverridableVariable" bootstrapperApplicationData="yes">
|
||||
<columnDefinition name="Name" type="string" length="255" primaryKey="yes"
|
||||
category="identifier" description="Variable name user can override."/>
|
||||
</tableDefinition>
|
||||
</tableDefinitions>
|
||||
Reference in New Issue
Block a user