1
0
Fork 0
AdventOfCode/.vscode/tasks.json
2024-12-22 02:20:02 +01:00

55 lines
No EOL
1.7 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "dotnet",
"task": "build aoc-2024-01.csproj",
"file": "src/2024/01/aoc-2024-01.csproj",
"group": "build",
"problemMatcher": [],
"label": "dotnet: build aoc-2024-01"
},
{
"type": "dotnet",
"task": "build aoc-2024-02.csproj",
"file": "src/2024/02/aoc-2024-02.csproj",
"group": "build",
"problemMatcher": [],
"label": "dotnet: build aoc-2024-02"
},
{
"type": "dotnet",
"task": "build aoc-2024-03.csproj",
"file": "src/2024/03/aoc-2024-03.csproj",
"group": "build",
"problemMatcher": [],
"label": "dotnet: build aoc-2024-03"
},
{
"type": "dotnet",
"task": "build aoc-2024-04.csproj",
"file": "src/2024/04/aoc-2024-04.csproj",
"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"
},
{
"type": "dotnet",
"task": "build aoc-2024-06.csproj",
"file": "src/2024/06/aoc-2024-06.csproj",
"group": "build",
"problemMatcher": [],
"label": "dotnet: build aoc-2024-06"
}
]
}