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/Package.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/Package.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/ForEach/Package.wxs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/ForEach/Package.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/ForEach/Package.wxs new file mode 100644 index 00000000..4bc7e2a4 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/ForEach/Package.wxs | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 3 | <Product Id="*" Name="MsiPackage" Language="1033" Version="1.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> | ||
| 4 | <Package InstallerVersion="200" Compressed="no" InstallScope="perMachine" /> | ||
| 5 | |||
| 6 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> | ||
| 7 | <MediaTemplate /> | ||
| 8 | |||
| 9 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> | ||
| 10 | <ComponentGroupRef Id="ProductComponents.x86" /> | ||
| 11 | <ComponentGroupRef Id="ProductComponents.x64" /> | ||
| 12 | <ComponentGroupRef Id="ProductComponents.arm" /> | ||
| 13 | </Feature> | ||
| 14 | </Product> | ||
| 15 | |||
| 16 | <Fragment> | ||
| 17 | <Directory Id="TARGETDIR" Name="SourceDir"> | ||
| 18 | <Directory Id="ProgramFilesFolder"> | ||
| 19 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> | ||
| 20 | </Directory> | ||
| 21 | </Directory> | ||
| 22 | </Fragment> | ||
| 23 | </Wix> | ||
