Skip to content

Commit 11dafc2

Browse files
committed
Add initial launch and task configuration files for debugging
1 parent f697260 commit 11dafc2

2 files changed

Lines changed: 39 additions & 0 deletions

File tree

.vscode/launch.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Debug",
6+
"type": "coreclr",
7+
"request": "launch",
8+
"preLaunchTask": "build",
9+
"program": "${workspaceFolder}/Retroworks.RCBus/bin/Debug/net9.0/Retroworks.RCBus.dll",
10+
"args": [],
11+
"cwd": "${workspaceFolder}",
12+
"console": "internalConsole",
13+
"stopAtEntry": false,
14+
"internalConsoleOptions": "openOnSessionStart"
15+
},
16+
{
17+
"name": "Debug Attach",
18+
"type": "coreclr",
19+
"request": "attach",
20+
"processId": "${command:pickProcess}"
21+
}
22+
]
23+
}

.vscode/tasks.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"type": "dotnet",
7+
"task": "build",
8+
"args": ["${workspaceFolder}/Retroworks.RCBus/Retroworks.RCBus.csproj"],
9+
"group": {
10+
"kind": "build",
11+
"isDefault": true
12+
},
13+
"problemMatcher": "$msCompile"
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)