diff options
| author | Bob Arnson <bob@firegiant.com> | 2018-09-18 17:52:39 -0400 |
|---|---|---|
| committer | Rob Mensching <rob@robmensching.com> | 2018-09-18 15:04:08 -0700 |
| commit | cd1709996876ac1d6ff5750cd573b9be78313a9e (patch) | |
| tree | df936ce0d8e865537408a3d80ab3c6c2ce38ac60 /src/test/WixToolsetTest.CoreIntegration/TestData/ForEach/PackageComponents.wxs | |
| parent | 954b7179a06c1933ae783b602bc29caa0370aec0 (diff) | |
| download | wix-cd1709996876ac1d6ff5750cd573b9be78313a9e.tar.gz wix-cd1709996876ac1d6ff5750cd573b9be78313a9e.tar.bz2 wix-cd1709996876ac1d6ff5750cd573b9be78313a9e.zip | |
Fix ?foreach? so all loop values get "executed."
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/ForEach/PackageComponents.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/ForEach/PackageComponents.wxs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/ForEach/PackageComponents.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/ForEach/PackageComponents.wxs new file mode 100644 index 00000000..2a75e3d7 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/ForEach/PackageComponents.wxs | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 3 | <?foreach ComponentPlatform in x86;x64;arm ?> | ||
| 4 | <Fragment> | ||
| 5 | <ComponentGroup Id="ProductComponents.$(var.ComponentPlatform)" Directory="INSTALLFOLDER"> | ||
| 6 | <Component> | ||
| 7 | <File Name="$(var.ComponentPlatform).dll" Source="test.txt" /> | ||
| 8 | </Component> | ||
| 9 | </ComponentGroup> | ||
| 10 | </Fragment> | ||
| 11 | <?endforeach?> | ||
| 12 | </Wix> | ||
