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: about 2 months 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-11T19:10:26.000Z (about 2 years ago)
- Last Synced: 2025-05-08T03:49:20.322Z (about 2 months 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: 1
-
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.
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