| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 2 | <Package Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a" Compressed="yes" InstallerVersion="200" Scope="perMachine"> |
| 3 | <MajorUpgrade DowngradeErrorMessage="Downgrade not allowed" /> |
| 4 | |
| 5 | <MediaTemplate CabinetTemplate="cab{0}.cab" CompressionLevel="none" MaximumUncompressedMediaSize="20" MaximumCabinetSizeForLargeFileSplitting="20" /> |
| 6 | |
| 7 | <Feature Id="ProductFeature"> |
| 8 | <!-- The name of the files here are important to control order of the generated media and cabinets. --> |
| 9 | <Component Directory="INSTALLFOLDER"> |
| 10 | <File Source="abc.gen" /> |
| 11 | </Component> |
| 12 | <Component Directory="INSTALLFOLDER"> |
| 13 | <File Source="ced.txt" /> |
| 14 | </Component> |
| 15 | <Component Directory="INSTALLFOLDER"> |
| 16 | <File Source="hij.txt" /> |
| 17 | </Component> |
| 18 | <Component Directory="INSTALLFOLDER"> |
| 19 | <File Source="mno.gen" /> |
| 20 | </Component> |
| 21 | <Component Directory="INSTALLFOLDER"> |
| 22 | <File Source="qrs.txt" /> |
| 23 | </Component> |
| 24 | <Component Directory="INSTALLFOLDER"> |
| 25 | <File Source="tuv.txt" /> |
| 26 | </Component> |
| 27 | <Component Directory="INSTALLFOLDER"> |
| 28 | <File Source="xyz.gen" /> |
| 29 | </Component> |
| 30 | </Feature> |
| 31 | </Package> |
| 32 | |
| 33 | <Fragment> |
| 34 | <StandardDirectory Id="ProgramFilesFolder"> |
| 35 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
| 36 | </StandardDirectory> |
| 37 | </Fragment> |
| 38 | </Wix> |