-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathwix_bundle.wxs
39 lines (29 loc) · 1.02 KB
/
wix_bundle.wxs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
<Bundle
Name="MScSim"
Version="0.4"
UpgradeCode="{7f01de83-b2ea-4a25-b76e-4703448a36c4}">
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense">
<bal:WixStandardBootstrapperApplication
LicenseFile="LICENSE.rtf"
LogoFile="mscsim.png"
ShowVersion="yes" />
</BootstrapperApplicationRef>
<Chain>
<PackageGroupRef Id="OpenAL"/>
<MsiPackage SourceFile="mscsim-0.4-win64.msi" />
</Chain>
</Bundle>
<Fragment>
<PackageGroup Id="OpenAL">
<ExePackage
SourceFile="oalinst.exe"
DetectCondition="ExeDetectedVariable"
InstallCommand="/q /ACTION=Install"
RepairCommand="/q ACTION=Repair /hideconsole"
UninstallCommand="/q ACTION=Uninstall /hideconsole" />
</PackageGroup>
</Fragment>
</Wix>