main
wxs 22 lines 827 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 <File Directory="ProgramFilesFolder" Subdirectory="MsiPackage" Source="test.txt" />
19 <File Directory="ProgramFilesFolder" Subdirectory="MsiPackage" Source="test.txt" Name="test2.txt" />
20 </FeatureGroup>
21 </Fragment>
22 </Wix>