new/init | Version tag in tasks.json should be in lowercase
pieterclaerhout opened this issue · 0 comments
pieterclaerhout commented
Wrong:
{
"Version": "2.0.0",
"tasks": [
{
"label": "go-james | build",
"command": "./build/go-james build",
"type": "shell",
"group": "build",
"problemMatcher": [
"$go"
]
}
]
}
Correct:
{
"version": "2.0.0",
"tasks": [
{
"label": "go-james | build",
"command": "./build/go-james build",
"type": "shell",
"group": "build",
"problemMatcher": [
"$go"
]
}
]
}