blob: 5d8cfc81100c10187cbaa86d4bea06fe79edb3ef (
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="WebDir">
<annotation>
<appinfo>
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
</appinfo>
<documentation>Defines a subdirectory within an IIS web site. When this element is a child of WebSite, the web directory is defined within that web site. Otherwise the web directory must reference a WebSite element via the WebSite attribute.</documentation>
</annotation>
<complexType>
<choice minOccurs="0" maxOccurs="unbounded">
<element ref="WebApplication" minOccurs="0" maxOccurs="1" />
<element ref="WebDirProperties" minOccurs="0" maxOccurs="1" />
<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 web application. If the Id is not specified, it will be generated.</documentation>
</annotation>
</attribute>
<attribute name="WebApplication" type="xs:string">
<annotation>
<documentation>References the Id attribute for a WebApplication element in which this directory belongs.</documentation>
</annotation>
</attribute>
<attribute name="WebSite" type="xs:string">
<annotation>
<documentation>References the Id attribute for a WebSite element in which this directory belongs. Required when this element is not a child of a WebSite element.</documentation>
</annotation>
</attribute>
<attribute name="Path" type="xs:string" use="required">
<annotation>
<documentation>Specifies the name of this web directory.</documentation>
</annotation>
</attribute>
<attribute name="DirProperties" type="xs:string">
<annotation>
<documentation>
References the Id attribute for a WebDirProperties element that specifies the security and access properties for this web directory.
This attribute may not be specified if a WebDirProperties element is directly nested in this element.
</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>
|