Asp.net web app to automatically deploy code from subversion

Hopefully this is not a stupid question, but after a long search, I could not find anything similar to what I am trying to do:

We are building a series of web applications that are based on the common asp.net mvc engine. I would like to write a .net web application that would allow our project managers to automatically check out the most recent stable release from subversion, build it and then deploy it to the server so they can then tweak it. Has anyone here built something like this before?

Since the web application has to be responsible for some other functionality, it makes more sense for me to find existing code (or example) that does something like this instead of using a pre-built package.

thanks

+1


a source to share


3 answers


I have several CruiseControl.Net tasks - several of them connect to batch files on the server that access MSBuild to build, clean and deploy + pin the web app to the build machine.



This way I can create builds for QA and other departments.

+1


a source


If you don't want to checkout the svn.exe file for testing, you can use SVN.NET to access the repository from your code.



0


a source


If you are using TortoiseSVN you can use client-side buttons to run a script (like a .BAT file) after validation which will build your solution and then copy it to the target directory.

0


a source







All Articles