aboutsummaryrefslogtreecommitdiff
path: root/src/setup/WixAdditionalTools/WixAdditionalTools.wxs
blob: 08dc90fed58d53b4892495be618d29ac7e79c4d2 (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="$(Company)" Version="$(SetupVersion)"
          AboutUrl="!(loc.AboutUrl)" HelpUrl="!(loc.SupportUrl)" UpdateUrl="!(loc.UpdateUrl)">
    <BootstrapperApplication>
      <bal:WixStandardBootstrapperApplication
        LicenseFile="..\OSMFEULA.rtf"
        Theme="rtfLicense"
        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>