Can TeamCity publish a Web project using the sln2008 build runner?

asp.net, deployment, publish, teamcity

Solution

I've written a pretty long blog post on this very topic that may interest you:

http://www.diaryofaninja.com/blog/2010/05/09/automated-site-deployments-with-teamcity-deployment-projects-amp-svn

basically:

- install web deployment projects

- add web deployment project to your solution

- setup the solution configuration manager to have a "Deployment" build configuration

- get team city to use this build switch when running the build

- have a beer and wonder in glory at your automagical awesomenesss

Problem

I'm building an ASP.Net MVC project in TeamCity. Can I somehow call the Publish target and get the output copied to a folder under IIS? or do I need to write an msbuild script for this?

Original source

Related problems