diff options
author | Bob Arnson <bob@firegiant.com> | 2019-03-20 12:48:26 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2019-03-20 12:53:00 -0400 |
commit | 191027c6fb6bf50d2d4825a7b3b9cd7bcfaea0cd (patch) | |
tree | a756a0ad6e5232a89e5416bc461541fe07235f8c /src/test | |
parent | 615bc202834ac45a9a107e5fccd900081a4abf74 (diff) | |
download | wix-191027c6fb6bf50d2d4825a7b3b9cd7bcfaea0cd.tar.gz wix-191027c6fb6bf50d2d4825a7b3b9cd7bcfaea0cd.tar.bz2 wix-191027c6fb6bf50d2d4825a7b3b9cd7bcfaea0cd.zip |
Fix missing symbol for WixSuppressAction.
Exposes non-overridable standard actions so WixToolsetTest.CoreIntegration.LinkerFixture.CanBuildWithOverridableActions now fails.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/OverridableActions/Package.wxs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/OverridableActions/Package.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/OverridableActions/Package.wxs index d8743747..db773d17 100644 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/OverridableActions/Package.wxs +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/OverridableActions/Package.wxs | |||
@@ -7,6 +7,10 @@ | |||
7 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> | 7 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> |
8 | <MediaTemplate /> | 8 | <MediaTemplate /> |
9 | 9 | ||
10 | <InstallExecuteSequence> | ||
11 | <ValidateProductID Suppress="yes" /> | ||
12 | </InstallExecuteSequence> | ||
13 | |||
10 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> | 14 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> |
11 | <ComponentGroupRef Id="ProductComponents" /> | 15 | <ComponentGroupRef Id="ProductComponents" /> |
12 | <ComponentGroupRef Id="Foo1" /> | 16 | <ComponentGroupRef Id="Foo1" /> |