2
0

Product.wxs 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Platform specific variables -->
  3. <?define ProductName = "FreeSWITCH Sounds - $(var.SoundPrimaryName) $(var.SoundQuality)Hz $(var.SoundVersion)" ?>
  4. <?define ComponentGroup = "FreeSWITCHSoundFiles$(var.SoundSuffix)" ?>
  5. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  6. <Product Id="*" Name="$(var.ProductName)" Language="1033" Version="$(var.SoundVersion)" Manufacturer="FreeSWITCH" UpgradeCode="$(var.SoundUpgradeCode)">
  7. <Package InstallerVersion="200" Compressed="yes" />
  8. <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
  9. <MediaTemplate EmbedCab="yes" />
  10. <Directory Id="TARGETDIR" Name="SourceDir">
  11. <Directory Id="ProgramFiles64Folder">
  12. <Directory Id="FREESWITCHFOLDER" Name="FreeSWITCH">
  13. <Directory Id="SOUNDLOCATION" Name="sounds">
  14. </Directory>
  15. </Directory>
  16. </Directory>
  17. </Directory>
  18. <Feature Id="ProductFeature" Title="$(var.ProductName)" Level="1">
  19. <ComponentGroupRef Id="$(var.ComponentGroup)" />
  20. </Feature>
  21. <UIRef Id="WixUI_Minimal" />
  22. <WixVariable Id="WixUILicenseRtf" Value="$(var.BaseDir)/docs/COPYING.rtf" />
  23. </Product>
  24. </Wix>