tags:

views:

714

answers:

2

I'm a .NET developer and use VS2008/TFS2008. Recently, another developer has left our company and now I have to maintain his code. He was a Delphi developer (Delphi 7 mostly, but also Delphi 2007) and he didn't use any source control.

Is there a way to put his code in Team Foundation Server? Integration in the Delphi IDE is a big plus.

+2  A: 

We use SourceConnexion (3rd party plugin) with D2007: http://www.epocalipse.com/scx.htm

(Works nice with SCC api plugin of Plastic SCM, which has better branching support than TFS :-) )

André
+4  A: 

To get IDE integration with TFS in Delphi 7, you need can use the MSSCCI provider for TFS in conjuction with SourceConnection which gives MSSCCI support to Delphi. You will need to install the following on your machine if you do not have them already:

  1. Microsoft Team Explorer 2008 (The TFS Client)
  2. The Microsoft MSSCCI provider for TFS 2008
  3. SourceConnexion

You need to ensure that you have TFS client access licenses for any of the Delphi folks connecting to TFS and get them a license for the SourceConnexion plug-in.

As you already have VS2008 installed on your machine talking to TFS2008 you probably only need to install items 2 and 3.

See Eyal's blog post for more information (a little out of date but stil valid).

Martin Woodward