Reputation: 449
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.
Upvotes: 1
Views: 226
Reputation: 30662
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.
Upvotes: 0
Reputation: 47058
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
.
Upvotes: 1