From fd5be6d04ec954de415a6a0f3095f04ed0dc9072 Mon Sep 17 00:00:00 2001 From: Clint Rutkas Date: Wed, 1 Apr 2026 20:41:59 -0700 Subject: [PATCH] Fix SA1614: Add text to empty parameter documentation (#46706) Add meaningful descriptions to 3 empty param XML doc tags in BaseDscTest.cs and ShellHelpers.cs. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/dsc/v3/PowerToys.DSC.UnitTests/BaseDscTest.cs | 2 +- .../ShellHelpers.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dsc/v3/PowerToys.DSC.UnitTests/BaseDscTest.cs b/src/dsc/v3/PowerToys.DSC.UnitTests/BaseDscTest.cs index f8086e8165..00845f11d9 100644 --- a/src/dsc/v3/PowerToys.DSC.UnitTests/BaseDscTest.cs +++ b/src/dsc/v3/PowerToys.DSC.UnitTests/BaseDscTest.cs @@ -36,7 +36,7 @@ public class BaseDscTest /// Execute a dsc command with the provided arguments. /// /// The type of the DSC command to execute. - /// + /// The command-line arguments to pass to the DSC command. /// The result of the DSC command execution. protected DscExecuteResult ExecuteDscCommand(params string[] args) where T : Command, new() diff --git a/src/modules/cmdpal/extensionsdk/Microsoft.CommandPalette.Extensions.Toolkit/ShellHelpers.cs b/src/modules/cmdpal/extensionsdk/Microsoft.CommandPalette.Extensions.Toolkit/ShellHelpers.cs index 09c5ba2a89..a2b23899e1 100644 --- a/src/modules/cmdpal/extensionsdk/Microsoft.CommandPalette.Extensions.Toolkit/ShellHelpers.cs +++ b/src/modules/cmdpal/extensionsdk/Microsoft.CommandPalette.Extensions.Toolkit/ShellHelpers.cs @@ -246,8 +246,8 @@ public static class ShellHelpers /// /// Mimics Windows Shell behavior to resolve an executable name to a full path. /// - /// - /// + /// The name of the executable to resolve. + /// When this method returns, contains the full path to the executable if found; otherwise, . /// if the executable was resolved to a full path; otherwise, . public static bool TryResolveExecutableAsShell(string name, out string fullPath) {