From fbf986eb97f68396797a89fc7d40dec07b775440 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sat, 7 Oct 2017 15:07:20 -0700 Subject: Rename ICommand to ICommandLineCommand Removes conflicts with existing ICommand. More refactoring coming. --- src/WixToolset.Core/CommandLine/ICommandLineCommand.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/WixToolset.Core/CommandLine/ICommandLineCommand.cs (limited to 'src/WixToolset.Core/CommandLine/ICommandLineCommand.cs') diff --git a/src/WixToolset.Core/CommandLine/ICommandLineCommand.cs b/src/WixToolset.Core/CommandLine/ICommandLineCommand.cs new file mode 100644 index 00000000..f1471355 --- /dev/null +++ b/src/WixToolset.Core/CommandLine/ICommandLineCommand.cs @@ -0,0 +1,9 @@ +// 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.Core +{ + public interface ICommandLineCommand + { + int Execute(); + } +} -- cgit v1.2.3-55-g6feb