Reji S Nair
Reji S Nair

Reputation:

Tortoisesvn API for C#.NET

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

Answers (2)

Frank Bollack
Frank Bollack

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

Tim
Tim

Reputation: 834

From this answer:

Have a look at SharpSVN. This is an open-source binding of the Subversion Client API for .Net 2.0 applications.

For example, this library is used by the AnkhSVN Visual Studio Add-In.

Upvotes: 0

Related Questions