diff options
Diffstat (limited to 'src/wixcop/Interfaces')
-rw-r--r-- | src/wixcop/Interfaces/IWixCopCommandLineParser.cs | 11 |
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 @@ | |||
1 | using WixToolset.Extensibility.Data; | ||
2 | |||
3 | namespace WixCop.Interfaces | ||
4 | { | ||
5 | public interface IWixCopCommandLineParser | ||
6 | { | ||
7 | ICommandLineArguments Arguments { get; set; } | ||
8 | |||
9 | ICommandLineCommand ParseWixCopCommandLine(); | ||
10 | } | ||
11 | } | ||