diff --git a/.vscode/launch.json b/.vscode/launch.json index 907bd92..d1cd6d4 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -45,6 +45,17 @@ ], "console": "internalConsole", "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" } ] } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json index b29f2e8..3b7b591 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -23,6 +23,18 @@ "${workspaceFolder}/CakeBuild/CakeBuild.csproj" ], "problemMatcher": "$msCompile" + }, + { + "label": "build (Cake)", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "-c", + "Debug", + "${workspaceFolder}/CakeBuild/CakeBuild.csproj" + ], + "problemMatcher": "$msCompile" } ] } \ No newline at end of file