From 244b46cf7f3252d6dc3884ce184be901d1d173e5 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Sun, 2 Sep 2018 16:12:29 -0500 Subject: Migrate WixCop into Tools from wix4. --- src/wixcop/Interfaces/IWixCopCommandLineParser.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/wixcop/Interfaces/IWixCopCommandLineParser.cs (limited to 'src/wixcop/Interfaces') 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 @@ +using WixToolset.Extensibility.Data; + +namespace WixCop.Interfaces +{ + public interface IWixCopCommandLineParser + { + ICommandLineArguments Arguments { get; set; } + + ICommandLineCommand ParseWixCopCommandLine(); + } +} -- cgit v1.2.3-55-g6feb