尝试将 SharpSVN 添加到我的 C# 项目时,使用 SharpSVN 相关调用进行编译会给我这个错误:
FileLoadException was Unhandled 混合模式程序集是针对运行时版本“v2.0.50727”构建的,如果没有其他配置信息,则无法在 4.0 运行时中加载。
我所做的是从下载的 SharpSVN zip 文件中添加参考并添加
using SharpSvn;
当我编译它工作正常,但是当我添加:
string targetPath = "https://bobl/svn/ConsoleApplication1";
SvnTarget target;
SvnTarget.TryParse(targetPath, out target);
它因该错误而中断。我已经搜索了这个错误,但没有找到解决方案。