@joebigelow / wix / commits / d3da4f5c

Add PostParse() method to IExtensionCommandLine

Fixes wixtoolset/issues#5850

Rob Mensching committed Jul 13, 2018 at 15:39 UTC d3da4f5cc6f07376a783ba4bdd03c3bb8dc5e480
1 file changed +2
src/WixToolset.Extensibility/IExtensionCommandLine.cs
+2
@@ -29,5 +29,7 @@ namespace WixToolset.Extensibility
29 void PreParse(ICommandLineContext context);
30
31 bool TryParseArgument(IParseCommandLine parseCommandLine, string arg);
32 +
33 + void PostParse();
34 }
35 }