Visual Studio 2010 - WDP or Publish for Auto Deployment?

I'm going to upgrade to Visual Studio 2010, and I find out that there are now several options for deploying web application projects. In 2008, I used website deployment projects, and my initial thought was to do the same in 2010.

Is there any advantage to using a publication or web deployment tool in web deployment projects?

I need to automate the process so that assembly and deployment can be started from TeamCity. I would prefer a method that would allow me to use Runner Visual Studio (sln), but a custom MSBuild script would be fine too. See Web Application Deployment Workflow with SVN and TeamCity for more information about my current build / deployment stream.

+3
source share
1 answer

They both fulfill the same end goal, but work in very different ways. I ended up using a new tool for web deployment. I chose it for the following reasons:

  • VS 2010 Express. MSDeploy MSBuild script
  • MSDeploy - .
  • Web.config , WDP web.config. WDP, - XML, .
+1

Source: https://habr.com/ru/post/1751015/


All Articles