I'm trying to write a post-commit hook using SharpSVN but can't figure out how to get the changeset info using SharpSVN given the revision number and the path to the repo. Any ideas are much appreciated.
|
|
In hook clients you most likely want to use the SvnLookClient that directly accesses the repository. In this example (copied from another question here) I also use the SvnHookArguments class for parsing the hook arguments.
|
||
|
|
|
|
You want the GetLog method.
That might not be exact (no intellisense! how am I expected to code C# without that :( ), but its roughly what you want. |
||
|
|
