aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/SingleExeBundle/SingleExeRemotePayload.wxs
blob: 79ba52d2efbde9c1bf562ac4431a0e57fb94aea9 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
    <Fragment>
        <PackageGroup Id="BundlePackages">
            <ExePackage
                InstallArguments="/q /norestart /ChainingPackage &quot;[WixBundleName]&quot; /log &quot;[NetFx462FullLog].html&quot;"
                RepairArguments="/q /norestart /repair /ChainingPackage &quot;[WixBundleName]&quot; /log &quot;[NetFx462FullLog].html&quot;"
                UninstallArguments="/uninstall /q /norestart /ChainingPackage &quot;[WixBundleName]&quot; /log &quot;[NetFx462FullLog].html&quot;"
                PerMachine="yes"
                DetectCondition="A"
                InstallCondition="B"
                Id="NetFx462Web"
                Vital="yes"
                Permanent="yes"
                Protocol="netfx4"
                DownloadUrl="C"
                LogPathVariable="NetFx462FullLog"
                Compressed="no"
                Name="NDP462-KB3151802-Web.exe">
                <RemotePayload
                  Description="Microsoft .NET Framework 4.6.2 Setup"
                  Hash="C42E6ED280290648BBD59F664008852F4CFE4548"
                  ProductName="Microsoft .NET Framework 4.6.2"
                  Size="9223372036854775807"
                  Version="4.6.1590.0" />
            </ExePackage>
        </PackageGroup>
    </Fragment>
</Wix>