blob: 03c9f267720ca5091efc8ffa2aef9a7f33c88f60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?xml version="1.0" encoding="utf-8" ?>
<!-- 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. -->
<tableDefinitions xmlns="http://wixtoolset.org/schemas/v4/wi/tables">
<tableDefinition name="WixDependencyProvider" createSymbols="yes">
<columnDefinition name="WixDependencyProvider" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="The non-localized primary key for the table."/>
<columnDefinition name="Component_" type="string" length="72" keyTable="Component" keyColumn="1" modularize="column"
category="identifier" description="The foreign key into the Component table used to determine install state."/>
<columnDefinition name="ProviderKey" type="string" length="255"
category="text" description="The name of the registry key that holds the provider identity."/>
<columnDefinition name="Version" type="string" length="72" nullable="yes"
category="version" description="The version of the package."/>
<columnDefinition name="DisplayName" type="string" length="255" nullable="yes"
category="text" description="The display name of the package."/>
<columnDefinition name="Attributes" type="number" length="4" nullable="yes"
minValue="0" maxValue="2147483647" description="A 32-bit word that specifies the attribute flags to be applied."/>
</tableDefinition>
<tableDefinition name="WixDependency" createSymbols="yes">
<columnDefinition name="WixDependency" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="The non-localized primary key for the table."/>
<columnDefinition name="ProviderKey" type="string" length="255"
category="text" description="The name of the registry key that holds the provider identity."/>
<columnDefinition name="MinVersion" type="string" length="72" nullable="yes"
category="version" description="The minimum version of the provider supported."/>
<columnDefinition name="MaxVersion" type="string" length="72" nullable="yes"
category="version" description="The maximum version of the provider supported."/>
<columnDefinition name="Attributes" type="number" length="4" nullable="yes"
minValue="0" maxValue="2147483647" description="A 32-bit word that specifies the attribute flags to be applied."/>
</tableDefinition>
<tableDefinition name="WixDependencyRef" createSymbols="yes">
<columnDefinition name="WixDependencyProvider_" type="string" length="72" primaryKey="yes" keyTable="WixDependencyProvider" keyColumn="1" modularize="column"
category="identifier" description="Foreign key into the Component table." />
<columnDefinition name="WixDependency_" type="string" length="72" primaryKey="yes" keyTable="WixDependency" keyColumn="1" modularize="column"
category="identifier" description="Foreign key into the WixDependency table." />
</tableDefinition>
</tableDefinitions>
|