aboutsummaryrefslogtreecommitdiff
path: root/src/wixcop/CommandLine/ConvertCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/wixcop/CommandLine/ConvertCommand.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wixcop/CommandLine/ConvertCommand.cs b/src/wixcop/CommandLine/ConvertCommand.cs
index 8b01faa7..0a765771 100644
--- a/src/wixcop/CommandLine/ConvertCommand.cs
+++ b/src/wixcop/CommandLine/ConvertCommand.cs
@@ -14,7 +14,7 @@ namespace WixToolset.Tools.WixCop.CommandLine
14 { 14 {
15 private const string SettingsFileDefault = "wixcop.settings.xml"; 15 private const string SettingsFileDefault = "wixcop.settings.xml";
16 16
17 public ConvertCommand(IWixToolsetServiceProvider serviceProvider, bool fixErrors, int indentationAmount, List<string> searchPatterns, bool subDirectories, string settingsFile1, string settingsFile2) 17 public ConvertCommand(IWixToolsetServiceProvider serviceProvider, bool showLogo, bool fixErrors, int indentationAmount, List<string> searchPatterns, bool subDirectories, string settingsFile1, string settingsFile2)
18 { 18 {
19 this.ErrorsAsWarnings = new HashSet<string>(); 19 this.ErrorsAsWarnings = new HashSet<string>();
20 this.ExemptFiles = new HashSet<string>(); 20 this.ExemptFiles = new HashSet<string>();
@@ -26,6 +26,7 @@ namespace WixToolset.Tools.WixCop.CommandLine
26 this.ServiceProvider = serviceProvider; 26 this.ServiceProvider = serviceProvider;
27 this.SettingsFile1 = settingsFile1; 27 this.SettingsFile1 = settingsFile1;
28 this.SettingsFile2 = settingsFile2; 28 this.SettingsFile2 = settingsFile2;
29 this.ShowLogo = showLogo;
29 this.SubDirectories = subDirectories; 30 this.SubDirectories = subDirectories;
30 } 31 }
31 32
@@ -51,7 +52,7 @@ namespace WixToolset.Tools.WixCop.CommandLine
51 52
52 private bool SubDirectories { get; } 53 private bool SubDirectories { get; }
53 54
54 public bool ShowLogo => throw new NotImplementedException(); 55 public bool ShowLogo { get; }
55 56
56 public bool StopParsing => throw new NotImplementedException(); 57 public bool StopParsing => throw new NotImplementedException();
57 58