Getting Shell on stylecop (#5620)

This commit is contained in:
Clint Rutkas
2020-08-04 16:27:35 -07:00
committed by GitHub
parent 1f590c45be
commit 296d103f68
4 changed files with 53 additions and 23 deletions

View File

@@ -1,4 +1,8 @@
using System.Collections.Generic;
// Copyright (c) Microsoft Corporation
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
namespace Microsoft.Plugin.Shell
{
@@ -6,12 +10,15 @@ namespace Microsoft.Plugin.Shell
{
public Shell Shell { get; set; } = Shell.RunCommand;
// not overriding Win+R
// not overriding Win+R
// crutkas we need to earn the right for Win+R override
public bool ReplaceWinR { get; set; } = false;
public bool LeaveShellOpen { get; set; }
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 void AddCmdHistory(string cmdName)
@@ -32,6 +39,5 @@ namespace Microsoft.Plugin.Shell
Cmd = 0,
Powershell = 1,
RunCommand = 2,
}
}