| 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 3 | <Fragment> |
| 4 | <Binary Id="FooAlpha" SourceFile="!(bindpath.AlphaBits)foo.dll" /> |
| 5 | </Fragment> |
| 6 | |
| 7 | <Fragment> |
| 8 | <Binary Id="FooMips" SourceFile="!(bindpath.MipsBits)foo.dll" /> |
| 9 | </Fragment> |
| 10 | |
| 11 | <Fragment> |
| 12 | <Binary Id="FooPowerPC" SourceFile="!(bindpath.PowerBits)foo.dll" /> |
| 13 | </Fragment> |
| 14 | |
| 15 | <Fragment> |
| 16 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> |
| 17 | <Component> |
| 18 | <File Source="test.txt" /> |
| 19 | </Component> |
| 20 | |
| 21 | <Component Id="Shared.dll" Shared="yes"> |
| 22 | <File Name="Shared.dll" Source="test.txt" /> |
| 23 | </Component> |
| 24 | </ComponentGroup> |
| 25 | </Fragment> |
| 26 | </Wix> |