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.
1 parent cd6cdea commit 388eef2Copy full SHA for 388eef2
src/lsptoolshost/roslynLanguageServer.ts
@@ -577,7 +577,13 @@ export class RoslynLanguageServer {
577
client.onRequest<RoslynProtocol.DebugAttachParams, RoslynProtocol.DebugAttachResult, void>(
578
RoslynProtocol.DebugAttachRequest.type,
579
async (request) => {
580
+ let debugOptions: any = vscode.workspace.getConfiguration('csharp').get('unitTestDebuggingOptions');
581
+ if (typeof debugOptions !== 'object') {
582
+ debugOptions = {};
583
+ }
584
+
585
const debugConfiguration: vscode.DebugConfiguration = {
586
+ ...debugOptions,
587
name: '.NET Core Attach',
588
type: 'coreclr',
589
request: 'attach',
0 commit comments