You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 17, 2024. It is now read-only.
I'm improving an extension that currently only provides additional build tasks to include web contributions to display results of my tasks in the build summary and add a couple of contributions that will display specific tabs depending on the task that was defined in the build task.
I'm following the build-results-enhancer sample, and it's been very helpful so far. I already have everything implemented and working. The only thing is that I always get all the contributions displayed. I'm setting the supportsTasks property in the contribution that I want to display only if the correspondent task in in the build definition, but it is not working.
I have tried defining the task dependent contribution like in the example: { "id": "build-kiuwan-audit-results-tab", "type": "ms.vss-build-web.build-results-tab", "description": "A tab contributing to build results view and depends on Kiuwan delivery analysis task", "targets": [ "ms.vss-build-web.build-results-view" ], "properties": { "name": "Kiuwan Audit", "uri": "kiuwanAuditTab.html", "supportsTasks": ["4e6e25e3-c0b5-4986-8714-5c751945c15f"] } },
and tried using "id" within the supportsTasks property because it is hinted in the sample readme.md. Like this: { "id": "build-kiuwan-audit-results-tab", "type": "ms.vss-build-web.build-results-tab", "description": "A tab contributing to build results view and depends on Kiuwan delivery analysis task", "targets": [ "ms.vss-build-web.build-results-view" ], "properties": { "name": "Kiuwan Audit", "uri": "kiuwanAuditTab.html", "supportsTasks": { "id": ["4e6e25e3-c0b5-4986-8714-5c751945c15f"] } } },
None of this work. I always get the "Kiuwan Audit" contribution displayed independently if I use the task with defined task id or not.
Any help is appreciated. Best,
J.
The text was updated successfully, but these errors were encountered:
I tried to fix this issue and unfortunately, after trying every combination possible (new guid, lower/upper case...) linked to the TaskId, I came to the conclusion that "supportsTasks" property of a specific contribution doesn't work as intended.
mine is working fine for vnext builds but it shows up in all xaml builds the custom tab . why is no any enough documentation ,support or update for this topic from Microsoft for long time?
Hello,
I'm improving an extension that currently only provides additional build tasks to include web contributions to display results of my tasks in the build summary and add a couple of contributions that will display specific tabs depending on the task that was defined in the build task.
I'm following the build-results-enhancer sample, and it's been very helpful so far. I already have everything implemented and working. The only thing is that I always get all the contributions displayed. I'm setting the supportsTasks property in the contribution that I want to display only if the correspondent task in in the build definition, but it is not working.
I have tried defining the task dependent contribution like in the example:
{ "id": "build-kiuwan-audit-results-tab", "type": "ms.vss-build-web.build-results-tab", "description": "A tab contributing to build results view and depends on Kiuwan delivery analysis task", "targets": [ "ms.vss-build-web.build-results-view" ], "properties": { "name": "Kiuwan Audit", "uri": "kiuwanAuditTab.html", "supportsTasks": ["4e6e25e3-c0b5-4986-8714-5c751945c15f"] } },
and tried using "id" within the supportsTasks property because it is hinted in the sample readme.md. Like this:
{ "id": "build-kiuwan-audit-results-tab", "type": "ms.vss-build-web.build-results-tab", "description": "A tab contributing to build results view and depends on Kiuwan delivery analysis task", "targets": [ "ms.vss-build-web.build-results-view" ], "properties": { "name": "Kiuwan Audit", "uri": "kiuwanAuditTab.html", "supportsTasks": { "id": ["4e6e25e3-c0b5-4986-8714-5c751945c15f"] } } },
None of this work. I always get the "Kiuwan Audit" contribution displayed independently if I use the task with defined task id or not.
Any help is appreciated. Best,
J.
The text was updated successfully, but these errors were encountered: