Files
goTorrent/.vscode/tasks.json

23 lines
634 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"taskName": "Run Program",
"type": "shell",
"command": "go run main.go storage.go settings.go",
"problemMatcher": [
"$go"
]
},
{
"taskName": "goReleaser Snapshot",
"type": "shell",
"command": "C:/Users/deranjer/go/bin/goreleaser.exe -rm-dist -snapshot",
"problemMatcher": [
"$go"
]
}
]
}