main
wxs 15 lines 510 Bytes
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package Version="1"
3 Name="MsiPackage"
4 Manufacturer="Example Corporation"
5 UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"
6 Scope="perMachine">
7 <MajorUpgrade DowngradeErrorMessage="Downgrade not allowed" />
8
9 <Feature Id="ProductFeature" Title="Feature title">
10 <Component Directory="DesktopFolder">
11 <File Source="PerUser.wxs" />
12 </Component>
13 </Feature>
14 </Package>
15 </Wix>