Release 1.0.28
OBDb Extension v1.0.28
Installation Instructions
Option 1: Install from VS Code Marketplace
- Open VS Code
- Go to Extensions view (Ctrl+Shift+X)
- Search for "clutchengineering.obdb-tooling"
- Click Install
Option 2: Install from VSIX
- Download the .vsix file from this release
- In VS Code, go to Extensions view (Ctrl+Shift+X)
- Click "..." at the top of the Extensions view
- Select "Install from VSIX..." and choose the downloaded file
Option 3: In devcontainers
Add to your devcontainer.json:
"customizations": {
"vscode": {
"extensions": [
"clutchengineering.obdb-tooling"
]
}
}Alternatively, to use a specific version from GitHub:
"customizations": {
"vscode": {
"extensions": [
"https://github.com/OBDb/vscode-obdb/releases/download/v1.0.28/obdb-tooling-1.0.28.vsix"
]
}
}