HelloDotNetCajun/.vscode/tasks.json
2026-04-09 22:19:40 -05:00

33 lines
531 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "dotnet",
"task": "build",
"group": "build",
"problemMatcher": [],
"label": "dotnet: build"
},
{
"type": "dotnet",
"task": "test",
"group": "test",
"problemMatcher": [],
"label": "dotnet: test"
},
{
"type": "dotnet",
"task": "publish",
"group": "build",
"problemMatcher": [],
"label": "dotnet: publish"
},
{
"type": "dotnet",
"task": "run",
"group": "build",
"problemMatcher": [],
"label": "dotnet: run"
}
]
}