This might sound like an obvious question but I can't seem to find the answer online.
I have an MVC solution that is made up of a few projects eg: Data project, Domain project, Service project, Web project, etc.
I am now ready to publish the solution to my web server. I know I can build each project and upload the dll's and view/content files for each project in my solution but I was wondering if there is a better(automated) way to deploy a multi project solution to the server?
The ideal solution for me would be to click on Deployment Package in Visual Studio on my Web project and for it to automatically create the files and folders required for the entire solution.
Am I missing something here or do I really need to do this following every time I want to publish to the server:
- Download Web Deployment Projects and attach a deployment project for each of my projects.
- Setup a new ProjectName_deploy folder and point all of the deployment projects to outout here.
- Open FTP and manually upload the relevant files onto the server using FTP.
It would seem nuts to me that I'd have to jump through all those hoops every single time I wanted to publish to the server. I'm guessing that by using Web Deploy or something similar I could automate this entire process but I just can't seem to find the relevant help online.
I'm using Visual Studio 2010 Professional with Windows Server 2003/IIS6.
Thanks for the advice.
Rich