blob: 5595e8affff3cc9747c2901af161b6de11f8b3b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui">
<Package Name="WixUI_Advanced" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a">
<File Source="example.txt" Directory="APPLICATIONFOLDER" />
<ui:WixUI Id="WixUI_Advanced" />
<Property Id="ApplicationFolderName" Value="MyProgram" />
<Property Id="WixAppFolder" Value="WixPerMachineFolder" />
</Package>
<Fragment>
<DirectoryRef Id="INSTALLFOLDER">
<Directory Id="APPLICATIONFOLDER" />
</DirectoryRef>
</Fragment>
</Wix>
|