Search code examples
c#sharpsvn

How to get a list of revision using sharpsvn


How do I get a list of revisions from sharpsvn


Solution

  • If you look at the metadata for SvnLogEventArgs (which is returned as a collection from GetLog) it derives from SvnLoggingEventArgs, which has properties of Author, Revision, Time and LogMessage (amongst others)

    Each SvnLogEventArgs item has a collection of ChangedPaths, which have properties for SvnChangeAction, and Path.