Oct 25
Changing the svn:author property for a revision
The author for each Subversion revision is stored in the svn:author revision property. To change this afterwards, you can use SetRevisionProperty. You also need to make sure that making changes like this one is allowed in the pre-revprop-change repository hook.
using (SvnClient client = new SvnClient())
{
client.SetRevisionProperty(new Uri("http://my/repository"), 12345,
SvnPropertyNames.SvnAuthor,
"MyName");
}