首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > C# > 一个颠覆历史记录的分析器。

一个颠覆历史记录的分析器。

  • 资源大小:118.29 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: 记录 一个 分析器 历史 颠覆

资 源 简 介

Description This is a C# library to parse Subversion history logs. It can retrieve revisions dates, authors, etc. contained in a Subversion history log VS2012 / .NET Framework 4.5 are required to compile sources Usage example ``` using SvnLogParser; // ... LogParser logParser = new LogParser(store_comments: true); RevisionInfo[] revisions; // parsing the Subversion log using (FileStream fs = File.OpenRead(@"path osvnlog.txt")) { using (StreamReader sr = new StreamReader(fs, Encoding.Default)) { revisions = logParser.Parse(sr).ToArray(); } } // display result summary Console.WriteLine("{0} revisions found", revisions.Length); foreach (RevisionInfo rev in revisions) { Console.WriteLine( "Revision {0} : Commited {1:D} by {2}, {3} files changed", rev.revisionNum, rev.date, rev.author, rev.filesChanged.Count ); } // find revision with the longuest comment RevisionInfo

文 件 列 表

svnlogparser-net
bin
fr
src
bin
SvnLogParser.dll
VIP VIP
0.206812s