Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Code Compare to open inside Visual Studio to display compare results?

I am running VS 2013 and Devart Code Compare 4.0.51 (free).

After changing some setting, whenever I do a compare from within Visual Studio a full Code Compare window is opened to display the differences between the two files, rather than displaying the differences within Visual Studio.

How do I get it back to displaying inside Visual Studio?

I have looked through the settings both in the separate Code Compare instance as well as in Visual Studio, but can't seem to find anything relevant. Google was decidedly unhelpful in this regard.

like image 897
user Avatar asked Jan 23 '26 20:01

user


2 Answers

For 4.0.77, in the standalone application in "Tools>Options..."

Then "Environment>General"

There is a tick box for "Use standalone application from the command line by default" (2nd option for me), you need to un-check that.

like image 65
Paul Brack Avatar answered Jan 26 '26 13:01

Paul Brack


If you are using AnkhSVN:

Tools > Options > Source Control > Subversion User Tools:

External Diff Tool:

"C:\Program Files\Devart\Code Compare\CodeCompare.exe" /SC=SVN /t1="$(BaseName)" /t2="$(MineName)" "$(Base)" "$(Mine)" /environment=visualstudio

External Merge Tool:

"C:\Program Files\Devart\Code Compare\CodeMerge.exe" /SC=SVN /REMOVEFILES /BF="$(Base)" /BT="$(BaseName)" /MF="$(Mine)" /MT="$(MineName)" /TF="$(Theirs)" /TT="$(TheirsName)" /RF="$(Merged)" /RT="$(MergedName)" /environment=visualstudio

If you're using another source code server or client just make sure to put it the last parameter shown above.

(Source: email from Devart support)

like image 30
as9876 Avatar answered Jan 26 '26 13:01

as9876