| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 2 | <Package Name="~AppId Top-Level" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="12E4699F-E774-4D05-8A01-5BDD41BBA127" Compressed="no"> |
| 3 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> |
| 4 | |
| 5 | <AppId Id="D6040299-B15C-4C94-AE26-0C9B60D14C35" /> |
| 6 | |
| 7 | <Feature Id="ProductFeature" Title="MsiPackageTitle"> |
| 8 | <Component Directory="INSTALLFOLDER"> |
| 9 | <File Source="test.txt" /> |
| 10 | </Component> |
| 11 | </Feature> |
| 12 | </Package> |
| 13 | |
| 14 | <Fragment> |
| 15 | <StandardDirectory Id="ProgramFiles6432Folder"> |
| 16 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
| 17 | </StandardDirectory> |
| 18 | </Fragment> |
| 19 | </Wix> |