main
wxs 23 lines 831 Bytes
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package Name="MsiPackage" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a">
3 <MajorUpgrade DowngradeErrorMessage="Downgrade error message." />
4
5 <FeatureRef Id="ProductFeature">
6 <Files Directory="INSTALLFOLDER" Include="files1\**">
7 <Exclude Files="files1\files1_sub1\**" />
8 </Files>
9
10 <Files Directory="INSTALLFOLDER" Subdirectory="assets" Include="files2\**" />
11 </FeatureRef>
12 </Package>
13
14 <Fragment>
15 <StandardDirectory Id="ProgramFilesFolder">
16 <Directory Id="INSTALLFOLDER" Name="MsiPackage" />
17 </StandardDirectory>
18 </Fragment>
19
20 <Fragment>
21 <Feature Id="ProductFeature" />
22 </Fragment>
23 </Wix>