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