aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/tables.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/tables.xml')
-rw-r--r--src/wixext/tables.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/wixext/tables.xml b/src/wixext/tables.xml
new file mode 100644
index 00000000..18abf1d7
--- /dev/null
+++ b/src/wixext/tables.xml
@@ -0,0 +1,41 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3
4
5<tableDefinitions xmlns="http://wixtoolset.org/schemas/v4/wi/tables">
6 <tableDefinition name="WixBalBAFunctions" bootstrapperApplicationData="yes">
7 <columnDefinition name="PayloadId" type="string" length="0" nullable="yes" category="identifier" primaryKey="yes"
8 keyTable="WixPayloadProperties" keyColumn="1" description="Reference to a payload entry in the WixPayloadProperties table." />
9 </tableDefinition>
10 <tableDefinition name="WixBalCondition" bootstrapperApplicationData="yes">
11 <columnDefinition name="Condition" type="string" length="255" primaryKey="yes" localizable="yes"
12 category="condition" description="Expression which must evaluate to TRUE in order for install to commence." />
13 <columnDefinition name="Message" type="localized" length="255" escapeIdtCharacters="yes"
14 category="formatted" description="Localizable text to display when condition fails and install must abort." />
15 </tableDefinition>
16
17 <tableDefinition name="WixMbaPrereqInformation" bootstrapperApplicationData="yes">
18 <columnDefinition name="PackageId" type="string" length="72" primaryKey="yes"
19 category="identifier" description="PackageId for the Prereq BA to conditionally install." />
20 <columnDefinition name="LicenseFile" type="string" length="0" category="formatted" />
21 <columnDefinition name="LicenseUrl" type="string" length="0" category="formatted" />
22 </tableDefinition>
23
24 <tableDefinition name="WixStdbaOptions" bootstrapperApplicationData="yes">
25 <columnDefinition name="SuppressOptionsUI" type="number" length="2" nullable="yes"
26 maxValue="1" description="If 1, don't show Options button during install." />
27 <columnDefinition name="SuppressDowngradeFailure" type="number" length="2" nullable="yes"
28 maxValue="1" description="If 1, attempts to downgrade are treated as a successful no-op." />
29 <columnDefinition name="SuppressRepair" type="number" length="2" nullable="yes"
30 maxValue="1" description="If 1, don't show Repair button during maintenance." />
31 <columnDefinition name="ShowVersion" type="number" length="2" nullable="yes"
32 maxValue="1" description="If 1, show the version number on the UI." />
33 <columnDefinition name="SupportCacheOnly" type="number" length="2" nullable="yes"
34 maxValue="1" description="If 1, the bundle can be pre-cached using the /cache command line argument."/>
35 </tableDefinition>
36
37 <tableDefinition name="WixStdbaOverridableVariable" bootstrapperApplicationData="yes">
38 <columnDefinition name="Name" type="string" length="255" primaryKey="yes"
39 category="identifier" description="Variable name user can override." />
40 </tableDefinition>
41</tableDefinitions>