brionrogers
brionrogers

Reputation: 3

Programmatically Editing a TFS Work Item Field from an OS X Application

Doing some research for a student project we're working on (only looking for advice here!) and I was hoping I might field some questions about interacting with TFS from an OS X machine. Our end goal is to develop a simple application that is able to update/display the amount of time spent//allocated on that work item. The available .NET libraries would make quick work of this problem if we were developing for Windows but we're encountering problems developing this for OS X.

From searching Google and SO I've found several claims that working with TFS on OS X is impossible beyond very basic version control operations and I was hoping to get confirmation that as of March 2015 that is still the case. Many of the questions I've seen are from '10-'13 and I haven't been able to find any information that suggests progress since. My question is: Is it even possible to programmatically connect to a TFS server from an OS X machine, retrieve field data for a work item, and update field data for a work item?. It is my opinion that my team is beginning to spend time pursuing a C# solution that will ultimately not ever work.

Here is what we have tried so far and why it didn't work:

Here is what we are going to try and why we think it might work:

Is there a solution that will allow us to create a stand alone application that is able to connect to TFS, query the server for work item fields, and allow updates to work item fields that runs on OS X? Any feedback would be appreciated! Thanks for taking the time to read this question.

Upvotes: 0

Views: 227

Answers (1)

There is a full java API as part of the team explorer everywhere. You can use that on any platform that runs java.

http://www.microsoft.com/en-us/download/details.aspx?id=40785

Upvotes: 1

Related Questions