aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CommandLine/CommandLineArguments.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-10-24 21:02:24 -0700
committerRob Mensching <rob@robmensching.com>2018-10-24 21:17:34 -0700
commita5c63c90a02665267c11c8bf2c653fd6db8d0107 (patch)
treeebd38c870168ec613bc36b0ddf9d34d9e6e78b8e /src/WixToolset.Core/CommandLine/CommandLineArguments.cs
parent0ecb2ac1ba28d33b0b3d17a2d7134d2f5485814d (diff)
downloadwix-a5c63c90a02665267c11c8bf2c653fd6db8d0107.tar.gz
wix-a5c63c90a02665267c11c8bf2c653fd6db8d0107.tar.bz2
wix-a5c63c90a02665267c11c8bf2c653fd6db8d0107.zip
Update to command-line parsing re-organization
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)