tags:

views:

2522

answers:

4

I'm looking to make calls out to a subversion repository, but I would like to write it in C#. Does anyone know of any good libraries?

+2  A: 

I recommend you look at the Tortoise SVN source code.

It is mostly in C++, but since it is all done in VS, it should be easy to wrap up and use much of the code again.

You can also try SubversionSharp if you want less heavy lifting (however it is not yet a stable release, so be cautious).

Geoffrey Chetwood
+1  A: 

How about SubversionSharp.

Adam
You should mention that this is not a stable, released product.
Geoffrey Chetwood
+12  A: 

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.

M4N
+1  A: 

Take a look at the SVN Libraries for .NET? question.

crashmstr