diff options
author | Rob Mensching <rob@firegiant.com> | 2017-10-07 15:07:20 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-10-07 15:07:20 -0700 |
commit | fbf986eb97f68396797a89fc7d40dec07b775440 (patch) | |
tree | 0ed7743a1ce95afc96aae5710479188bb5bdf08f /src/WixToolset.Core/CommandLine/ICommandLineCommand.cs | |
parent | 50bd11c35ebc48137eb01d69bdeb783c66479517 (diff) | |
download | wix-fbf986eb97f68396797a89fc7d40dec07b775440.tar.gz wix-fbf986eb97f68396797a89fc7d40dec07b775440.tar.bz2 wix-fbf986eb97f68396797a89fc7d40dec07b775440.zip |
Rename ICommand to ICommandLineCommand
Removes conflicts with existing ICommand. More refactoring coming.
Diffstat (limited to 'src/WixToolset.Core/CommandLine/ICommandLineCommand.cs')
-rw-r--r-- | src/WixToolset.Core/CommandLine/ICommandLineCommand.cs | 9 |
1 files changed, 9 insertions, 0 deletions
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 @@ | |||
1 | // 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. | ||
2 | |||
3 | namespace WixToolset.Core | ||
4 | { | ||
5 | public interface ICommandLineCommand | ||
6 | { | ||
7 | int Execute(); | ||
8 | } | ||
9 | } | ||