bundleWithWinfsp.wxs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0"?>
  2. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
  3. <!-- see https://wixtoolset.org/documentation/manual/v3/xsd/wix/bundle.html-->
  4. <!-- Attributes explicitly not used:
  5. Condition - the single msi files have their own install conditions, no need to copy them here
  6. -->
  7. <Bundle Name="Cryptomator" UpgradeCode="29eea626-2e5b-4449-b5f8-4602925ddf7b" Version="$(var.BundleVersion)" Manufacturer="$(var.BundleVendor)"
  8. AboutUrl="$(var.AboutUrl)" HelpUrl="$(var.HelpUrl)" UpdateUrl="$(var.UpdateUrl)" Copyright="$(var.BundleCopyright)" IconSourceFile="bundle\resources\Cryptomator.ico">
  9. <!-- for definition of the standard themes, see https://github.com/wixtoolset/wix3/blob/master/src/ext/BalExtension/wixstdba/Resources/-->
  10. <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLargeLicense">
  11. <!-- see https://wixtoolset.org/documentation/manual/v3/xsd/bal/wixstandardbootstrapperapplication.html -->
  12. <!-- Possible Attributes: LaunchTarget -->
  13. <bal:WixStandardBootstrapperApplication
  14. LicenseFile="bundle\resources\license.rtf"
  15. ShowVersion="yes"
  16. SuppressOptionsUI="yes"
  17. ThemeFile="bundle\customBootstrapperTheme.xml"
  18. LocalizationFile="bundle\customBootstrapperTheme.wxl"
  19. LogoFile="bundle\resources\logo.png"
  20. />
  21. <Payload SourceFile="bundle\resources\logoSide.png" />
  22. </BootstrapperApplicationRef>
  23. <Chain>
  24. <!-- see https://wixtoolset.org/documentation/manual/v3/xsd/wix/msipackage.html-->
  25. <MsiPackage
  26. SourceFile="resources\Cryptomator.msi"
  27. CacheId="cryptomator-bundle-cryptomator"
  28. DisplayInternalUI="no"
  29. Visible="no"
  30. />
  31. <MsiPackage
  32. SourceFile="resources\winfsp.msi"
  33. CacheId="cryptomator-bundle-winfsp"
  34. Visible="yes"
  35. DisplayInternalUI="no"
  36. Vital="no"
  37. Permanent="yes"
  38. />
  39. </Chain>
  40. </Bundle>
  41. </Wix>