aboutsummaryrefslogtreecommitdiff
path: root/src/wixcop/Interfaces
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-10-04 13:33:08 -0700
committerBob Arnson <bob@firegiant.com>2018-10-04 18:20:52 -0400
commit240f3594db6f633ece6818afd28dde1e1ef6b36c (patch)
treeab75f516217afa280944b2198a42c69b9a1b9cc0 /src/wixcop/Interfaces
parent917bfd43985af3afaac0b3a1d97a89a58bde1f2f (diff)
downloadwix-240f3594db6f633ece6818afd28dde1e1ef6b36c.tar.gz
wix-240f3594db6f633ece6818afd28dde1e1ef6b36c.tar.bz2
wix-240f3594db6f633ece6818afd28dde1e1ef6b36c.zip
Fix WixCop namespaces and some C# modernization
Diffstat (limited to 'src/wixcop/Interfaces')
-rw-r--r--src/wixcop/Interfaces/IWixCopCommandLineParser.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wixcop/Interfaces/IWixCopCommandLineParser.cs b/src/wixcop/Interfaces/IWixCopCommandLineParser.cs
index 2093f5d8..44c75289 100644
--- a/src/wixcop/Interfaces/IWixCopCommandLineParser.cs
+++ b/src/wixcop/Interfaces/IWixCopCommandLineParser.cs
@@ -1,7 +1,9 @@
1using WixToolset.Extensibility.Data; 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 2
3namespace WixCop.Interfaces 3namespace WixToolset.Tools.WixCop.Interfaces
4{ 4{
5 using WixToolset.Extensibility.Data;
6
5 public interface IWixCopCommandLineParser 7 public interface IWixCopCommandLineParser
6 { 8 {
7 ICommandLineArguments Arguments { get; set; } 9 ICommandLineArguments Arguments { get; set; }