I’m writing an application that needs to connect to the Team Foundation Server, and then get the last version of a specific file from a specific project. At the begging I did this by using an external .bat, but I’d preffer running eveything inside the code.
I’ve been looking for examples but all I can find is written in C#. All I got so far is:
Dim tfs As TeamFoundationServer = New TeamFoundationServer(nameOfServer)
Thanks!
Finally I manage to solve it: