1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
|
3 |
|
4 <?include guids.wxi ?> |
|
5 <?include defines.wxi ?> |
|
6 |
|
7 <Fragment> |
|
8 <ComponentGroup Id='helpFolder'> |
|
9 <ComponentRef Id='help.root' /> |
|
10 <ComponentRef Id='help.internals' /> |
|
11 </ComponentGroup> |
|
12 </Fragment> |
|
13 |
|
14 <Fragment> |
|
15 <DirectoryRef Id="INSTALLDIR"> |
|
16 <Directory Id="helpdir" Name="help" FileSource="$(var.SourceDir)"> |
|
17 <Component Id="help.root" Guid="$(var.help.root.guid)" Win64='$(var.IsX64)'> |
|
18 <File Name="bundlespec.txt" /> |
|
19 <File Name="color.txt" /> |
|
20 <File Name="config.txt" KeyPath="yes" /> |
|
21 <File Name="dates.txt" /> |
|
22 <File Name="deprecated.txt" /> |
|
23 <File Name="diffs.txt" /> |
|
24 <File Name="environment.txt" /> |
|
25 <File Name="extensions.txt" /> |
|
26 <File Name="filesets.txt" /> |
|
27 <File Name="flags.txt" /> |
|
28 <File Name="glossary.txt" /> |
|
29 <File Name="hgignore.txt" /> |
|
30 <File Name="hgweb.txt" /> |
|
31 <File Name="merge-tools.txt" /> |
|
32 <File Name="pager.txt" /> |
|
33 <File Name="patterns.txt" /> |
|
34 <File Name="phases.txt" /> |
|
35 <File Name="revisions.txt" /> |
|
36 <File Name="scripting.txt" /> |
|
37 <File Name="subrepos.txt" /> |
|
38 <File Name="templates.txt" /> |
|
39 <File Name="urls.txt" /> |
|
40 </Component> |
|
41 |
|
42 <Directory Id="help.internaldir" Name="internals"> |
|
43 <Component Id="help.internals" Guid="$(var.help.internals.guid)" Win64='$(var.IsX64)'> |
|
44 <File Id="internals.bundle2.txt" Name="bundle2.txt" /> |
|
45 <File Id="internals.bundles.txt" Name="bundles.txt" KeyPath="yes" /> |
|
46 <File Id="internals.cbor.txt" Name="cbor.txt" /> |
|
47 <File Id="internals.censor.txt" Name="censor.txt" /> |
|
48 <File Id="internals.changegroups.txt" Name="changegroups.txt" /> |
|
49 <File Id="internals.config.txt" Name="config.txt" /> |
|
50 <File Id="internals.extensions.txt" Name="extensions.txt" /> |
|
51 <File Id="internals.linelog.txt" Name="linelog.txt" /> |
|
52 <File Id="internals.requirements.txt" Name="requirements.txt" /> |
|
53 <File Id="internals.revlogs.txt" Name="revlogs.txt" /> |
|
54 <File Id="internals.wireprotocol.txt" Name="wireprotocol.txt" /> |
|
55 <File Id="internals.wireprotocolrpc.txt" Name="wireprotocolrpc.txt" /> |
|
56 <File Id="internals.wireprotocolv2.txt" Name="wireprotocolv2.txt" /> |
|
57 </Component> |
|
58 </Directory> |
|
59 |
|
60 </Directory> |
|
61 </DirectoryRef> |
|
62 </Fragment> |
|
63 |
|
64 </Wix> |
|