main
wxs 33 lines 1.09 KB
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package Version="!(wix.Version)"
3 Name="MsiPackage"
4 Manufacturer="Example Corporation"
5 UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"
6 Scope="perUser">
7 <MajorUpgrade DowngradeErrorMessage="Downgrade not allowed" />
8 <MediaTemplate EmbedCab="true" />
9
10 <Feature Id="ProductFeature" Title="Feature title">
11 <ComponentGroupRef Id="ProductComponents" />
12 </Feature>
13
14 <WixVariable Id="Version" Value="v9.8.7.6" />
15 </Package>
16
17 <Fragment>
18 <StandardDirectory Id="DesktopFolder">
19 <Directory Id="INSTALLFOLDER" Name="MsiPackage !(wix.Version) and !(bind.property.ProductVersion)" />
20 </StandardDirectory>
21 </Fragment>
22
23 <Fragment>
24 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
25 <Component>
26 <File Source="test.txt" />
27 </Component>
28 <Component Id="Shared.dll" Shared="yes">
29 <File Name="Shared.dll" Source="test.txt" />
30 </Component>
31 </ComponentGroup>
32 </Fragment>
33 </Wix>