1

Is it possible to code against the VisualSVN Server? We'd like to develop our own integrated front end for reporting / automation purposes. Our coding language will be VB.Net / C#.Net.

Any pointers to relevant documentation etc. would be greatly appreciated.

bahrep
  • 29,961
  • 12
  • 103
  • 150
DavidReid
  • 449
  • 1
  • 5
  • 21
  • Also see http://stackoverflow.com/a/10030008/761095 – bahrep Oct 16 '12 at 14:21
  • possible duplicate of [Control VisualSVN Server from C#](http://stackoverflow.com/questions/10017282/control-visualsvn-server-from-c-sharp) – bahrep Apr 09 '13 at 12:57

2 Answers2

1

Any SVN library should be able to communicate with your VisualSVN server.

A quick Google round reveals that there are plenty of libraries for communicating with an SVN server. SVN.NET beeing the first on the list.

If you don't find any libraries that you like you can always run the commandline svn client with Process.Start.

Albin Sunnanbo
  • 46,430
  • 8
  • 69
  • 108
0

If you were looking for some automation and reporting with VisualSVN Server, then I have good news for you. Beginning with VisualSVN Server 3.4, the server comes with PowerShell module that provides a number of PowerShell cmdlets for such tasks. Not VB.Net or C#.Net, but should be sufficient for most admin automation tasks and report generation.

bahrep
  • 29,961
  • 12
  • 103
  • 150