Created
October 23, 2019 05:31
-
-
Save avestura/42ff89824e8a50994f708e01320e0283 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"manifestVersion": 1, | |
"id": "my-first-extension", | |
"publisher": "AryanEbrahimpour", | |
"version": "1.1.3", | |
"name": "My First Extension", | |
"description": "A sample Visual Studio Services extension", | |
"public": false, | |
"categories": ["Azure Repos"], | |
"targets": [ | |
{ | |
"id": "Microsoft.VisualStudio.Services" | |
} | |
], | |
"contributions": [ | |
{ | |
"id": "my-hub", | |
"type": "ms.vss-web.hub", | |
"targets": [ | |
"ms.vss-code-web.code-hub-group" | |
], | |
"properties": { | |
"name": "My Hub", | |
"uri": "my-hub.html" | |
} | |
}, | |
{ | |
"id": "sample-hub-group", | |
"type": "ms.vss-web.hub-group", | |
"description": "Adds a 'Sample UI' hub group", | |
"targets": [ | |
"ms.vss-web.project-hub-groups-collection" | |
], | |
"properties": { | |
"name": "System Group", | |
"order": 100, | |
"uri": "my-hub.html" | |
} | |
} | |
], | |
"scopes": ["vso.work"], | |
"files": [ | |
{ | |
"path": "my-hub.html", | |
"addressable": true | |
}, | |
{ | |
"path": "images/", | |
"addressable": true | |
}, | |
{ | |
"path": "node_modules/vss-web-extension-sdk/lib", | |
"addressable": true, | |
"packagePath": "lib" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment