How can I use SharpSVN in my own Mono project (C #)?

I would like to use the SharpSVN library to access the SVN API, how can I access the SharpSVN namespace from my code? I downloaded the library, this does not look like code files, but some DLLs, some .exe / .xml.

Thank!

+3
source share
3 answers

I doubt that you can use SharpSVN as a cross-platform library, given its dependence on the Visual C ++ runtime environment at http://sharpsvn.open.collab.net/

Of course, he will work on Mono on Windows, but that is probably not what you need.

+4
source

Mono IDE, DLL .net . , SharpSvn .NET 2.0, Mono. .

0

Like any other library, you add it as refference, and then access it using either the using statement or the full name.

See MSDN http://msdn.microsoft.com/en-us/library/sf0df423.aspx

0
source

Source: https://habr.com/ru/post/1731801/


All Articles