0

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.

jgauffin
  • 99,844
  • 45
  • 235
  • 372
  • Are you ***writing*** your own client? SharpSvn is just the .NET API which is used by such things as AnkhSvn and CollabNet Desktop Visual Studio. – David W. Mar 15 '12 at 18:49

2 Answers2

0

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.

Tigran
  • 61,654
  • 8
  • 86
  • 123
0

You should check out SvnClient.DiffSummary()

This is the SharpSvn equivalent of svn diff --summarrize

Bert Huijben
  • 19,525
  • 4
  • 57
  • 73