Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use WinMerge as my merge/diff tool within Visual Studio?

I need to compare two files in my project, which is written in C#. Can I integrate WinMerge (or any other diff tool) with Visual Studio and use it easily from within?

like image 800
Neeraj Dubey Avatar asked Jan 09 '15 11:01

Neeraj Dubey


2 Answers

There is a more detailed answer on paulbouwer.com life and technology Replace diff/merge tool in Visual Studio Team System with WinMerge article, having also what arguments you need to pass.

I will reproduce it wholly, because I could not explain it better than him:

Replace diff/merge tool in Visual Studio Team System with WinMerge

JANUARY 31, 2010

I have been using Visual Studio Team System 2008 for a while now and am really starting to like the tightly integrated source control and work item functionality. One thing I cannot get used to is the basic diff/merge tool.

Where is the detail ?

The screenshot below demonstrates the basic nature of the diff tool built into Visual Studio Team System. There is no indication of the number of differences between the files being diff’ed or even the actual differences on a particular line … Visual Studio Team System Default Diff Tool

WinMerge

There is an alternative and it is both open source and free ! From the WinMerge site:

WinMerge is an Open Source differencing and merging tool for Windows. WinMerge can compare both folders and files, presenting differences in a visual text format that is easy to understand and handle.

Download WinMerge and install it.

Configure Visual Studio

Open Source Control > Visual Studio Team Foundation under the Tools > Options menu in Visual Studio.

Tools > Options > Source Control > Visual Studio Team Foundation

Click on Configure User Tools … and the Configure User Tools dialog will become available.

Configure User Tools ...

Add the WinMerge details for the Compare Tool. Click on the Add … button on the Configure User Tools dialog and configure as per the screenshot below. The arrow button next to the arguments text box exposes details about the information that Visual Studio can provide the tool being configured.

The configured arguments below are: /e /u /wl /wr /dl %6 /dr %7 %1 %2

Configure Tool for Compare Operation

Add the WinMerge details for the Merge Tool. Click on the Add … button on the Configure User Tools dialog and configure as per the screenshot below. The arrow button next to the arguments text box exposes details about the information that Visual Studio can provide the tool being configured.

The configured arguments below are: /e /u /wl /dl %6 /dr %7 %1 %2 %4

Configure Tool for Merge Operation

The Compare and Merge Operations should now be configured to use WinMerge.

Configured User Tools

WinMerge Command Line Options

WinMerge contains a number of command line options. The following are the ones used in the configuration above.

/e Enables WinMerge to be closed with a single Esc key press.

/u Prevents WinMerge from adding either the left or right hand side file path to the Most Recently Used (MRU) list.

/wl Opens left hand side as read-only.

/wr Opens right hand side as read-only.

/dl Description for left hand side title bar.

/dr Description for right hand side title bar.

Finally a decent diff !

Now a Compare in Visual Studio is more meaningful, It shows the number of differences, their positions within the compared files and actual differences per line. WinMerge supports custom syntax colouring and diff colouring.

Visual Studio Team System with WinMerge

PERSONAL NOTE:

I tested it, and I couldn't make changes go to to my local file, so I followed the Youen's advice on that page of removing the /wr parameter for Compare operation and now it works nice!

like image 130
sergiol Avatar answered Sep 28 '22 15:09

sergiol


I use WinMerge for comparing files and I integrated winmerge with visual studio. for this follow this instruction :

  1. in visual studio select : Tools > Options
  2. from this dialog select : Source Control > Visual Studio Team Foundation Server

here you must select Configure User Tools and then select Add. after that, from opened dialog box enter .* in Extension field and set Operation to Compare and into Command field enter WinMerge executable path and select OK.

that's all ;)

like image 24
MRP Avatar answered Sep 28 '22 14:09

MRP