blob: 5abcee9f8fb1e90e6c52d6798381b4fdcb3ffefd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Package Name="HeatFilePackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a" Compressed="yes" InstallerVersion="200">
<MediaTemplate />
<Feature Id="ProductFeature" Title="HeatFileFeature">
<ComponentGroupRef Id="TxtProductComponents" />
<ComponentGroupRef Id="JsonProductComponents" />
</Feature>
</Package>
<Fragment>
<StandardDirectory Id="ProgramFilesFolder">
<Directory Id="INSTALLFOLDER" Name="MsiPackage" />
</StandardDirectory>
</Fragment>
</Wix>
|