blob: 003659df57549b5fb24895c1885261f9d19b18da (
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="FormatsFile">
<annotation>
<documentation>
Identifies the parent File as a formats XML file for the referenced PowerShell snap-in.
</documentation>
<appinfo>
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="File" />
<remarks>
A formats XML file that defines output formats for objects on the pipeline.
</remarks>
</appinfo>
</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="FileId" type="xs:string">
<annotation>
<documentation>
Reference to the formats File ID. This is required when nested under the SnapIn element.
</documentation>
</annotation>
</attribute>
<attribute name="SnapIn" type="xs:string">
<annotation>
<documentation>
Reference to the PowerShell snap-in ID for which this formats file is associated. This is required when nested under the File 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>
|