diff options
| author | Rob Mensching <rob@firegiant.com> | 2018-10-04 13:33:08 -0700 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2018-10-04 18:20:52 -0400 |
| commit | 240f3594db6f633ece6818afd28dde1e1ef6b36c (patch) | |
| tree | ab75f516217afa280944b2198a42c69b9a1b9cc0 /src/wixcop/Program.cs | |
| parent | 917bfd43985af3afaac0b3a1d97a89a58bde1f2f (diff) | |
| download | wix-240f3594db6f633ece6818afd28dde1e1ef6b36c.tar.gz wix-240f3594db6f633ece6818afd28dde1e1ef6b36c.tar.bz2 wix-240f3594db6f633ece6818afd28dde1e1ef6b36c.zip | |
Fix WixCop namespaces and some C# modernization
Diffstat (limited to 'src/wixcop/Program.cs')
| -rw-r--r-- | src/wixcop/Program.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wixcop/Program.cs b/src/wixcop/Program.cs index b26bd6c9..8e9534f6 100644 --- a/src/wixcop/Program.cs +++ b/src/wixcop/Program.cs | |||
| @@ -1,15 +1,15 @@ | |||
| 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. | 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 | ||
| 3 | namespace WixCop | 3 | namespace WixToolset.Tools.WixCop |
| 4 | { | 4 | { |
| 5 | using System; | 5 | using System; |
| 6 | using WixCop.CommandLine; | ||
| 7 | using WixCop.Interfaces; | ||
| 8 | using WixToolset.Core; | 6 | using WixToolset.Core; |
| 9 | using WixToolset.Extensibility; | 7 | using WixToolset.Extensibility; |
| 10 | using WixToolset.Extensibility.Data; | 8 | using WixToolset.Extensibility.Data; |
| 11 | using WixToolset.Extensibility.Services; | 9 | using WixToolset.Extensibility.Services; |
| 12 | using WixToolset.Tools.Core; | 10 | using WixToolset.Tools.Core; |
| 11 | using WixToolset.Tools.WixCop.CommandLine; | ||
| 12 | using WixToolset.Tools.WixCop.Interfaces; | ||
| 13 | 13 | ||
| 14 | /// <summary> | 14 | /// <summary> |
| 15 | /// Wix source code style inspector and converter. | 15 | /// Wix source code style inspector and converter. |
