main
wxs 19 lines 865 Bytes
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package Name="HarvestedFiles" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a">
3 <MajorUpgrade DowngradeErrorMessage="Downgrade error message." />
4
5 <Feature Id="ProductFeature">
6 <ComponentGroupRef Id="Files" />
7 </Feature>
8
9 <ComponentGroup Id="Files" Directory="ProgramFilesFolder" Subdirectory="HarvestedFiles">
10 <Files Include="!(bindpath.ToBeHarvested)\**">
11 <Exclude Files="!(bindpath.ToBeHarvested)\notatest.txt" />
12 <Exclude Files="!(bindpath.ToBeHarvested)\**\pleasedontincludeme.dat" />
13 </Files>
14
15 <!-- Include everything from the unnamed bindpath too. -->
16 <Files Include="**" />
17 </ComponentGroup>
18 </Package>
19 </Wix>