Rename tasks and run configs

This commit is contained in:
Ferenc Hammerl
2021-05-26 16:27:22 +02:00
parent 7db191ee71
commit 695b75c3fe
2 changed files with 30 additions and 48 deletions

34
.vscode/launch.json vendored
View File

@@ -5,23 +5,14 @@
"version": "0.2.0",
"configurations": [
{
"name": "Deploy and Configure",
"name": "Run [build]",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "deploy to _layout",
"preLaunchTask": "build runner layout",
"program": "${workspaceFolder}/_layout/bin/Runner.Listener",
"args": ["configure"],
"cwd": "${workspaceFolder}/src",
"console": "integratedTerminal",
"requireExactSource": false,
},
{
"name": "Build and Run",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build to _layout",
"program": "${workspaceFolder}/_layout/bin/Runner.Listener",
"args": ["run"],
"args": [
"run"
],
"cwd": "${workspaceFolder}/src",
"console": "integratedTerminal",
"requireExactSource": false,
@@ -31,21 +22,26 @@
"type": "coreclr",
"request": "launch",
"program": "${workspaceFolder}/_layout/bin/Runner.Listener",
"args": ["run"],
"args": [
"run"
],
"cwd": "${workspaceFolder}/src",
"console": "integratedTerminal",
"requireExactSource": false,
},
},
{
"name": "Configure",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "create runner layout",
"program": "${workspaceFolder}/_layout/bin/Runner.Listener",
"args": ["configure"],
"args": [
"configure"
],
"cwd": "${workspaceFolder}/src",
"console": "integratedTerminal",
"requireExactSource": false,
},
},
{
"name": ".NET Core Attach",
"type": "coreclr",
@@ -54,4 +50,4 @@
"requireExactSource": false,
},
],
}
}