ms.subservice | title | description | ms.assetid | ms.topic | monikerRange | ms.author | author | ms.date |
---|---|---|---|---|---|---|---|---|
azure-devops-ecosystem |
Add a Hub Group | Extensions for Azure DevOps |
Add a hub group in Azure DevOps for your extension. |
8186f578-27a0-4130-ace0-0279c863b1a5 |
conceptual |
<= azure-devops |
chcomley |
chcomley |
08/04/2016 |
[!INCLUDE version-lt-eq-azure-devops]
We'll create a hub group and add a hub to it. If you haven't already, create the Hello hub first, and then follow these steps to create the hub group.
[!INCLUDE Hub_group]
Here's the complete extension manifest with Hello in the samples hub group.
{
"namespace": "Fabrikam.myextension",
"name": "My Extension",
"description": "This is my first extension",
"version": "1.0",
"provider": {
"name": "Fabrikam Fiber Inc"
},
"baseUri": "https://localhost:port",
"icon": "images/logo.png",
"links": {
"info": "info.html",
"support": "support.html",
"termsOfService": "terms-of-service.html"
},
"contributions": {
"vss.web#hubGroups.project": [
{
"id": "samples",
"name": "Samples",
"order": 30
}
],
"vss.web#hubs": [
{
"id": "myhub",
"name": "Hello",
"groupId": "samples",
"uri": "hello-world.html"
}
]
}
}
[!INCLUDE extension-docs-new-sdk]