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

63 lines
2 KiB
JSON
Raw Normal View History

2024-12-20 00:09:26 +01:00
{
// 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"
2024-12-22 00:10:06 +01:00
},
{
"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"
2024-12-22 02:20:02 +01:00
},
{
"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"
2024-12-22 21:27:07 +01:00
},
{
"type": "dotnet",
"task": "build aoc-2024-07.csproj",
"file": "src/2024/07/aoc-2024-07.csproj",
"group": "build",
"problemMatcher": [],
"label": "dotnet: build aoc-2024-07"
2024-12-20 00:09:26 +01:00
}
]
}