Skip to content

Release 1.0.28

Choose a tag to compare

@github-actions github-actions released this 20 Jan 19:54
· 11 commits to main since this release
a3d8281

OBDb Extension v1.0.28

Installation Instructions

Option 1: Install from VS Code Marketplace

  1. Open VS Code
  2. Go to Extensions view (Ctrl+Shift+X)
  3. Search for "clutchengineering.obdb-tooling"
  4. Click Install

Option 2: Install from VSIX

  1. Download the .vsix file from this release
  2. In VS Code, go to Extensions view (Ctrl+Shift+X)
  3. Click "..." at the top of the Extensions view
  4. 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"
    ]
  }
}