1
0
Fork 0
AdventOfCode/.vscode/launch.json

107 lines
4.3 KiB
JSON
Raw Normal View History

2024-12-20 00:09:26 +01:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "aoc-2024-01 Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build aoc-2024-01",
"program": "${workspaceFolder}/artifacts/bin/aoc-2024-01/debug/aoc-2024-01.dll",
2024-12-26 13:21:12 +01:00
"args": ["part-one", "test-results/2024/01/input.txt"],
2024-12-20 00:09:26 +01:00
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "aoc-2024-02 Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build aoc-2024-02",
"program": "${workspaceFolder}/artifacts/bin/aoc-2024-02/debug/aoc-2024-02.dll",
2024-12-26 13:21:12 +01:00
"args": ["part-two", "test-results/2024/02/dev.txt"],
2024-12-20 00:09:26 +01:00
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "aoc-2024-03 Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build aoc-2024-03",
"program": "${workspaceFolder}/artifacts/bin/aoc-2024-03/debug/aoc-2024-03.dll",
2024-12-26 13:21:12 +01:00
"args": ["part-two", "test-results/2024/03/dev2.txt"],
2024-12-20 00:09:26 +01:00
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "aoc-2024-04 Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build aoc-2024-04",
"program": "${workspaceFolder}/artifacts/bin/aoc-2024-04/debug/aoc-2024-04.dll",
2024-12-26 13:21:12 +01:00
"args": ["part-one", "test-results/2024/04/dev.txt"],
2024-12-20 00:09:26 +01:00
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
2024-12-22 00:10:06 +01:00
},
{
"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",
2024-12-26 13:21:12 +01:00
"args": ["part-one", "test-results/2024/05/dev.txt"],
2024-12-22 00:10:06 +01:00
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
2024-12-22 02:20:02 +01:00
},
{
"name": "aoc-2024-06 Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build aoc-2024-06",
"program": "${workspaceFolder}/artifacts/bin/aoc-2024-06/debug/aoc-2024-06.dll",
2024-12-26 13:21:12 +01:00
"args": ["part-two", "test-results/2024/06/dev.txt"],
2024-12-22 02:20:02 +01:00
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
2024-12-22 21:27:07 +01:00
},
{
"name": "aoc-2024-07 Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build aoc-2024-07",
"program": "${workspaceFolder}/artifacts/bin/aoc-2024-07/debug/aoc-2024-07.dll",
2024-12-26 13:21:12 +01:00
"args": ["part-two", "test-results/2024/07/dev.txt"],
2024-12-22 21:27:07 +01:00
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
2024-12-25 02:03:42 +01:00
},
{
"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",
2024-12-26 13:21:12 +01:00
"args": ["part-one", "test-results/2024/08/dev.txt"],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "aoc-2024-09 Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build aoc-2024-09",
"program": "${workspaceFolder}/artifacts/bin/aoc-2024-09/debug/aoc-2024-09.dll",
"args": ["part-one", "test-results/2024/09/dev.txt"],
2024-12-25 02:03:42 +01:00
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
2024-12-20 00:09:26 +01:00
}
]
}