https://github.com/rfverbruggen/azdo-teammembers
Auto completion and code lenses for Azure DevOps @mentions
https://github.com/rfverbruggen/azdo-teammembers
azure azure-devops typescript vscode vscode-extension
Last synced: 5 months ago
JSON representation
Auto completion and code lenses for Azure DevOps @mentions
- Host: GitHub
- URL: https://github.com/rfverbruggen/azdo-teammembers
- Owner: rfverbruggen
- License: mit
- Created: 2022-04-26T13:23:01.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2026-01-09T23:57:41.000Z (5 months ago)
- Last Synced: 2026-01-10T21:45:45.814Z (5 months ago)
- Topics: azure, azure-devops, typescript, vscode, vscode-extension
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=rfverbruggen.azdo-teammembers
- Size: 2.98 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Azure DevOps Team Members
[](https://github.com/rfverbruggen/azdo-teammembers/actions/workflows/ci.yml)
[](https://sonarcloud.io/summary/new_code?id=rfverbruggen_azdo-teammembers)
[](https://sonarcloud.io/summary/new_code?id=rfverbruggen_azdo-teammembers)
## Features
### Retrieve team members from Azure DevOps
Add you organization URL to the VS Code settings, login using your credentials and the team members will be loaded from Azure DevOps.
```json
{
"azdo-teammembers.orgUrl": "https://dev.azure.com/[organization]"
}
```
### Code lenses and hovers
The names will be added as CodeLenses above the line where a guid reference is used.
The name will be shown in a hover item when a guid is hovered.

### Autocompletion
An autocomplete will trigger on the `@` sign with the team member names, the guid reference will be inserted.

### Offline: Retrieve team members from your settings
Add your team members to the VS Code settings.
```json
{
"azdo-teammembers.teammembers": [
{
"guid": "f5b3c8dd-1c9d-4ddf-92f4-c52b195da01a",
"name": "John Doe"
}
]
}
```
## Extension Settings
This extension contributes the following settings:
- `azdo-teammembers.orgUrl`: add the url to your Azure DevOps organisation (e.g. `https://dev.azure.com/[organization]/`)
- `azdo-teammembers.teammembers`: add a list of team members to the extension
- `azdo-teammembers.cache-duration`: the number of seconds the cached objects are valid. Defaults to 24 hours.