diff options
-rw-r--r-- | src/WixToolset.Core/Compiler.cs | 2 | ||||
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/OverridableActions/Package.wxs | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs index a175bc77..ef8d68fd 100644 --- a/src/WixToolset.Core/Compiler.cs +++ b/src/WixToolset.Core/Compiler.cs | |||
@@ -13445,7 +13445,7 @@ namespace WixToolset.Core | |||
13445 | { | 13445 | { |
13446 | if (suppress) | 13446 | if (suppress) |
13447 | { | 13447 | { |
13448 | var row = this.Core.CreateRow(childSourceLineNumbers, TupleDefinitionType.WixSuppressAction); | 13448 | var row = this.Core.CreateRow(childSourceLineNumbers, TupleDefinitionType.WixSuppressAction, new Identifier(AccessModifier.Public, sequenceTable, actionName)); |
13449 | row.Set(0, sequenceTable); | 13449 | row.Set(0, sequenceTable); |
13450 | row.Set(1, actionName); | 13450 | row.Set(1, actionName); |
13451 | } | 13451 | } |
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" /> |