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
a source to share
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.
a source to share
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.
a source to share