我正在尝试使用 SharpSvn 读取文件的两个修订版的内容。当我运行以下代码时,该fileVersions
集合仅包含一项..
var svnClient = new SvnClient();
var revisionInfo = new SvnFileVersionsArgs
{
Start = 80092,
End = 80093
};
Collection<SvnFileVersionEventArgs> fileVersions;
svnClient.GetFileVersions(
new SvnUriTarget("https://DbDiff.svn.codeplex.com/svn/DbDiffCommon/DataAccess/SqlCommand11.xml"),
revisionInfo,
out fileVersions);
但是我希望它包括两个项目。使用 TortoiseSVN 我可以看到文件在修订版80088中发生了更改,所以我希望在使用Start = 80092
..
使用Start = 80091
也无济于事..