Reputation: 10403
Right now I deploy the project to our production server using Visual Studio 10's ftp uploader. It's very slow and I notice it doesn't remove deleted files (ie files deleted in the project) from the server once finished.
How can I make this step more robust, automated and professional?
Upvotes: 0
Views: 578
Reputation: 9103
Take a look at WebDeploy. Scott Hanselman did a great demo of it at PDC and you can watch it here: http://www.hanselman.com/blog/WebDeploymentMadeAwesomeIfYoureUsingXCopyYoureDoingItWrong.aspx
It's very robust and extensible.
Upvotes: 2