From 59e0fda78f52bc34250a84be59c24d2588a8ea45 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Mon, 23 Jul 2018 14:19:59 -0700 Subject: Rename ICommandLine to ICommandLineParser --- src/WixToolset.Extensibility/Services/ICommandLine.cs | 15 --------------- .../Services/ICommandLineParser.cs | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 15 deletions(-) delete mode 100644 src/WixToolset.Extensibility/Services/ICommandLine.cs create mode 100644 src/WixToolset.Extensibility/Services/ICommandLineParser.cs (limited to 'src') diff --git a/src/WixToolset.Extensibility/Services/ICommandLine.cs b/src/WixToolset.Extensibility/Services/ICommandLine.cs deleted file mode 100644 index 48f3620f..00000000 --- a/src/WixToolset.Extensibility/Services/ICommandLine.cs +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. - -namespace WixToolset.Extensibility.Services -{ - using WixToolset.Extensibility.Data; - - public interface ICommandLine - { - IExtensionManager ExtensionManager { get; set; } - - ICommandLineArguments Arguments { get; set; } - - ICommandLineCommand ParseStandardCommandLine(); - } -} diff --git a/src/WixToolset.Extensibility/Services/ICommandLineParser.cs b/src/WixToolset.Extensibility/Services/ICommandLineParser.cs new file mode 100644 index 00000000..60507c6c --- /dev/null +++ b/src/WixToolset.Extensibility/Services/ICommandLineParser.cs @@ -0,0 +1,15 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. + +namespace WixToolset.Extensibility.Services +{ + using WixToolset.Extensibility.Data; + + public interface ICommandLineParser + { + IExtensionManager ExtensionManager { get; set; } + + ICommandLineArguments Arguments { get; set; } + + ICommandLineCommand ParseStandardCommandLine(); + } +} -- cgit v1.2.3-55-g6feb