File Comparison Tool in Visual Studio 2010

I read this tool for comparing files in Visual Studio and recommended messages, but unfortunately this is only for VS-2008. I am wondering if there is a working tool for comparing selected files in visual studio 2010.

Ideally, select 2 files in Solution Explorer and right-click and select Compare Selected Files

I also have ankhSVN since my subversion program therefore cannot use

Change I have successfully selected WinMerge as my tool for the Diff process, but how do I actually compare it with 2 files?

+4
source share
4 answers

AnkhSVN is the same for VS2005, 2008 and 2010. You can use Tools -> Options -> Source Control -> Subversion User Tools to configure diff / merge and patch tools. It will automatically detect most of the tools, so you only need to select them from the drop-down menu.

See also ankhsvntips

EDIT : There is currently no way to distinguish between two different files, you can only use version files of the same file.

+5
source

I use BeyondCompare, this is really good. http://www.scootersoftware.com/support.php?c=kb_vcs.php

+2
source

SourceGear DiffMerge works great and integrates well with VS2010 and AnkhSvn. This is recommended on the AnkhSvn wiki .

To compare 2 files, just select "Open Diff File ..." from the "File" menu.

+1
source

Instructions for configuring the VS IDE for WinMerge are available on the Paul Bouwer user blog Replace the diff / merge tool in Visual Studio Team System with WinMerge :

In Visual Studio, under Tools> Options> Source Control> Visual Studio Team Foundation> Customize Custom Tools, add entries to compare and merge using the specified options.

Works great in the VS IDE if the Compare command is available, for example, in the Pending Changes and Changes window.

Also works great with integration with Windows Explorer and as a standalone tool.

+1
source

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


All Articles