main
wxs 17 lines 742 Bytes
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Bundle Name="RemotePayloadInBootstrapperApplication" Version="1.0.0.0" Manufacturer="test" UpgradeCode="{B04C20B8-70C3-4DE1-8D91-4F11C7C68DED}">
3 <BootstrapperApplicationRef Id="fakeba">
4 <PayloadGroupRef Id="RemotePayload" />
5 </BootstrapperApplicationRef>
6
7 <Chain>
8 <MsiPackage SourceFile="test.msi" DownloadUrl="http://example.com/{0}id/{1}/{2}" Compressed="no" />
9 </Chain>
10 </Bundle>
11
12 <Fragment>
13 <PayloadGroup Id="RemotePayload">
14 <Payload Id="RemotePayload" Name="someremotefile.txt" DownloadUrl="http://example.com/{0}id/{1}/{2}" Hash="abc" Size="123" />
15 </PayloadGroup>
16 </Fragment>
17 </Wix>