main
wxs 18 lines 682 Bytes
Raw
1 <?include Package.wxi ?>
2 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Package Name="MsiPackage" Language="1033" Version="$(var.ProductVersion)" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a" Compressed="no" InstallerVersion="200" Scope="perMachine">
4
5
6 <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" />
7
8 <Feature Id="ProductFeature" Title="$(var.FeatureTitleName)">
9 <ComponentGroupRef Id="ProductComponents" />
10 </Feature>
11 </Package>
12
13 <Fragment>
14 <StandardDirectory Id="ProgramFilesFolder">
15 <Directory Id="INSTALLFOLDER" Name="MsiPackage" />
16 </StandardDirectory>
17 </Fragment>
18 </Wix>