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/WixToolset.Core | |
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/WixToolset.Core')
-rw-r--r-- | src/WixToolset.Core/Compiler.cs | 2 |
1 files changed, 1 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 | } |