MrTarantula

Results 9 comments of MrTarantula

I don't think this is possible with the extension SDK. Build tasks are executed locally on the build agent machine, in a Node environment. Extensions are loaded through an `iframe`...

This has to be a bug in the SDK. Here's the TS interface for 2.115.0, which is what I have installed: ```ts /** * @exemptedapi * [Preview API] * *...

A range would be nice as well, as in the range of versions that will work on a TFS version, for those of us that want to support older and...

I've had compatibility broken a few times. As an example, recently one of my extensions stopped working. At some point `witClient.getFields()` changed from return type `WorkItemComment[]` to `WorkItemComments` in VSTS,...

Oops, I mean `witClient.getComments()`.

From the [Core Rest client](https://www.visualstudio.com/fr-fr/docs/integrate/extensions/reference/client/api/tfs/core/restclient/corehttpclient2_2#method_getTeamMembers). `getTeamMembers` returns [`IdentityRef[]`](https://www.visualstudio.com/fr-fr/docs/integrate/extensions/reference/client/api/vss/webapi/contracts/identityref). ```ts import RestClient = require("TFS/Core/RestClient"); var rclient = RestClient.getClient(); rclient.getTeamMembers('projectId', 'teamId').then(members => { // your logic }); ```

If you're *certain* that the user is on the team, then you may be trying to work with the `IdentityRef[]` before the `Promise` has fully resolved. You can check by...

I am having the opposite problem in #44. I want a class and not an image. I never would have thought to wrap it in a promise. That's some very...

I am also having this problem. Deep links work on Android, but always open in browser on iOS. I am using a custom action as a workaround.