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 1b725ba commit 023b5f7Copy full SHA for 023b5f7
package.json
@@ -356,7 +356,7 @@
356
"name": ".NET Core Attach",
357
"type": "coreclr",
358
"request": "attach",
359
- "processName": "<example>"
+ "processId": 0
360
}
361
]
362
src/assets.ts
@@ -45,7 +45,7 @@ interface WebLaunchConfiguration extends ConsoleLaunchConfiguration {
45
46
47
interface AttachConfiguration extends DebugConfiguration {
48
- processName: string
+ processId: number
49
50
51
interface Paths {
@@ -173,7 +173,7 @@ function createAttachConfiguration(): AttachConfiguration {
173
name: '.NET Core Attach',
174
type: 'coreclr',
175
request: 'attach',
176
- processName: '<example>'
+ processId: 0
177
178
179
0 commit comments