diff options
| author | Bob Arnson <bob@firegiant.com> | 2020-05-11 17:09:47 -0400 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2020-05-11 17:17:45 -0400 |
| commit | bac3d761d99fb7ae1012f3591baee2dbec115b28 (patch) | |
| tree | 852f30be8ba4b0bc4a2cbd3dfd703149f4d00d3d /src/test/WixToolsetTest.CoreIntegration/TestData/WixlibWithBinaries/PackageComponents.wxs | |
| parent | 93d3a9e1f9cdc05456a612e238a83738cfd1750f (diff) | |
| download | wix-bac3d761d99fb7ae1012f3591baee2dbec115b28.tar.gz wix-bac3d761d99fb7ae1012f3591baee2dbec115b28.tar.bz2 wix-bac3d761d99fb7ae1012f3591baee2dbec115b28.zip | |
Fix named bind paths.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/WixlibWithBinaries/PackageComponents.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/WixlibWithBinaries/PackageComponents.wxs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/WixlibWithBinaries/PackageComponents.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/WixlibWithBinaries/PackageComponents.wxs new file mode 100644 index 00000000..7d1a4ae1 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/WixlibWithBinaries/PackageComponents.wxs | |||
| @@ -0,0 +1,26 @@ | |||
| 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> | ||
