You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -519,7 +519,7 @@
519
519
}
520
520
},
521
521
{
522
-
"label": "Run Pester Tests (Binary Module)",
522
+
"label": "PowerShell: Run Pester Tests (Binary Module)",
523
523
"description": "Debug a .NET binary or hybrid module by running Pester tests. Breakpoints you set in your .NET (C#/F#/VB/etc.) code will be hit upon command execution. You may want to add a compile or watch action as a pre-launch task to this configuration.",
@@ -278,13 +278,23 @@ export class DebugSessionFeature
278
278
"Debug a .NET binary or hybrid module loaded into a PowerShell session. Breakpoints you set in your .NET (C#/F#/VB/etc.) code will be hit upon command execution. You may want to add a compile or watch action as a pre-launch task to this configuration.",
279
279
},
280
280
{
281
-
id: DebugConfig.RunPester,
281
+
id: DebugConfig.BinaryModulePester,
282
282
label: "Run Pester Tests (Binary Module)",
283
283
description:
284
284
"Debug a .NET binary or hybrid module by running Pester tests. Breakpoints you set in your .NET (C#/F#/VB/etc.) code will be hit upon command execution. You may want to add a compile or watch action as a pre-launch task to this configuration.",
285
-
},
285
+
}
286
286
];
287
287
288
+
// Only show the Windows PowerShell option if the platform is Windows
0 commit comments