From a5716c07a663cc31d2609d9481a72272ef77ba0b Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Sun, 20 Jan 2019 21:32:05 -0600 Subject: Add DirectoryId into context for extensions. --- src/WixToolset.Core/Compiler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/WixToolset.Core') 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 } else { - var context = new Dictionary() { { "FileId", id.Id }, { "ComponentId", componentId }, { "Win64", win64Component.ToString() } }; + var context = new Dictionary() { { "FileId", id.Id }, { "ComponentId", componentId }, { "DirectoryId", directoryId }, { "Win64", win64Component.ToString() } }; this.Core.ParseExtensionElement(node, child, context); } } -- cgit v1.2.3-55-g6feb