diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2019-01-20 21:32:05 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2019-01-20 21:42:02 -0600 |
commit | a5716c07a663cc31d2609d9481a72272ef77ba0b (patch) | |
tree | cc606d0d9d78d15d93b465d0bfe739918fb81789 /src/WixToolset.Core | |
parent | 214f53de1c6500aa8dd46e9604c90178807fda1a (diff) | |
download | wix-a5716c07a663cc31d2609d9481a72272ef77ba0b.tar.gz wix-a5716c07a663cc31d2609d9481a72272ef77ba0b.tar.bz2 wix-a5716c07a663cc31d2609d9481a72272ef77ba0b.zip |
Add DirectoryId into context for extensions.
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 02b04e5d..06a7dd10 100644 --- a/src/WixToolset.Core/Compiler.cs +++ b/src/WixToolset.Core/Compiler.cs | |||
@@ -5739,7 +5739,7 @@ namespace WixToolset.Core | |||
5739 | } | 5739 | } |
5740 | else | 5740 | else |
5741 | { | 5741 | { |
5742 | var context = new Dictionary<string, string>() { { "FileId", id.Id }, { "ComponentId", componentId }, { "Win64", win64Component.ToString() } }; | 5742 | var context = new Dictionary<string, string>() { { "FileId", id.Id }, { "ComponentId", componentId }, { "DirectoryId", directoryId }, { "Win64", win64Component.ToString() } }; |
5743 | this.Core.ParseExtensionElement(node, child, context); | 5743 | this.Core.ParseExtensionElement(node, child, context); |
5744 | } | 5744 | } |
5745 | } | 5745 | } |