main
wxs 17 lines 1.01 KB
Raw
1 <?xml version="1.0" encoding="utf-8"?>
2 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <PackageGroup Id="BundlePackages">
5 <ExePackage DetectCondition="ForTestPurposesOnly" SourceFile="burn.exe" Permanent="yes">
6 <Payload Hash="4312abcef" Size="100000000" Name="reallybig.dat" DownloadUrl="example.com/reallybig.dat" />
7 </ExePackage>
8
9 <ExePackage Id="RemotePayloadExe" DetectCondition="ForTestPurposesOnly" Description="Override RemotePayload description"
10 DisplayName="Override RemotePayload display name" Permanent="yes">
11 <ExePackagePayload Description="RemotePayload description" Hash="a" ProductName="RemotePayload product name"
12 Size="1" Version="1.0.0.0" Name="fake.exe" DownloadUrl="example.com" />
13 <Payload Hash="bcadef" Size="1" Name="fake.txt" DownloadUrl="example.com/fake.txt" />
14 </ExePackage>
15 </PackageGroup>
16 </Fragment>
17 </Wix>