We are using VS2012. We have a solution with mulitple web projects and are using publish to deploy a project. There are already quite a few projects in the solution. To publ
You might be interested in publishing from command line:
msbuild YourSolution.sln /property:Configuration=Release;DeployOnBuild=true;PublishProfile=Production
You can find further reading on Scott Hanselman's blog for example.