Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Teamcity - which external diff viewer

Do You know any tools that can be used as external diff viewer for Teamcity's Visual Studio plugin?

I'm using Visual Studio 2010 Pro and Teamcity 5.1.2.

like image 351
Wojtek Turowicz Avatar asked Aug 23 '10 10:08

Wojtek Turowicz


3 Answers

We use Beyond Compare 3 which is very easy to use with the TeamCity Plugin (set the path to the executable (BComp.exe) and set %1 %2 /lefttitle="%3" /righttitle="%4" as the Command Arguments.

A good open source alternative is WinMerge.

like image 78
Noffls Avatar answered Sep 18 '22 00:09

Noffls


With Beyond Compare 3, I use

%1 %2 /lefttitle="%3"  /righttitle="%4" /leftreadonly

The last option makes it so you can't accidentally edit base file

like image 36
dplante Avatar answered Sep 21 '22 00:09

dplante


For WinMerge (set path to WinMergeU.exe), I use the command arguments

/x /e /ub /wl /dl %6 /dr %7 %1 %2
like image 34
gezzahead Avatar answered Sep 21 '22 00:09

gezzahead