mirror of
https://github.com/amitbet/vncproxy.git
synced 2025-04-27 18:55:13 +00:00
added fbs recorder, and tested it against vine vnc server 5.0.1 and rfbplayer 1.4 —> works! (there is still some problem with tight VNC server)
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"version": "0.1.0",
|
|
"command": "go",
|
|
"isShellCommand": true,
|
|
"echoCommand": true,
|
|
"showOutput": "always",
|
|
// "showOutput": "silent",
|
|
"options": {
|
|
// "env": {
|
|
// "GOPATH": "/Users/lukeh/dd/go"
|
|
// }
|
|
},
|
|
"tasks": [
|
|
{
|
|
"taskName": "install",
|
|
"args": [
|
|
"-v",
|
|
"./..."
|
|
],
|
|
"osx": {
|
|
"options": {
|
|
"env": {
|
|
//"GOPATH": "${env.HOME}/Dropbox/go"
|
|
}
|
|
}
|
|
},
|
|
"windows": {
|
|
"options": {
|
|
"env": {
|
|
//"GOPATH": "${env.USERPROFILE}\\Dropbox\\go"
|
|
}
|
|
}
|
|
},
|
|
"isBuildCommand": true,
|
|
"problemMatcher": "$go"
|
|
},
|
|
{
|
|
"taskName": "test",
|
|
"args": [
|
|
"-v",
|
|
"./..."
|
|
],
|
|
"isTestCommand": true
|
|
}
|
|
]
|
|
} |