blob: dfd06ac8a5b153a414eb065bcd4f29a446fd1963 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<element name="WixUI">
<annotation>
<appinfo>
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="PatchFamily" />
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" />
</appinfo>
<documentation>
References a WixUI dialog set, either one that's included in WixToolset.UI.wixext or a
custom dialog set included in your authoring.
</documentation>
</annotation>
<complexType>
<choice minOccurs="0" maxOccurs="unbounded">
<any namespace="##other" processContents="lax">
<annotation>
<documentation>
Extensibility point in the WiX XML Schema. Schema extensions can register additional
elements at this point in the schema.
</documentation>
</annotation>
</any>
</choice>
<attribute name="Id" type="xs:string" use="required">
<annotation>
<documentation>
Identifier for the dialog set to reference.
</documentation>
</annotation>
</attribute>
<attribute name="InstallDirectory" type="xs:string">
<annotation>
<documentation>
An optional identifier that specifies the directory to set WIXUI_INSTALLDIR to,
for WixUI dialog sets that require it.
</documentation>
</annotation>
</attribute>
<attribute name="ExtendedPathValidation" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>
Enable checks to test whether the package is being installed to a network share or removable
disk. The default is no.
</documentation>
</annotation>
</attribute>
<anyAttribute namespace="##other" processContents="lax">
<annotation>
<documentation>
Extensibility point in the WiX XML Schema. Schema extensions can register additional
attributes at this point in the schema.
</documentation>
</annotation>
</anyAttribute>
</complexType>
</element>
|