blob: b3d7b2fc9243ce0913e57a808360a1267a0dd28a (
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
|
<element name="ComPlusPartition">
<annotation>
<appinfo>
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
<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" />
</appinfo>
<documentation>
Defines a COM+ partition. If this element is a child of a
Component element, the partition will be created in association with this
component. If the element is a child of any of the Fragment, Module, or Package
elements it is considered to be a locater, referencing an existing partition.
</documentation>
</annotation>
<complexType>
<sequence>
<choice minOccurs="0" maxOccurs="unbounded">
<element ref="ComPlusPartitionRole" />
<element ref="ComPlusPartitionUser" />
<element ref="ComPlusApplication" />
</choice>
</sequence>
<attribute name="Id" use="required" type="xs:string">
<annotation><documentation>
Identifier for the element.
</documentation></annotation>
</attribute>
<attribute name="PartitionId" use="optional" type="xs:string">
<annotation><documentation>
Id for the partition. This attribute can be omitted, in
which case an id will be generated on install. If the element is a locater,
this attribute can be omitted if a value is provided for the Name attribute.
</documentation></annotation>
</attribute>
<attribute name="Name" use="optional" type="xs:string">
<annotation><documentation>
Name of the partition. This attribute can be omitted if
the element is a locater, and a value is provided for the PartitionId
attribute.
</documentation></annotation>
</attribute>
<attribute name="Changeable" use="optional" type="wxs:YesNoTypeUnion" />
<attribute name="Deleteable" use="optional" type="wxs:YesNoTypeUnion" />
<attribute name="Description" use="optional" type="xs:string" />
</complexType>
</element>
|