aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-07-13 15:30:21 -0700
committerRob Mensching <rob@firegiant.com>2018-07-13 15:30:21 -0700
commit0a078e422afac38598c026fed3d7abad582e1ddb (patch)
tree622f76829cb11d185f1ee2740b2c12ae3cbf2641 /src/WixToolset.Core
parentcb634e2e83d1aa44652a4bf5383fdd3e9ce7f2fc (diff)
downloadwix-0a078e422afac38598c026fed3d7abad582e1ddb.tar.gz
wix-0a078e422afac38598c026fed3d7abad582e1ddb.tar.bz2
wix-0a078e422afac38598c026fed3d7abad582e1ddb.zip
Add PostParse() method of IExtensionCommandLine
Fixes wixtoolset/issues#5850
Diffstat (limited to 'src/WixToolset.Core')
-rw-r--r--src/WixToolset.Core/CommandLine/CommandLineParser.cs5
1 files changed, 5 insertions, 0 deletions
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
323 } 323 }
324 } 324 }
325 325
326 foreach (var extension in extensions)
327 {
328 extension.PostParse();
329 }
330
326 return this; 331 return this;
327 } 332 }
328 333