Add you organization URL to the VS Code settings, login using your credentials and the team members will be loaded from Azure DevOps.
{
"azdo-teammembers.orgUrl": "https://dev.azure.com/[organization]"
}
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.
An autocomplete will trigger on the @
sign with the team member names, the guid reference will be inserted.
Add your team members to the VS Code settings.
{
"azdo-teammembers.teammembers": [
{
"guid": "f5b3c8dd-1c9d-4ddf-92f4-c52b195da01a",
"name": "John Doe"
}
]
}
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 extensionazdo-teammembers.cache-duration
: the number of seconds the cached objects are valid. Defaults to 24 hours.