Skip to content

Commit 023b5f7

Browse files
author
Cagri Aslan
committed
Change attach template to use processId by default
1 parent 1b725ba commit 023b5f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@
356356
"name": ".NET Core Attach",
357357
"type": "coreclr",
358358
"request": "attach",
359-
"processName": "<example>"
359+
"processId": 0
360360
}
361361
]
362362
}

src/assets.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ interface WebLaunchConfiguration extends ConsoleLaunchConfiguration {
4545
}
4646

4747
interface AttachConfiguration extends DebugConfiguration {
48-
processName: string
48+
processId: number
4949
}
5050

5151
interface Paths {
@@ -173,7 +173,7 @@ function createAttachConfiguration(): AttachConfiguration {
173173
name: '.NET Core Attach',
174174
type: 'coreclr',
175175
request: 'attach',
176-
processName: '<example>'
176+
processId: 0
177177
}
178178
}
179179

0 commit comments

Comments
 (0)