有谁知道有一个很好的 Subversion C# API 吗?
我希望调用 subversion 存储库,但我想用 C# 编写它。 有谁知道有什么好的图书馆吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看 SharpSVN。 这是针对 .Net 2.0 应用程序的 Subversion Client API 的开源绑定。
例如,此库由 AnkhSVN Visual Studio 插件使用。
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.
我建议您查看 Tortoise SVN 源代码。
它主要是用 C++ 编写的,但由于它都是在 VS 中完成的,因此应该很容易打包并再次使用大部分代码。
如果您想要减少繁重的工作(但它还不是一个稳定的版本,所以要小心)。
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).
SubversionSharp 怎么样。
How about SubversionSharp.