This repository has been archived on 2023-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
nimcord/.vscode/tasks.json

20 lines
531 B
JSON
Raw Normal View History

2020-05-30 04:59:23 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"taskName": "Run client.nim",
"command": "nim",
"args": ["c", "-d:ssl", "-r", "src/client.nim"],
"options": {
"cwd": "${workspaceRoot}"
},
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}