| 1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> |
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 3 | <Fragment> |
| 4 | <PayloadGroup Id="TestExePayloads"> |
| 5 | <ExePackagePayload SourceFile="!(bindpath.net2x86)\TestExe.exe" /> |
| 6 | <Payload SourceFile="!(bindpath.net2x86)\TestExe.exe.config" /> |
| 7 | </PayloadGroup> |
| 8 | </Fragment> |
| 9 | |
| 10 | <Fragment> |
| 11 | <Component Id="TestExeComponent" Directory="INSTALLFOLDER"> |
| 12 | <File Source="!(bindpath.net2x86)\TestExe.exe" KeyPath="yes" /> |
| 13 | <File Source="!(bindpath.net2x86)\TestExe.exe.config" /> |
| 14 | </Component> |
| 15 | </Fragment> |
| 16 | </Wix> |