oh-my-posh/.vscode/tasks.json
lnu 0bd33c6d21 feat: devcontainer config for vscode
allows to develop inside a container from vscode
persion pinned to bullseye/1.17
pwsh, fish, bash and zsh installed
pwsh set as default shell
default build task added
2021-10-18 16:12:51 +02:00

23 lines
525 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"cwd": "${workspaceRoot}",
"echoCommand": true,
"type": "shell",
"tasks": [
{
"type": "shell",
"command": "go",
"label": "build omp",
"options": { "cwd": "${workspaceRoot}/src" },
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$go",
"args": ["build", "-v", "-o", "bin/oh-my-posh"]
}
]
}