added vscode CakeBuild to launch.json

This commit is contained in:
Th3Dilli 2023-08-03 14:05:34 +02:00
parent 5c4a653915
commit 20bf001247
No known key found for this signature in database
GPG key ID: B952D7A5ACC404F2
2 changed files with 23 additions and 0 deletions

11
.vscode/launch.json vendored
View file

@ -45,6 +45,17 @@
], ],
"console": "internalConsole", "console": "internalConsole",
"stopAtEntry": false "stopAtEntry": false
},
{
"name": "CakeBuild",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build (Cake)",
"program": "${workspaceFolder}/CakeBuild/bin/Debug/net7.0/CakeBuild.dll",
"args": [],
"cwd": "${workspaceFolder}/CakeBuild",
"stopAtEntry": false,
"console": "internalConsole"
} }
] ]
} }

12
.vscode/tasks.json vendored
View file

@ -23,6 +23,18 @@
"${workspaceFolder}/CakeBuild/CakeBuild.csproj" "${workspaceFolder}/CakeBuild/CakeBuild.csproj"
], ],
"problemMatcher": "$msCompile" "problemMatcher": "$msCompile"
},
{
"label": "build (Cake)",
"command": "dotnet",
"type": "process",
"args": [
"build",
"-c",
"Debug",
"${workspaceFolder}/CakeBuild/CakeBuild.csproj"
],
"problemMatcher": "$msCompile"
} }
] ]
} }