diff options
author | Rob Mensching <rob@firegiant.com> | 2017-12-12 12:08:51 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-12-12 12:08:51 -0800 |
commit | 6f1665ed759b31bd095f186f9239232c653597cd (patch) | |
tree | d7ee0b9b903d18c0cfa754f4609ca9ffb1aabb19 /src/WixToolset.Core/Compiler.cs | |
parent | 6e9c25cb45cb59b4790ec3c32ee40d2077da521c (diff) | |
download | wix-6f1665ed759b31bd095f186f9239232c653597cd.tar.gz wix-6f1665ed759b31bd095f186f9239232c653597cd.tar.bz2 wix-6f1665ed759b31bd095f186f9239232c653597cd.zip |
Fix handling of WixAction scheduling
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-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 ac3f3fe1..78461b44 100644 --- a/src/WixToolset.Core/Compiler.cs +++ b/src/WixToolset.Core/Compiler.cs | |||
@@ -13462,7 +13462,7 @@ namespace WixToolset.Core | |||
13462 | } | 13462 | } |
13463 | else | 13463 | else |
13464 | { | 13464 | { |
13465 | var row = this.Core.CreateRow(childSourceLineNumbers, TupleDefinitionType.WixAction); | 13465 | var row = this.Core.CreateRow(childSourceLineNumbers, TupleDefinitionType.WixAction, new Identifier($"{sequenceTable}/{actionName}", AccessModifier.Public)); |
13466 | row.Set(0, sequenceTable); | 13466 | row.Set(0, sequenceTable); |
13467 | row.Set(1, actionName); | 13467 | row.Set(1, actionName); |
13468 | row.Set(2, condition); | 13468 | row.Set(2, condition); |