diff options
| author | Andrij Abyzov <aabyzov@slb.com> | 2021-03-04 00:43:32 +0100 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-03-05 07:38:37 -0800 |
| commit | 722ffb41bb83879d3e086b6faffd45ee38c5a5b6 (patch) | |
| tree | 5c4a3f6170b7bcedff029423533d66e02e0ed6e4 /src/test/WixToolsetTest.CoreIntegration/TestData/WixVariableOverride/PackageComponents.wxs | |
| parent | 816bfd180f132a9b07aaa573f5ac0f5948195764 (diff) | |
| download | wix-722ffb41bb83879d3e086b6faffd45ee38c5a5b6.tar.gz wix-722ffb41bb83879d3e086b6faffd45ee38c5a5b6.tar.bz2 wix-722ffb41bb83879d3e086b6faffd45ee38c5a5b6.zip | |
Create unit test for WixVariable resolution issue #6376
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/WixVariableOverride/PackageComponents.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/WixVariableOverride/PackageComponents.wxs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/WixVariableOverride/PackageComponents.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/WixVariableOverride/PackageComponents.wxs new file mode 100644 index 00000000..df867923 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/WixVariableOverride/PackageComponents.wxs | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 3 | <Fragment> | ||
| 4 | <Binary Id="Test.txt" SourceFile="!(wix.TestFile=test.txt)" /> | ||
| 5 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> | ||
| 6 | <Component> | ||
| 7 | <File Source="test.txt" /> | ||
| 8 | </Component> | ||
| 9 | <Component Id="Shared.dll" Shared="yes"> | ||
| 10 | <File Name="Shared.dll" Source="test.txt" /> | ||
| 11 | </Component> | ||
| 12 | </ComponentGroup> | ||
| 13 | </Fragment> | ||
| 14 | </Wix> | ||
