aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Services/ICommandLineCommand.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-10-18 15:21:45 -0700
committerRob Mensching <rob@firegiant.com>2017-10-18 15:21:45 -0700
commit7efd412cda00b369bc331c9bedd8db971d98fee7 (patch)
tree20403b9a5372db2407200cefab1eed0bdcc19879 /src/WixToolset.Extensibility/Services/ICommandLineCommand.cs
parent475dd063933b8a23d8e47021e9b105a20699bbac (diff)
downloadwix-7efd412cda00b369bc331c9bedd8db971d98fee7.tar.gz
wix-7efd412cda00b369bc331c9bedd8db971d98fee7.tar.bz2
wix-7efd412cda00b369bc331c9bedd8db971d98fee7.zip
Incorporate refactoring of WixToolset.Core assemblies
Diffstat (limited to 'src/WixToolset.Extensibility/Services/ICommandLineCommand.cs')
-rw-r--r--src/WixToolset.Extensibility/Services/ICommandLineCommand.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Services/ICommandLineCommand.cs b/src/WixToolset.Extensibility/Services/ICommandLineCommand.cs
new file mode 100644
index 00000000..f2333c55
--- /dev/null
+++ b/src/WixToolset.Extensibility/Services/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.Extensibility.Services
4{
5 public interface ICommandLineCommand
6 {
7 int Execute();
8 }
9}