main
wxs 24 lines 839 Bytes
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package Name="$safeprojectname$" Manufacturer="$company$" Version="$version$" UpgradeCode="PUT-GUID-HERE">
3 <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed" />
4
5 <Feature Id="Main">
6 <ComponentGroupRef Id="Components" />
7 </Feature>
8 </Package>
9
10 <Fragment>
11 <ComponentGroup Id="Components" Directory="INSTALLFOLDER">
12 <Component>
13 <!-- TODO: Install something more useful than this source code file itself -->
14 <File Source="Package.wxs" />
15 </Component>
16 </ComponentGroup>
17 </Fragment>
18
19 <Fragment>
20 <StandardDirectory Id="ProgramFiles6432Folder">
21 <Directory Id="INSTALLFOLDER" Name="!(Property.Manufacturer) !(Property.ProductName)" />
22 </StandardDirectory>
23 </Fragment>
24 </Wix>