aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Bal/test/examples/EarliestCoreBundleSCD/SelfContainedBundle.wxs
blob: 68b697e72946fc7ce954414d1c1a2ecc2d269829 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
    <Bundle Name="SCDEarliestCoreMBA" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="5CE5B5C7-4B6B-4B95-B297-731F1F956533">
        <BootstrapperApplication SourceFile="!(bindpath.ba.payloads)\Example.EarliestCoreMBA.exe">
            <Payloads Include="!(bindpath.ba.payloads)\**">
              <Exclude Files="!(bindpath.ba.payloads)\Example.EarliestCoreMBA.exe" />
            </Payloads>
        </BootstrapperApplication>

        <Chain>
            <ExePackage DetectCondition="none" UninstallArguments="-foo" SourceFile="..\.data\notanexe.exe"  PerMachine="yes" />
        </Chain>
    </Bundle>
</Wix>