blob: 71cce5cca4c938b404ca7d01c46ecba26b691104 (
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
|
<element name="FileShare">
<annotation>
<appinfo>
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
</appinfo>
<documentation>Creates a file share out of the component's directory.</documentation>
</annotation>
<complexType>
<choice minOccurs="0" maxOccurs="unbounded">
<element ref="FileSharePermission">
<annotation>
<documentation>At least one of these ACL permission must be specified.</documentation>
</annotation>
</element>
<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">
<annotation>
<documentation>Identifier for the file share (primary key).</documentation>
</annotation>
</attribute>
<attribute name="Name" type="xs:string" use="required">
<annotation>
<documentation>Name of the file share.</documentation>
</annotation>
</attribute>
<attribute name="Description" type="xs:string">
<annotation>
<documentation>Description of the file share.</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>
|