mirror of
https://github.com/actions/runner.git
synced 2025-12-11 12:57:05 +00:00
* Solving issue with debugging on macOS M1 * Fixing problem with debugging on macOS M1 * Adding targetArchitecture in launch.json configs * Code refactor
64 lines
1.9 KiB
JSON
64 lines
1.9 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run [build]",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"preLaunchTask": "build runner layout",
|
|
"program": "${workspaceFolder}/_layout/bin/Runner.Listener",
|
|
"args": [
|
|
"run"
|
|
],
|
|
"cwd": "${workspaceFolder}/src",
|
|
"console": "integratedTerminal",
|
|
"requireExactSource": false,
|
|
"targetArchitecture": "x86_64"
|
|
},
|
|
{
|
|
"name": "Run",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/_layout/bin/Runner.Listener",
|
|
"args": [
|
|
"run"
|
|
],
|
|
"cwd": "${workspaceFolder}/src",
|
|
"console": "integratedTerminal",
|
|
"requireExactSource": false,
|
|
"targetArchitecture": "x86_64"
|
|
},
|
|
{
|
|
"name": "Configure",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"preLaunchTask": "create runner layout",
|
|
"program": "${workspaceFolder}/_layout/bin/Runner.Listener",
|
|
"args": [
|
|
"configure"
|
|
],
|
|
"cwd": "${workspaceFolder}/src",
|
|
"console": "integratedTerminal",
|
|
"requireExactSource": false,
|
|
"targetArchitecture": "x86_64"
|
|
},
|
|
{
|
|
"name": "Debug Worker",
|
|
"type": "coreclr",
|
|
"request": "attach",
|
|
"processName": "Runner.Worker",
|
|
"requireExactSource": false,
|
|
"targetArchitecture": "x86_64"
|
|
},
|
|
{
|
|
"name": "Attach Debugger",
|
|
"type": "coreclr",
|
|
"request": "attach",
|
|
"processId": "${command:pickProcess}",
|
|
"requireExactSource": false,
|
|
"targetArchitecture": "x86_64"
|
|
},
|
|
],
|
|
}
|
|
|