I created a new extension for TFS after the MS tutorial. For some reason, when I add an Icon to my extension, I see this icon when I install the extension on the "Extension Manager" page,
But when I select the extension from the build step menu, the image is missing .
In the file "vss-extension.json" I added:
"icons": {
"default": "images/icon.png"
},
"files": [
{
"path": "images",
"addressable": true
},
{
"path": "dist",
"addressable": true,
"packagePath": "scripts"
},
{
"path": "infoTab.html",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
},
{
"path": "buildtask"
}
],
32x32 Image File
Should this image be a link in the "task.json" file?
source
share