aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/tasks.ts
Commit message (Collapse)AuthorAgeFilesLines
* fix: fix shell injection in task spawningAleksey Kladov2021-05-311-6/+6
| | | | closes #9058
* Create tasks for all workspacesKirill Bulatov2021-05-251-11/+16
|
* Support 'runnables' options in the vs code extensionIgor Aleksanov2020-10-021-1/+9
|
* Fix ts lintsvsrs2020-06-241-2/+2
|
* Switch to ShellExecution instead of full Taskvsrs2020-06-241-40/+43
|
* Add custom cargo runnersvsrs2020-06-241-13/+41
|
* Change Runnable.bin -> Runnable.kindveetaha2020-05-311-2/+2
| | | | | | As per matklad, we now pass the responsibility for finding the binary to the frontend. Also, added caching for finding the binary path to reduce the amount of filesystem interactions.
* Fix invoking cargo without consulting CARGO or standard installation pathsveetaha2020-05-311-2/+5
|
* tasks.json SupportJonathan Dickinson2020-04-231-36/+67
| | | | | | | | Move the task provider anonymous class into a real class, as this seems to be how Microsoft do this in their documentation. resolveTask is now implemented, which is used by VSCode to determine how to execute tasks that the user has defined in tasks.json.
* Use namespace importTim2020-03-311-19/+11
|
* Add basic task supportTim2020-03-301-0/+60
This adds basic support for running `cargo build`, `cargo run`, etc.