Skip to content

Commit

Permalink
dotnet: Make local debug task name more descriptive on launch.json
Browse files Browse the repository at this point in the history
Signed-off-by: Andre Riesco <[email protected]>
  • Loading branch information
andreriesco committed Mar 6, 2024
1 parent 7f9cbda commit 3c52a54
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 15 deletions.
2 changes: 1 addition & 1 deletion aspnetBlazor/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": ".NET Core Launch (web)",
"name": "Local Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-debug-local",
Expand Down
7 changes: 1 addition & 6 deletions dotnetAvalonia/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": ".NET Core Launch (GTK)",
"name": "Local Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-debug-local",
Expand All @@ -17,11 +17,6 @@
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
},
{
"name": "Torizon AMD64",
"type": "coreclr",
Expand Down
2 changes: 1 addition & 1 deletion dotnetConsole/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": ".NET Core Launch (console)",
"name": "Local Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-debug-local",
Expand Down
2 changes: 1 addition & 1 deletion dotnetUno/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": "Debug Local",
"name": "Local Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-debug-local",
Expand Down
2 changes: 1 addition & 1 deletion dotnetUno5/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": "Debug Local",
"name": "Local Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-debug-local",
Expand Down
10 changes: 5 additions & 5 deletions templates.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"deprecated": false,
"tests": {
"debuggers": {
"local": [".NET Core Launch (console)"],
"local": ["Local Debug"],
"amd64": ["Torizon AMD64"],
"arm": ["Torizon ARMv7"],
"arm64": ["Torizon ARMv8"]
Expand All @@ -45,7 +45,7 @@
"deprecated": false,
"tests": {
"debuggers": {
"local": [".NET Core Launch (web)"],
"local": ["Local Debug"],
"amd64": ["Torizon AMD64"],
"arm": ["Torizon ARMv7"],
"arm64": ["Torizon ARMv8"]
Expand All @@ -69,7 +69,7 @@
"deprecated": false,
"tests": {
"debuggers": {
"local": [".NET Core Launch (GTK)"],
"local": ["Local Debug"],
"amd64": ["Torizon AMD64"],
"arm": ["Torizon ARMv7"],
"arm64": ["Torizon ARMv8"]
Expand Down Expand Up @@ -114,7 +114,7 @@
"deprecated": false,
"tests": {
"debuggers": {
"local": ["Debug Local"],
"local": ["Local Debug"],
"amd64": ["Torizon AMD64"],
"arm": ["Torizon ARMv7"],
"arm64": ["Torizon ARMv8"]
Expand All @@ -137,7 +137,7 @@
"deprecated": false,
"tests": {
"debuggers": {
"local": ["Debug Local"],
"local": ["Local Debug"],
"arm64": ["Torizon ARMv8"]
},
"debuggerConsole": null,
Expand Down

0 comments on commit 3c52a54

Please sign in to comment.