main
wxs 31 lines 1.04 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 </Package>
14
15 <Fragment>
16 <StandardDirectory Id="DesktopFolder">
17 <Directory Id="INSTALLFOLDER" Name="MsiPackage !(wix.Version) and !(bind.property.ProductVersion)" />
18 </StandardDirectory>
19 </Fragment>
20
21 <Fragment>
22 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
23 <Component>
24 <File Source="test.txt" />
25 </Component>
26 <Component Id="Shared.dll" Shared="yes">
27 <File Name="Shared.dll" Source="test.txt" />
28 </Component>
29 </ComponentGroup>
30 </Fragment>
31 </Wix>