Skip to content
Snippets Groups Projects
Select Git revision
  • archive
  • master default protected
  • v7.14.3
  • v7.14.2
  • v7.14.1
  • v7.14
  • v7.13
  • v7.12
  • v7.11
  • v7.10
  • v7.9
  • v7.8
  • v7.7
  • v7.6
  • v7.5
  • v7.4
  • v7.3
  • v7.3_MultiCellType
  • v7.2
  • v7.2_MultiCell
  • v7.1
  • v7.1_MultiCell
22 results

LEVER-Bundle.wxs

Blame
  • LEVER-Bundle.wxs 868 B
    <?xml version="1.0" encoding="UTF-8"?>
    <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
         xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
      <Bundle Name="LEVER Lineage Editor" Version="$(env.LEVER_VER)" Manufacturer="http://bioimage.coe.drexel.edu" UpgradeCode="376927e6-92fc-432a-9c5a-5470be49b447">
        <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense">
          <bal:WixStandardBootstrapperApplication
              LicenseFile = "license/license.rtf"
              LogoFile ="resources/LEVER_logo.png"/>
        </BootstrapperApplicationRef>
    
        <Chain>
          <ExePackage Name="MCRInstaller" SourceFile = "dependencies/$(env.MCR_FILE)" />
          <ExePackage Name="VCRedistributable" SourceFile = "dependencies/vcredist_x64.exe" />
    
          <MsiPackage Id="lever" SourceFile = "installer/lever.msi" />
        </Chain>
      </Bundle>
    </Wix>