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.xml38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/wixext/tables.xml b/src/wixext/tables.xml
new file mode 100644
index 00000000..03c9f267
--- /dev/null
+++ b/src/wixext/tables.xml
@@ -0,0 +1,38 @@
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="WixDependencyProvider" createSymbols="yes">
7 <columnDefinition name="WixDependencyProvider" type="string" length="72" primaryKey="yes" modularize="column"
8 category="identifier" description="The non-localized primary key for the table."/>
9 <columnDefinition name="Component_" type="string" length="72" keyTable="Component" keyColumn="1" modularize="column"
10 category="identifier" description="The foreign key into the Component table used to determine install state."/>
11 <columnDefinition name="ProviderKey" type="string" length="255"
12 category="text" description="The name of the registry key that holds the provider identity."/>
13 <columnDefinition name="Version" type="string" length="72" nullable="yes"
14 category="version" description="The version of the package."/>
15 <columnDefinition name="DisplayName" type="string" length="255" nullable="yes"
16 category="text" description="The display name of the package."/>
17 <columnDefinition name="Attributes" type="number" length="4" nullable="yes"
18 minValue="0" maxValue="2147483647" description="A 32-bit word that specifies the attribute flags to be applied."/>
19 </tableDefinition>
20 <tableDefinition name="WixDependency" createSymbols="yes">
21 <columnDefinition name="WixDependency" type="string" length="72" primaryKey="yes" modularize="column"
22 category="identifier" description="The non-localized primary key for the table."/>
23 <columnDefinition name="ProviderKey" type="string" length="255"
24 category="text" description="The name of the registry key that holds the provider identity."/>
25 <columnDefinition name="MinVersion" type="string" length="72" nullable="yes"
26 category="version" description="The minimum version of the provider supported."/>
27 <columnDefinition name="MaxVersion" type="string" length="72" nullable="yes"
28 category="version" description="The maximum version of the provider supported."/>
29 <columnDefinition name="Attributes" type="number" length="4" nullable="yes"
30 minValue="0" maxValue="2147483647" description="A 32-bit word that specifies the attribute flags to be applied."/>
31 </tableDefinition>
32 <tableDefinition name="WixDependencyRef" createSymbols="yes">
33 <columnDefinition name="WixDependencyProvider_" type="string" length="72" primaryKey="yes" keyTable="WixDependencyProvider" keyColumn="1" modularize="column"
34 category="identifier" description="Foreign key into the Component table." />
35 <columnDefinition name="WixDependency_" type="string" length="72" primaryKey="yes" keyTable="WixDependency" keyColumn="1" modularize="column"
36 category="identifier" description="Foreign key into the WixDependency table." />
37 </tableDefinition>
38</tableDefinitions>