main
wxs 21 lines 821 Bytes
Raw
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 <MediaTemplate EmbedCab="yes" />
4
5 <ComponentGroup Id="Components" Directory="INSTALLFOLDER">
6 <Component Id="CA">
7 <File Id="a.txt" Name="a.txt" Source="Av$(var.A).txt" />
8 </Component>
9
10 <Component Id="CB">
11 <File Id="b.txt" Name="b.txt" Source="Bv$(var.B).txt" />
12 </Component>
13
14 <?if $(C) == "TRUE" ?>
15 <Component Id="CC">
16 <File Id="c.txt" Name="c.txt" Source="C.txt" />
17 </Component>
18 <?endif?>
19 </ComponentGroup>
20 </Package>
21 </Wix>