build.wxs 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Wix RequiredVersion="3.6.2830.0" xmlns="http://schemas.microsoft.com/wix/2006/wi"
  3. xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
  4. <Bundle Name="ELEMENTS" Version="$(var.Version)" Manufacturer="ELEMENTS.tv" UpgradeCode="508475fc-0e76-4cd1-8e98-6953023ba518"
  5. HelpUrl="http://elements.tv"
  6. Copyright="Copyright © 2016 ELEMENTS" IconSourceFile="build/icon.ico"
  7. AboutUrl="http://elements.tv">
  8. <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense">
  9. <bal:WixStandardBootstrapperApplication
  10. LicenseUrl=""
  11. LogoFile="build\logo.png"
  12. ThemeFile="build\windows\wix-theme.xml"
  13. />
  14. </BootstrapperApplicationRef>
  15. <Chain>
  16. <MsiPackage
  17. Id="ClientMSI"
  18. Compressed="yes"
  19. ForcePerMachine="yes"
  20. SourceFile="dist\elements-app.msi"
  21. Vital="yes">
  22. </MsiPackage>
  23. <MsiPackage
  24. Id="DriverMSI"
  25. Compressed="yes"
  26. ForcePerMachine="yes"
  27. SourceFile="build/windows/ElementsDriver_x64.msi"
  28. Vital="yes">
  29. </MsiPackage>
  30. </Chain>
  31. </Bundle>
  32. </Wix>