From 0a078e422afac38598c026fed3d7abad582e1ddb Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Fri, 13 Jul 2018 15:30:21 -0700 Subject: Add PostParse() method of IExtensionCommandLine Fixes wixtoolset/issues#5850 --- src/WixToolset.Core/CommandLine/CommandLineParser.cs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/WixToolset.Core') diff --git a/src/WixToolset.Core/CommandLine/CommandLineParser.cs b/src/WixToolset.Core/CommandLine/CommandLineParser.cs index da0e979c..65aea1fc 100644 --- a/src/WixToolset.Core/CommandLine/CommandLineParser.cs +++ b/src/WixToolset.Core/CommandLine/CommandLineParser.cs @@ -323,6 +323,11 @@ namespace WixToolset.Core.CommandLine } } + foreach (var extension in extensions) + { + extension.PostParse(); + } + return this; } -- cgit v1.2.3-55-g6feb