aboutsummaryrefslogtreecommitdiff
path: root/src/wixcop/Interfaces
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2018-09-02 16:12:29 -0500
committerSean Hall <r.sean.hall@gmail.com>2018-09-13 12:05:57 -0500
commit244b46cf7f3252d6dc3884ce184be901d1d173e5 (patch)
treebd6fb4349b926001138d1a3415f93370d64e538f /src/wixcop/Interfaces
parent026d0af96fac5cd2d3d84ade657949ddc7144b99 (diff)
downloadwix-244b46cf7f3252d6dc3884ce184be901d1d173e5.tar.gz
wix-244b46cf7f3252d6dc3884ce184be901d1d173e5.tar.bz2
wix-244b46cf7f3252d6dc3884ce184be901d1d173e5.zip
Migrate WixCop into Tools from wix4.
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}