moonlight-qt/wix/MoonlightSetup/Bundle.wxs

34 lines
1.3 KiB
Text
Raw Normal View History

2018-07-25 09:53:51 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2018-07-26 02:16:06 +00:00
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
<Bundle Name="Moonlight Game Streaming Client"
2018-07-26 02:33:09 +00:00
Version="!(bind.PackageVersion.Moonlight)"
2018-07-25 09:53:51 +00:00
Manufacturer="Moonlight Game Streaming Team"
2018-07-26 02:16:06 +00:00
UpgradeCode="466fa35d-4be4-40ef-9ce5-afadc3b63bc5"
HelpUrl="https://github.com/moonlight-stream/moonlight-docs/wiki/Setup-Guide"
UpdateUrl="https://github.com/moonlight-stream/moonlight-qt/releases"
DisableModify="yes"
IconSourceFile="..\..\app\moonlight.ico">
<Variable Name="InstallFolder" Type="string" Value="[ProgramFilesFolder]Moonlight Game Streaming\" />
2018-07-25 09:53:51 +00:00
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense">
<bal:WixStandardBootstrapperApplication
ShowVersion="yes"
LicenseFile="license.rtf"
LogoFile="..\..\app\moonlight_wix.png"
ShowFilesInUse="yes"
2018-07-26 02:16:06 +00:00
LaunchTarget="[InstallFolder]Moonlight.exe" />
2018-07-25 09:53:51 +00:00
</BootstrapperApplicationRef>
2018-07-26 02:16:06 +00:00
2018-07-25 09:53:51 +00:00
<Chain>
2018-07-26 02:33:09 +00:00
<MsiPackage Id="Moonlight" SourceFile="$(var.Moonlight.TargetPath)" Vital="yes">
2018-07-26 02:16:06 +00:00
<MsiProperty Name="INSTALLFOLDER" Value="[InstallFolder]" />
</MsiPackage>
2018-07-25 09:53:51 +00:00
</Chain>
2018-07-26 02:16:06 +00:00
2018-07-25 09:53:51 +00:00
</Bundle>
</Wix>