Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Accessing TFS 2010 from Visual Studio 2008

0.00/5 (No votes)
19 May 2011 1  
How to access TFS 2010 from Visual Studio 2008

Most of our projects are in Visual Studio 2008. But due to the new features introduced in TFS 2010, we were forced to move to TFS 2010 with VS 2008 projects. Here is where the major issue comes: how to access TFS 2010 from VS 2008?

We faced this issue and came to know about the Visual Studio 2008 Forward Compatibility Update. We went ahead and installed it from here.

Next, we tried to connect to TFS 2010 with a TFS name:

Add Team Foundation Server

Add Team Foundation Server

This will throw the following exception:

Exception Detail

Exception Detail

This is because Visual Studio 2008 is not able to identify the server instance or the default collection associated with the TFS 2010 project.

After some research, we found that we needed to specify the URL of the project including the server instance (by default, tfs) and project collection.

Add Team Foundation Server

Add Team Foundation Server

This will throw the following error:

"TF30335: The server name cannot contain the characters ‘/’ or ‘:’, or start with 
  ‘http://’ or ‘https://’. If the server name is an IPv6 address, 
  it can contain the character ‘:’ only if the full name is enclosed by square brackets."

From a lot of research, we came across a solution for the above issues through Registry edit.

HKEY_CURRENT_USER/Software/Microsoft/VisualStudio/9.0/TeamFoundation/Servers

E.g.: http://mytfs:8080/tfs/myprojs

Here, mytfs -> TFS server name. tfs -> TFS instance name. myprojs -> project collection.

  1. Go to the Registry location
  2. Right click on Servers and select New -> string value.
  3. Name the string entry with your TFS instance name (any name to represent TFS in VS 2008).
  4. Either double click on the string, or right click and select Modify to enter the value for the string.
  5. Enter the server URL as value.
  6. Close the Registry.
  7. Re-open Visual Studio 2008. Connect to TFS using Tools-> Connect to Team Foundation server.

Now, we face the next issue:

“TF31001: Team Foundation cannot retrieve the list of team projects from Team Foundation Server mytfs. The Team Foundation Server returned the following error: Team Foundation services are not available from the server."

Technical Information (For Administrator)

TF253022: You must update your client with the Forward Compatibility Update in order to connect to the Team Foundation Server that you selected. To obtain this update, go to the Microsoft Web site: http://go.microsoft.com/fwlink/?LinkId=166481.”

This is totally confusing. From Control Panel, we can see that we have installed the Forward Compatibility Update. But still, it is not working.

Here is the solution for the whole issue:

  1. Install the software in the following order:
    1. VS 2008
    2. Team Explorer
    3. VS 2008 SP1
    4. Compatibility Update

Ensure that you install VS 2008 SP1 only after Team Explorer. If we install Team Explorer after VS 2008 SP1, then the version of Explorer is 9.0.2xxxx. If it is in the correct order, then the version will be 9.0.3xxxxx. You can verify the versions from open Visual Studio 2008 -> Help-> About Microsoft Visual Studio-> Select the Team Explorer.

Do the Registry entry specified above.

Re-open Visual Studio 2008 and connect to TFS 2010.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here