main
wxs 18 lines 877 Bytes
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package Name="~Test Package" Version="$(V)" Manufacturer="Example Corporation" Language="1033" UpgradeCode="{81CB1126-5796-4012-AB4D-97360EB817F1}" Scope="perMachine" ProductCode="{6CB58995-A174-4A21-823E-3A114A81AB66}">
3
4 <Component Directory="INSTALLFOLDER">
5 <RegistryValue Root="HKLM" Key="SOFTWARE\WiX Toolset\PatchTests" Name="GonnaRemoveRemoveFileRow" Value="1" KeyPath="yes" />
6
7 <?if $(V) = "1.0.0" ?>
8 <RemoveFile Name="bar.dat" On="uninstall" />
9 <?endif?>
10 </Component>
11
12 <Component Directory="INSTALLFOLDER">
13 <RegistryValue Root="HKLM" Key="SOFTWARE\WiX Toolset\PatchTests" Name="ButNotInThisComponent" Value="1" KeyPath="yes" />
14
15 <RemoveFile Name="foo.dat" On="uninstall" />
16 </Component>
17 </Package>
18 </Wix>