main
wxs 25 lines 914 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 <Feature Id="ProductFeature">
6 <FeatureGroupRef Id="ProductFeatureGroup" />
7 </Feature>
8 </Package>
9
10 <Fragment>
11 <StandardDirectory Id="ProgramFilesFolder">
12 <Directory Id="INSTALLFOLDER" Name="MsiPackage" />
13 </StandardDirectory>
14 </Fragment>
15
16 <Fragment>
17 <FeatureGroup Id="ProductFeatureGroup">
18 <Files Directory="INSTALLFOLDER" Include="files1\**">
19 <Exclude Files="files1\files1_sub1\**" />
20 </Files>
21
22 <Files Directory="INSTALLFOLDER" Subdirectory="assets" Include="files2\**" />
23 </FeatureGroup>
24 </Fragment>
25 </Wix>