| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 2 | <Package Name="~Patch Template Package" Version="$(V)" Manufacturer="Example Corporation" Language="1033" UpgradeCode="AAAAAAAA-BBBB-CCCC-DDDD-1234567890AB" |
| 3 | Compressed="yes" Scope="perMachine" ProductCode="11111111-2222-3333-4444-555555555555"> |
| 4 | |
| 5 | <MajorUpgrade DowngradeErrorMessage="Newer version already installed." /> |
| 6 | <MediaTemplate EmbedCab="yes" /> |
| 7 | |
| 8 | <Feature Id="Main"> |
| 9 | <ComponentGroupRef Id="Components" /> |
| 10 | </Feature> |
| 11 | </Package> |
| 12 | |
| 13 | <Fragment> |
| 14 | <ComponentGroup Id="Components" Directory="INSTALLFOLDER"> |
| 15 | <Component Id="CA"> |
| 16 | <File Id="a.txt" Name="a.txt" Source="A.txt" /> |
| 17 | </Component> |
| 18 | |
| 19 | <Component Id="CReg"> |
| 20 | <RegistryValue Root="HKLM" Key="SOFTWARE\!(bind.property.ProductName)\Patch" Name="Version" Value="$(V)" /> |
| 21 | </Component> |
| 22 | </ComponentGroup> |
| 23 | </Fragment> |
| 24 | |
| 25 | <Fragment> |
| 26 | <StandardDirectory Id="ProgramFilesFolder"> |
| 27 | <Directory Id="INSTALLFOLDER" Name="~Test App" /> |
| 28 | </StandardDirectory> |
| 29 | </Fragment> |
| 30 | </Wix> |