wrapper.wxs 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  2. <!-- UpgradeCode should be the same across versions of one app,
  3. but must be different for another app. If you copy this, generate
  4. a new UUID for it! -->
  5. <Product Id="*" UpgradeCode="4981284B-DCB8-4257-91CA-D79EDC94A9E8"
  6. Name="Mu Editor" Version="0.0.1" Manufacturer="Trylan Erruh" Language="1033">
  7. <Package InstallerVersion="200" Compressed="yes" Comments="Windows Installer Package"/>
  8. <Media Id="1" Cabinet="product.cab" EmbedCab="yes"/>
  9. <Directory Id="TARGETDIR" Name="SourceDir">
  10. <Directory Id="ProgramFilesFolder">
  11. <Directory Id="INSTALLDIR" Name="Mu Editor">
  12. </Directory>
  13. </Directory>
  14. <Directory Id="ProgramMenuFolder">
  15. <Component Id="ApplicationShortcuts" Guid="*">
  16. <Shortcut Id="ApplicationShortcut1" Name="Mu" Description="Run Python code"
  17. Target="[INSTALLDIR]Python\python.exe" Arguments="&quot;[INSTALLDIR]mu.launch.py&quot;"/>
  18. <!-- If this component doesn't have the registry entry below, Wix
  19. refuses to autogenerate a GUID for it. -->
  20. <RegistryValue Root="HKCU" Key="Software\Trylan Erruh\Mu Editor"
  21. Name="installed" Type="integer" Value="1" KeyPath="yes"/>
  22. </Component>
  23. </Directory>
  24. </Directory>
  25. <Feature Id="DefaultFeature" Level="1">
  26. <ComponentGroupRef Id="ApplicationFiles"/>
  27. <ComponentRef Id="ApplicationShortcuts"/>
  28. </Feature>
  29. </Product>
  30. </Wix>