| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 2 | <Package Name="~Test Package" Version="$(var.V)" Manufacturer="Example Corporation" Language="1033" UpgradeCode="7d326855-e790-4a94-8611-5351f8321fca" Compressed="yes" Scope="perMachine" ProductCode="7d326855-e790-4a94-8611-5351f8321fca"> |
| 3 | |
| 4 | |
| 5 | <MajorUpgrade DowngradeErrorMessage="Newer version already installed." /> |
| 6 | <MediaTemplate EmbedCab="yes" /> |
| 7 | |
| 8 | <StandardDirectory Id="ProgramFilesFolder"> |
| 9 | <Directory Id="INSTALLFOLDER" Name="~Test A" /> |
| 10 | </StandardDirectory> |
| 11 | |
| 12 | <Feature Id="Main"> |
| 13 | <ComponentGroupRef Id="Components" /> |
| 14 | </Feature> |
| 15 | </Package> |
| 16 | |
| 17 | <Fragment> |
| 18 | <ComponentGroup Id="Components" Directory="INSTALLFOLDER"> |
| 19 | <Component Id="CA"> |
| 20 | <File Id="a.txt" Name="a.txt" Source="Av$(var.A).txt" /> |
| 21 | </Component> |
| 22 | <Component Id="CB"> |
| 23 | <File Id="b.txt" Name="b.txt" Source="Bv$(var.B).txt" /> |
| 24 | </Component> |
| 25 | </ComponentGroup> |
| 26 | </Fragment> |
| 27 | </Wix> |