aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CommandLine/CommandLineArguments.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/CommandLine/CommandLineArguments.cs')
-rw-r--r--src/WixToolset.Core/CommandLine/CommandLineArguments.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/CommandLine/CommandLineArguments.cs b/src/WixToolset.Core/CommandLine/CommandLineArguments.cs
index 2f8226df..5fa547b4 100644
--- a/src/WixToolset.Core/CommandLine/CommandLineArguments.cs
+++ b/src/WixToolset.Core/CommandLine/CommandLineArguments.cs
@@ -41,11 +41,11 @@ namespace WixToolset.Core.CommandLine
41 this.ProcessArgumentsAndParseExtensions(this.OriginalArguments); 41 this.ProcessArgumentsAndParseExtensions(this.OriginalArguments);
42 } 42 }
43 43
44 public IParseCommandLine Parse() 44 public ICommandLineParser Parse()
45 { 45 {
46 var messaging = (IMessaging)this.ServiceProvider.GetService(typeof(IMessaging)); 46 var messaging = (IMessaging)this.ServiceProvider.GetService(typeof(IMessaging));
47 47
48 return new ParseCommandLine(messaging, this.Arguments, this.ErrorArgument); 48 return new CommandLineParser(messaging, this.Arguments, this.ErrorArgument);
49 } 49 }
50 50
51 private void FlattenArgumentsWithResponseFilesIntoOriginalArguments(string[] commandLineArguments) 51 private void FlattenArgumentsWithResponseFilesIntoOriginalArguments(string[] commandLineArguments)