blob: 7ae4285c2561c494acae24e1db1df8f700659367 (
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
59
60
61
62
63
|
<element name="RestartResource">
<annotation>
<documentation>Registers a resource with the Restart Manager.</documentation>
<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>
</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">
<annotation>
<documentation>
The unique identifier for this resource. A unique identifier will
be generated automatically if not specified.
</documentation>
</annotation>
</attribute>
<attribute name="Path" type="xs:string">
<annotation>
<documentation>
The full path to the process module to register with the Restart Manager.
This can be a formatted value that resolves to a full path.
</documentation>
</annotation>
</attribute>
<attribute name="ProcessName" type="xs:string">
<annotation>
<documentation>
The name of a process to register with the Restart Manager.
This can be a formatted value that resolves to a process name.
</documentation>
</annotation>
</attribute>
<attribute name="ServiceName" type="xs:string">
<annotation>
<documentation>
The name of a Windows service to register with the Restart Manager.
This can be a formatted value that resolves to a service name.
</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>
|