| 1234567891011121314151617181920212223242526272829303132 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build release",
- "type": "shell",
- "command": "\"C:\\Program Files\\sampctl\\sampctl\" package build release",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "isBackground": false,
- "presentation": {
- "reveal": "silent",
- "panel": "dedicated"
- },
- "problemMatcher": "$sampctl"
- },
- {
- "label": "build debug",
- "type": "shell",
- "command": "\"C:\\Program Files\\sampctl\\sampctl\" package build debug",
- "group": "build",
- "isBackground": false,
- "presentation": {
- "reveal": "silent",
- "panel": "dedicated"
- },
- "problemMatcher": "$sampctl"
- }
- ]
- }
|