| 1 | <?define Variable = "Value" ?> |
| 2 | <?define Variable = "DifferentValue" ?> |
| 3 | |
| 4 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 5 | <Package Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a" Compressed="yes" InstallerVersion="200"> |
| 6 | |
| 7 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> |
| 8 | |
| 9 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> |
| 10 | <ComponentGroupRef Id="ProductComponents" /> |
| 11 | </Feature> |
| 12 | </Package> |
| 13 | |
| 14 | <Fragment> |
| 15 | <StandardDirectory Id="ProgramFiles6432Folder"> |
| 16 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
| 17 | </StandardDirectory> |
| 18 | </Fragment> |
| 19 | </Wix> |