You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Help users configure .vscode/tasks.json so it can do things like this, so the user can use Ctrl+Shift+B to build, and something to clean, and perhaps even run a compiled app, depending on the type of lake project, etc...
{
// See https://go.microsoft.com/fwlink/?LinkId=733558// for the documentation about the tasks.json format"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "lake build"
},
{
"label": "clean",
"type": "shell",
"command": "lake clean"
}
]
}
The text was updated successfully, but these errors were encountered:
This was implemented by #334, though using commands, not tasks. Tasks cannot be parameterized and you cannot obtain stdout/stderr output, making them too inconvenient.
Help users configure .vscode/tasks.json so it can do things like this, so the user can use Ctrl+Shift+B to build, and something to clean, and perhaps even run a compiled app, depending on the type of lake project, etc...
The text was updated successfully, but these errors were encountered: