aboutsummaryrefslogtreecommitdiff
path: root/src/wixcop/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixcop/Interfaces')
-rw-r--r--src/wixcop/Interfaces/IWixCopCommandLineParser.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/wixcop/Interfaces/IWixCopCommandLineParser.cs b/src/wixcop/Interfaces/IWixCopCommandLineParser.cs
new file mode 100644
index 00000000..2093f5d8
--- /dev/null
+++ b/src/wixcop/Interfaces/IWixCopCommandLineParser.cs
@@ -0,0 +1,11 @@
1using WixToolset.Extensibility.Data;
2
3namespace WixCop.Interfaces
4{
5 public interface IWixCopCommandLineParser
6 {
7 ICommandLineArguments Arguments { get; set; }
8
9 ICommandLineCommand ParseWixCopCommandLine();
10 }
11}