tags:

views:

274

answers:

3

I'm new to VB and SVN and involved in writing automation scripts in VBA. I've got a requirement where we need to 'retrieve ,checkout ,add ' files to SVN remote repository from VB code in background as part of automation. Please can anyone guide me what needs to be done.

Any libraries , projectsetup ,code ,links, info you can share to start on this.

A: 

Ever thought of using NANT, Rake or MsBuild to automate your build scripts?

Duncan
A: 

Your best first approach should be simply to execute the Subversion client via system(), shell() or whatever:

system( "svn checkout something" );

If you haven't got a SVN command line client, you can get a free one for Windows one from here.

anon
A: 

Check out sharpsvn. The API documentation isn't the best but it works.

AgileJon