We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 73d1ad5 + 1db5dda commit 5ad22beCopy full SHA for 5ad22be
src/PowerShellEditorServices/Session/Capabilities/DscBreakpointCapability.cs
@@ -50,11 +50,11 @@ public async Task<List<BreakpointDetails>> SetLineBreakpoints(
50
.Select(file => $"@{{Path=\"{file.Key}\";Line=@({string.Join(",", file.Value)})}}"));
51
52
// Run Enable-DscDebug as a script because running it as a PSCommand
53
- // causes an error which states that the Breakpoints parameter has not
+ // causes an error which states that the Breakpoint parameter has not
54
// been passed.
55
await powerShellContext.ExecuteScriptString(
56
hashtableString.Length > 0
57
- ? $"Enable-DscDebug -Breakpoints {hashtableString}"
+ ? $"Enable-DscDebug -Breakpoint {hashtableString}"
58
: "Disable-DscDebug",
59
false,
60
false);
0 commit comments