aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CommandLine/ICommandLineCommand.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-10-07 15:07:20 -0700
committerRob Mensching <rob@firegiant.com>2017-10-07 15:07:20 -0700
commitfbf986eb97f68396797a89fc7d40dec07b775440 (patch)
tree0ed7743a1ce95afc96aae5710479188bb5bdf08f /src/WixToolset.Core/CommandLine/ICommandLineCommand.cs
parent50bd11c35ebc48137eb01d69bdeb783c66479517 (diff)
downloadwix-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.cs9
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
3namespace WixToolset.Core
4{
5 public interface ICommandLineCommand
6 {
7 int Execute();
8 }
9}