Add DirectoryId into context for extensions.
Sean Hall committed
Jan 20, 2019 at 21:32 UTC
a5716c07a663cc31d2609d9481a72272ef77ba0b
1 file changed
+1
-1
src/WixToolset.Core/Compiler.cs
+1
-1
@@ -5739,7 +5739,7 @@ namespace WixToolset.Core
5739
}
5740
else
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);
5744
}
5745
}