Connecting TFS 2010 from Delphi XE

We use Delphi XE in our company to develop some Delphi applications, as well as .Net. TFS 2010 is our primary source control engine for .Net; but we want to use TFS 2010 for Delphi.

I installed Team Explorer Everywhere 2010, but I could not see any menus or windows in the Delphi XE editor about Team Explorer.

So how can we connect Delphi XE to TFS 2010?

+4
source share
2 answers

AFAIK TEE 2010 is an Eclipse plug-in, Delphi is not an Eclilpse-based IDE and cannot use MSSCCI / SCC providers without adding. If TFS 2010 can work with the MSSCCI / SCC provider (you may need to install support separately), you can use the Delphi add-on, see, for example, Use Team Foundation Server in Delphi 7? , this is for Delphi 7, but the situation has not changed much.

Delphi XE can use the new API to directly control VCS, but it is incompatible with older versions (which makes it less attractive for those who sell existing add-ons), and therefore it requires someone to add TFS integration, and TFS usually is not the first choice of Delphi stores. In addition, today the fashion dictates that DVCS are hot, and most efforts in this direction.

+1
source

You will need to find or create a TFS 2010 plugin for the Delphi IDE! As far as I know, Embarcadero integrated SVN (Subversion) into IDEs (XE and XE2).

A quick Google search doesn't look too promising ... so it may take a lot of manual effort on your part, or you may just need to change your version control solution.

0
source

Source: https://habr.com/ru/post/1384567/


All Articles