Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using VS2012 diff tool from console

Is it possible to use VS 2012 diff tool from console like below?

compare.exe c:\file1 c:\file2

EDIT

  1. Also you can run diff tool from Command Window and it will run in the same instance of VS.

    Tools.DiffFiles c:\file1 c:\file2
    
  2. Moreover there is an extension for VS 2012.

like image 540
k0stya Avatar asked Jun 26 '12 16:06

k0stya


1 Answers

devenv /diff c:\file1 c:\file2
like image 171
James McNellis Avatar answered Oct 25 '22 07:10

James McNellis