Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jfoshee/vscode-build-button
- Owner: jfoshee
- License: other
- Created: 2023-03-25T16:25:48.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-11T19:10:26.000Z (over 1 year ago)
- Last Synced: 2024-12-20T19:26:23.602Z (19 days ago)
- Topics: vscode, vscode-extension
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=ThoughtStuff.build-button
- Size: 81.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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