SVNのように機能し、リポジトリの作成、チェックアウト、ユーザーの作成、コミットが可能なプロジェクトに取り組んでいますが、インポート中に「Working copy'E:\ Admin \ admin' is too old(format 10、created by Subversion 1.6)」と、パスが見つからないことを示しているものもあります。
using (SvnClient client = new SvnClient())
{
SvnAddArgs saa = new SvnAddArgs();
saa.Force = true;
saa.Depth = SvnDepth.Infinity;
SvnImportArgs ca = new SvnImportArgs();
ca.LogMessage = "some log message";
SvnCommitResult result;
Uri uri = new Uri(getPathToRepository());
String fileName = getPathToFile();
client.Authentication.DefaultCredentials = new System.Net.NetworkCredential("koteswar", "neeraja");
client.Import(fileName, uri, ca, out result);
}