| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 2 | <Package Version="!(wix.VersionVar)" |
| 3 | Name="MsiPackage" |
| 4 | Manufacturer="Example Corporation" |
| 5 | UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a" |
| 6 | Scope="perUser"> |
| 7 | <MajorUpgrade DowngradeErrorMessage="Downgrade not allowed" /> |
| 8 | <MediaTemplate EmbedCab="true" /> |
| 9 | |
| 10 | <Feature Id="ProductFeature" Title="Feature title"> |
| 11 | <Component Directory="INSTALLFOLDER"> |
| 12 | <File Source="!(wix.DataBindVariable)\test.txt" /> |
| 13 | </Component> |
| 14 | </Feature> |
| 15 | </Package> |
| 16 | |
| 17 | <Fragment> |
| 18 | <StandardDirectory Id="DesktopFolder"> |
| 19 | <Directory Id="INSTALLFOLDER" Name="MsiPackage !(wix.VersionVar)" /> |
| 20 | </StandardDirectory> |
| 21 | </Fragment> |
| 22 | </Wix> |