-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlaunch.json
32 lines (32 loc) · 959 Bytes
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch Producer (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "buildProducer",
"program": "${workspaceFolder}/demos/producer/bin/Debug/netcoreapp3.1/producer.dll",
"args": [],
"cwd": "${workspaceFolder}/demos/producer",
"console": "integratedTerminal",
"stopAtEntry": false
}, {
"name": ".NET Core Launch Consuler (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "buildConsumer",
"program": "${workspaceFolder}/demos/consumer/bin/Debug/netcoreapp3.1/consumer.dll",
"args": [],
"cwd": "${workspaceFolder}/demos/consumer",
"console": "integratedTerminal",
"stopAtEntry": false
},
{
"name": "Attach to .NET Functions",
"type": "coreclr",
"request": "attach",
"processId": "${command:azureFunctions.pickProcess}"
}
]
}