main
wxs 26 lines 1.17 KB
Raw
1 <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
2
3 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
4 xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
5 <Bundle Name="!(loc.Name)" Manufacturer="WiX Toolset" Version="$(SetupVersion)" UpgradeCode="fc48131d-214a-439b-9a31-ef2ea5c69ea5"
6 AboutUrl="!(loc.AboutUrl)" HelpUrl="!(loc.SupportUrl)" UpdateUrl="!(loc.UpdateUrl)">
7 <BootstrapperApplication>
8 <bal:WixStandardBootstrapperApplication
9 LicenseUrl="!(loc.LicenseUrl)"
10 Theme="hyperlinkLicense"
11 ShowVersion="true"
12 LogoFile="wix-logo-sq.png" />
13 </BootstrapperApplication>
14
15 <SetVariable Variable="InstallFolder" Value="[ProgramFilesFolder]WiX Toolset v$(SetupMajorMinorVersion)\" />
16 <SoftwareTag Regid="!(loc.Regid)" InstallPath="[InstallFolder]" />
17
18 <Update Location="!(loc.UpdateUrl)" />
19
20 <Chain>
21 <MsiPackage SourceFile="ThmViewerPackage.msi">
22 <MsiProperty Name="INSTALLFOLDER" Value="[InstallFolder]" />
23 </MsiPackage>
24 </Chain>
25 </Bundle>
26 </Wix>