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