{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "构建编译器 compile builder", "type": "shell", "command": "dotnet publish -c Release -o publish/", "group": "build", "presentation": { "echo": false, "reveal": "always", "focus": true, "panel": "shared", "showReuseMessage": false }, "problemMatcher": [] }, { "label": "构建编译器 (Debug模式) compile builder", "type": "shell", "command": "dotnet build", "group": "build", "presentation": { "echo": false, "reveal": "always", "focus": true, "panel": "shared", "showReuseMessage": false }, "problemMatcher": [] } ] }