mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-23 15:24:42 -05:00
22 lines
486 B
JSON
Executable File
22 lines
486 B
JSON
Executable File
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"type": "shell",
|
|
"command": "go",
|
|
"args": [
|
|
"build",
|
|
"-ldflags='-s -w'",
|
|
"-o",
|
|
"${workspaceFolder}/dist/sub2sing-box.exe",
|
|
"${workspaceFolder}/main.go"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
]
|
|
}
|