diff --git a/.vscode/launch.json b/.vscode/launch.json index 2f99098..b1ea163 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -47,6 +47,17 @@ "cwd": "${workspaceFolder}", "stopAtEntry": false, "console": "internalConsole" + }, + { + "name": "aoc-2024-05 Debug", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "dotnet: build aoc-2024-05", + "program": "${workspaceFolder}/artifacts/bin/aoc-2024-05/debug/aoc-2024-05.dll", + "args": ["part-one", "data/2024/05/dev.txt"], + "cwd": "${workspaceFolder}", + "stopAtEntry": false, + "console": "internalConsole" } ] } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json index ff6ee0c..b3fc837 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -34,6 +34,14 @@ "group": "build", "problemMatcher": [], "label": "dotnet: build aoc-2024-04" + }, + { + "type": "dotnet", + "task": "build aoc-2024-05.csproj", + "file": "src/2024/05/aoc-2024-05.csproj", + "group": "build", + "problemMatcher": [], + "label": "dotnet: build aoc-2024-05" } ] } \ No newline at end of file