aboutsummaryrefslogtreecommitdiff
path: root/src/wixcop/CommandLine/ConvertCommand.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-05-08 21:53:58 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-05-08 22:11:35 +1000
commit70d112fb1ec23597b6365c3f80eec695c013960b (patch)
treee50e8845faede864ce85a684d8cb6778163a20cb /src/wixcop/CommandLine/ConvertCommand.cs
parent2eef1a51d1852a284cdd2c6fc1ba54c98ee1913b (diff)
downloadwix-70d112fb1ec23597b6365c3f80eec695c013960b.tar.gz
wix-70d112fb1ec23597b6365c3f80eec695c013960b.tar.bz2
wix-70d112fb1ec23597b6365c3f80eec695c013960b.zip
Implement ShowLogo in wixcop.
Diffstat (limited to 'src/wixcop/CommandLine/ConvertCommand.cs')
-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