aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/wix/UserInterface.wxi
blob: 8e10bb07aad966f3ff30241630b691f9fc79d15b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<Include>
  <!-- Define the appearance, sequence, and available options in the user interface -->
  <Fragment>
    <WixVariable Id="WixUILicenseRtf" Value="$(var.EulaPath)" />

    <Property Id="ARPPRODUCTICON" Value="ProductIcon" />

    <!-- This UI identifier will be used in the product definition-->
    <UI Id="UI.Wireshark">

      <Property Id="WIXUI_INSTALLDIR" Value="INSTALLFOLDER" ></Property>
      <UIRef Id="WiresharkWixUI" />
    </UI>
  </Fragment>
</Include>