aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CommandLine/ICommandLineCommand.cs
diff options
context:
space:
mode:
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}