help.wxs
28 lines
| 903 B
| text/plain
|
TextLexer
Adrian Buehlmann
|
r10828 | <?xml version="1.0" encoding="utf-8"?> | ||
Adrian Buehlmann
|
r10513 | <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | ||
Adrian Buehlmann
|
r10828 | |||
<?include guids.wxi ?> | ||||
<Fragment> | ||||
<DirectoryRef Id="INSTALLDIR"> | ||||
<Directory Id="helpdir" Name="help" FileSource="$(var.SourceDir)"> | ||||
<Component Id="helpFolder" Guid="$(var.helpFolder.guid)"> | ||||
<File Name="config.txt" KeyPath="yes" /> | ||||
<File Name="dates.txt" /> | ||||
<File Name="diffs.txt" /> | ||||
<File Name="environment.txt" /> | ||||
<File Name="extensions.txt" /> | ||||
Steve Borho
|
r11491 | <File Name="glossary.txt" /> | ||
<File Name="hgweb.txt" /> | ||||
Adrian Buehlmann
|
r10828 | <File Name="multirevs.txt" /> | ||
<File Name="patterns.txt" /> | ||||
<File Name="revisions.txt" /> | ||||
Steve Borho
|
r11491 | <File Name="revsets.txt" /> | ||
Adrian Buehlmann
|
r10828 | <File Name="templates.txt" /> | ||
<File Name="urls.txt" /> | ||||
</Component> | ||||
</Directory> | ||||
</DirectoryRef> | ||||
</Fragment> | ||||
Adrian Buehlmann
|
r10513 | </Wix> | ||