views:

41

answers:

2

i'm extending my precompiling application by automating the following steps:

1) update the SVN on a folder (we're using TortoiseSVN, unfortunately)

2) do a programmatic build on the csproj after an update was made

I would like to know how i can accomplish these in c#?

thanks.

A: 

Use reflector to take a look at the custom msbuild task for svn update, and compile, and see how it's already been done for you.

Or write a process.exec method in c# that call's the command line for svn update, and msbuild compile .

jeffo
hi, can you give me a link on this? i appreciate it.
Martin Ongtangco
+1  A: 

Maybe you should also consider using CruiseControl.NET to manage all your continuous integration tasks.

Johann Blais
instead of re-creating the wheel, i'll just learn CruiseControl. Thanks Johann!
Martin Ongtangco