Is it possible for SharpSvn to retrieve log messages by the author?
1 answer
I can't immediately see how.
Assuming there is no direct filter, you can always filter it yourself with events and keep only those with a matching author. Sample code:
using(SvnClient client = NewSvnClient()){
SvnLogArgs logArgs = new SvnLogArgs();
client.Log(repofolder,
logArgs,
delegate(object sender, SvnLogEventArgs ea)
{
if( ea.Author != "silky" ){
return;
}
// Save it ...
}
}
}
+4
a source to share