blob: f195081dbec12c0b4363afe2ab9f0f2680448725 (
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="TouchFile">
<annotation>
<documentation>Updates the last modified date/time of a file.</documentation>
<appinfo>
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
</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>Identifier for the touch file operation. If the identifier is not specified it will be generated.</documentation>
</annotation>
</attribute>
<attribute name="Path" use="required" type="xs:string">
<annotation>
<documentation>Path of the file to update. This value is formatted.</documentation>
</annotation>
</attribute>
<attribute name="OnInstall" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>Specifies whether or not the modified time of the file should be updated on install. If the OnInstall, OnReinstall and OnUninstall attributes are all absent the default is 'yes'.</documentation>
</annotation>
</attribute>
<attribute name="OnReinstall" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>Specifies whether or not the modified time of the file should be updated on reinstall. If the OnInstall, OnReinstall and OnUninstall attributes are all absent the default is 'yes'.</documentation>
</annotation>
</attribute>
<attribute name="OnUninstall" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>Specifies whether or not the modified time of the file should be updated on uninstall. If the OnInstall, OnReinstall and OnUninstall attributes are all absent the default is 'no'.</documentation>
</annotation>
</attribute>
<attribute name="Nonvital" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>Indicates the installation will succeed even if the modified time of the file cannot be updated. The default is 'no'.</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>
|