Skip to content

Commit 7193f18

Browse files
committed
split arguments to prevent long argument issue
1 parent b92e0b6 commit 7193f18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function debugDotnetTest(testMethod: string, fileName: string, server: Omnisharp
4848
"type": "coreclr",
4949
"request": "launch",
5050
"program": response.Executable,
51-
"args": [response.Argument],
51+
"args": response.Argument.split(' '),
5252
"cwd": "${workspaceRoot}",
5353
"stopAtEntry": false
5454
}

0 commit comments

Comments
 (0)