aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2019-01-20 21:32:05 -0600
committerSean Hall <r.sean.hall@gmail.com>2019-01-20 21:42:02 -0600
commita5716c07a663cc31d2609d9481a72272ef77ba0b (patch)
treecc606d0d9d78d15d93b465d0bfe739918fb81789 /src/WixToolset.Core
parent214f53de1c6500aa8dd46e9604c90178807fda1a (diff)
downloadwix-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.cs2
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 }