Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jfoshee/vscode-build-button

Adds a Build button to VS Code
https://github.com/jfoshee/vscode-build-button

vscode vscode-extension

Last synced: 14 days ago
JSON representation

Adds a Build button to VS Code

Awesome Lists containing this project

README

        

# Build Button

Adds a Build button to the Editor Toolbar (seen alongside the open document tabs).
This button simply runs the default configured Build task,
which is usually bound to Ctrl+Shift+B.

![Build button in light mode](images/snip-light.jpg)
![Build button in dark mode](images/snip-dark.jpg)

The default build task will be configured in `.vscode/tasks.json` like so:

```
"tasks": [
{
"group": {
"kind": "build",
"isDefault": true
}
...
```

## Known Issues

- The build button will still be present even when a default Build task is not configured. It will silently do nothing when clicked.

## Release Notes

### 1.0.0

Add Extension Icon

### 0.1.0

Initial release