aboutsummaryrefslogtreecommitdiff
path: root/src/setup/WixAdditionalTools/WixAdditionalTools.wxs
blob: 9369f32edf04164f8825b07e149f34df2a93fb5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!-- 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. -->

<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
     xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
  <Bundle Id="WixToolset.WixAdditionalTools" Name="!(loc.Name)" Manufacturer="WiX Toolset" Version="$(SetupVersion)"
          AboutUrl="!(loc.AboutUrl)" HelpUrl="!(loc.SupportUrl)" UpdateUrl="!(loc.UpdateUrl)">
    <BootstrapperApplication>
      <bal:WixStandardBootstrapperApplication
        LicenseUrl="!(loc.LicenseUrl)"
        Theme="hyperlinkLicense"
        ShowVersion="true"
        LogoFile="wix-logo-sq.png" />
    </BootstrapperApplication>

    <SetVariable Variable="InstallFolder" Value="[ProgramFilesFolder]WiX Toolset v$(SetupMajorMinorVersion)\" />
    <SoftwareTag Regid="!(loc.Regid)" InstallPath="[InstallFolder]" />

    <Update Location="!(loc.UpdateUrl)" />

    <Chain>
      <MsiPackage SourceFile="ThmViewerPackage.msi">
        <MsiProperty Name="INSTALLFOLDER" Value="[InstallFolder]" />
      </MsiPackage>
    </Chain>
  </Bundle>
</Wix>