Getting tortoise svn committed task's taskid using sharpsvn

258 views Asked by At

How Can I get tortoise svn's committed task's task Id using sharpsvn to a c# application?

1

There are 1 answers

2
Bert Huijben On

There is no such thing as a 'task id' in Subversion. Most likely your company uses 'task' as the label for the bugtraq issuenumber infrastructure. This is just a nice standardized UI over a value that is stored in the log message of a commit.

If that is the case, you should process the svn log output; which you can do via SvnClient.Log() and/or SvnClient.GetLog() in SharpSvn.