Reputation:
How to integrate tortoisesvn Diff API(tool) for C#.Net? I should be able to use DIFF Tool in Tortoisesvn in my C# application.
Upvotes: 0
Views: 8955
Reputation: 25166
The TortoiseMerge tool (used for merging and diffing) is a standalone application. There are only a few command line options you can use to start the tool with the files/folders to diff.
Same is true for the the image diff tool TortoiseIDiff which also has a command line interface described here.
But there's no API to directly integrate them.
Upvotes: 4