Does anyone know of a good C# API for Subversion? [closed]
Asked Answered
H

3

38

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?

Hamish answered 26/1, 2009 at 20:39 Comment(2)
Take a look at the <a href="#212265 Libraries for .NET?</a> question.Stick
Duplicate: https://mcmap.net/q/411240/-sample-code-for-subversion-duplicateParcel
R
41

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.

Reparation answered 26/1, 2009 at 20:57 Comment(0)
E
2

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).

Eloyelreath answered 26/1, 2009 at 20:41 Comment(0)
Q
1

How about SubversionSharp.

Quesnay answered 26/1, 2009 at 20:46 Comment(1)
You should mention that this is not a stable, released product.Eloyelreath

© 2022 - 2024 — McMap. All rights reserved.