I want to know the modified files between two revisions by using SharpSvn .
I only want to list filenames and path, not the file contents if possible.
I want to know the modified files between two revisions by using SharpSvn .
I only want to list filenames and path, not the file contents if possible.
Don't know how to use it in SharpSvn
but using usual subversion you can do something like this from command line:
svn -c revisionStart:revisionEnd
Usually subversion wrappers just wrap already available functionality. So you can try to run from command line SharpSvn
executable with the same parameters.
Should work for you.
You should check out SvnClient.DiffSummary()
This is the SharpSvn equivalent of svn diff --summarrize