incorrect override of SA1401 (#5965)

This commit is contained in:
Clint Rutkas
2020-08-14 12:41:55 -07:00
committed by GitHub
parent e4f9c02d11
commit be5d58c849

View File

@@ -18,8 +18,7 @@ namespace Microsoft.Plugin.Shell
public bool RunAsAdministrator { get; set; } = false;
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1401:Fields should be private", Justification = "StyleCop error, actually used in main.cs")]
public Dictionary<string, int> Count = new Dictionary<string, int>();
public Dictionary<string, int> Count { get; set; } = new Dictionary<string, int>();
public void AddCmdHistory(string cmdName)
{