1
0
Fork 0

Finish Day 08

This commit is contained in:
Jöran Malek 2024-12-25 02:03:42 +01:00
parent d9bc639366
commit 00bfb7d46e
11 changed files with 308 additions and 1 deletions

11
.vscode/launch.json vendored
View file

@ -80,6 +80,17 @@
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "aoc-2024-08 Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build aoc-2024-08",
"program": "${workspaceFolder}/artifacts/bin/aoc-2024-08/debug/aoc-2024-08.dll",
"args": ["part-one", "data/2024/08/dev.txt"],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
}
]
}

8
.vscode/tasks.json vendored
View file

@ -58,6 +58,14 @@
"group": "build",
"problemMatcher": [],
"label": "dotnet: build aoc-2024-07"
},
{
"type": "dotnet",
"task": "build aoc-2024-08.csproj",
"file": "src/2024/08/aoc-2024-08.csproj",
"group": "build",
"problemMatcher": [],
"label": "dotnet: build aoc-2024-08"
}
]
}