| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui"> |
| 2 | <Package Name="WixUI_Mondo" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a" InstallerVersion="200"> |
| 3 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> |
| 4 | |
| 5 | <Feature Id="ProductFeature" Title="MsiPackage" ConfigurableDirectory="INSTALLFOLDER"> |
| 6 | <ComponentGroupRef Id="ProductComponents" /> |
| 7 | </Feature> |
| 8 | |
| 9 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> |
| 10 | <Component> |
| 11 | <File Source="example.txt" /> |
| 12 | </Component> |
| 13 | </ComponentGroup> |
| 14 | |
| 15 | <ui:WixUI Id="WixUI_Mondo" ExtendedPathValidation="yes" /> |
| 16 | <WixVariable Id="WixUILicenseRtf" Value="bpl.rtf" /> |
| 17 | </Package> |
| 18 | |
| 19 | <Fragment> |
| 20 | <StandardDirectory Id="ProgramFilesFolder"> |
| 21 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
| 22 | </StandardDirectory> |
| 23 | </Fragment> |
| 24 | </Wix> |