main
wxs 27 lines 1.1 KB
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package Name="PackageMissingFeatureComponentMapping" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="12E4699F-E774-4D05-8A01-5BDD41BBA127">
3 <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
4
5 <StandardDirectory Id="ProgramFiles6432Folder">
6 <Directory Id="INSTALLFOLDER" Name="PackageMissingFeatureComponentMapping">
7 <Directory Id="SubFolder" Name="NotMapped">
8 <Component>
9 <File Source="test.txt" />
10 </Component>
11 </Directory>
12 </Directory>
13 </StandardDirectory>
14
15 <Feature Id="MissingComponentFeature" />
16
17 <Component Directory="INSTALLFOLDER">
18 <File Source="test.txt" />
19 </Component>
20
21 <ComponentGroup Id="ImplicitFeatureComponentGroup" Directory="INSTALLFOLDER">
22 <Component>
23 <File Name="test2.txt" Source="test.txt" />
24 </Component>
25 </ComponentGroup>
26 </Package>
27 </Wix>