Reputation: 23515
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.
Upvotes: 1
Views: 417
Reputation: 9469
Maybe you should also consider using CruiseControl.NET to manage all your continuous integration tasks.
Upvotes: 2
Reputation: 410
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 .
Upvotes: 0