| 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 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> |
| 4 | |
| 5 | <Feature Id="ProductFeature1" Title="!(loc.FeatureTitle)"> |
| 6 | <ComponentRef Id="Component1" Primary="yes" /> |
| 7 | </Feature> |
| 8 | |
| 9 | <Feature Id="ProductFeature2" Title="!(loc.FeatureTitle)"> |
| 10 | <ComponentRef Id="Component1" /> |
| 11 | <ComponentRef Id="Component2" /> |
| 12 | </Feature> |
| 13 | </Package> |
| 14 | |
| 15 | <Fragment> |
| 16 | <StandardDirectory Id="ProgramFilesFolder"> |
| 17 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
| 18 | </StandardDirectory> |
| 19 | </Fragment> |
| 20 | |
| 21 | <Fragment> |
| 22 | <Component Id="Component1" Directory="INSTALLFOLDER" Guid="C8EFA5DF-2876-4724-A003-A6BEBF140BB1"> |
| 23 | <File Id="File1" Source="test.txt" /> |
| 24 | <Category Id="{BD245B5A-EC33-46ED-98FF-E9D3D416AD04}" AppData="AppData1" Qualifier="Qualifier1" /> |
| 25 | </Component> |
| 26 | </Fragment> |
| 27 | |
| 28 | <Fragment> |
| 29 | <Component Id="Component2" Directory="INSTALLFOLDER" Guid="8DE79DE7-4B55-4D43-88F5-AD6A1E8D242A"> |
| 30 | <File Id="File2" Source="test.txt" /> |
| 31 | <Category Id="{0A82C8F6-9CE9-4336-B8BE-91A39B5F7081}" AppData="AppData2" Qualifier="Qualifier2" /> |
| 32 | </Component> |
| 33 | </Fragment> |
| 34 | </Wix> |