Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to open Team Explorer in Visual Studio 2008

I have VS2008 Professional Edition with SP1 installed on my machine. Currently we use Visual Source Safe for version controller but we want to change it with Team Foundation Server 2010/2012. So i need to connect TFS with VS2008.
I read some post on the net and they say there is Team Explorer on Tools/Connect to Team Foundation Server to connect to TFS. This should already be installed with VS2008 SP1 but i dont see anything about Team Explorer in my VS2008 menus.
How can i open Team Explorer in my VS2008 to connect to TFS that we are planning to install? Or how can i verify that Team Explerer is installed on my machine?

like image 387
Fer Avatar asked Apr 11 '13 06:04

Fer


People also ask

How do I open Visual Studio Team Explorer?

Connect to a project or repository If you open Visual Studio and the Team Explorer pane doesn't appear, choose the View>Team Explorer menu option from the tool bar.

How do I open Visual Studio Team Services?

Open the Project in Visual Studio The source code will need to be shared with the TFVC repo. Click on Open in Visual Studio. Click on Servers to add the VSTS URL which will then show up for the projects created. You will need to sign in with the VSTS account which you created earlier.

How do I open TFS in Visual Studio?

From the Visual Studio Tools menu, select Options, then select Source Control > Plug-in Selection. Select Visual Studio Team Foundation Server. For Visual Studio Team Foundation Server, enter the name and port number for the Azure DevOps Proxy Server. Select Use SSL encryption (https) to connect.

How do I open team Explorer in Visual Studio 2013?

Source Control Explorer is available in Visual Studio, but isn't opened by default when working with a project managed in TFVC. You can open the Source Control Explorer window: From the Team Explorer home page (Keyboard: Ctrl + 0, H), choose Source Control Explorer. From the menu bar.


Video Answer


1 Answers

First check if Team Explorer is installed:

  1. Open Visual Studio
  2. Open Menu Help
  3. Open "About Microsoft Visual Studio"
  4. Check for entry like Microsoft Visual Studio 2008 Team Explorer Version 9.0.30729.4413
  5. If not, install Team Explorer: http://www.microsoft.com/en-us/download/details.aspx?id=16338 and (re-)install VS SP1 http://www.microsoft.com/en-us/download/details.aspx?id=10986

If this is installed, check if you selected TFS as Version Control system:

  1. Open Visual Studio
  2. Open Menu Tools
  3. Open "Options ..."
  4. Go to "Source Control" -> "Plug-In selection"
  5. Choose Team Foundation Server

Now you should be able to use Team Explorer. To do this:

  1. Open Menu View
  2. Choose "Team Explorer"
  3. Connect to you TFS

Depending on the TFS version you use, it might be necessary to have a compatibility pack installed (for TFS2010 and TFS2012).

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

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

An overview of exactly which set of Service Packs and Compatibility packs to install for each combination of TFS, Visual Studio and Windows can be found in this blog post.

like image 155
MikeR Avatar answered Nov 09 '22 02:11

MikeR