TeamCity - Web Deploy with MSBuild and the file system -


i want build source , copy folder have wrong or i'm not getting or both:

/p:configuration=release  /p:outputpath=bin  /p:deployonbuild=true  /p:deploytarget=msdeploypublish  /p:msdeployserviceurl=https://{server}:8172/msdeploy.axd  /p:username=****  /p:password=****  /p:allowuntrustedcertificate=true  /p:deployiisapppath=test.livesite.com  /p:msdeploypublishmethod=wmsvc 

what want have build , on success copy to: d:\f1\f2\website. how do this?

i made changes , here's i'm at:

build  msbuild  src\zookeeper.web\zookeeper.web.csproj  msdeploypublish  vsmsdeploy  c:\program files(x86)\msbuild\microsoft\visualstudio\v11.0\web\microsoft.web.publishing.targets(4377, 5): error  error_could_not_connect_to_remotesvc: web deployment task failed.  (could not connect remote computer ("zookeeper")  using specified process ("web management service") because server did not  respond. make sure process ("web management service") started on remote computer.  learn more at:     http://go.microsoft.com/fwlink/? linkid=221672#error_could_not_connect_to_remotesvc.)  project src\zookeeper.web\zookeeper.web.csproj failed.  src\zookeeper.web.tests\zookeeper.web.tests.csproj  project src\zookeeper.web.tests\zookeeper.web.tests.csproj failed.      project src\zookeeper.web.sln failed.  

web deploy requires lots of stuffs install, perhaps have omitted ?

follow great tutorial : http://weblogs.asp.net/scottgu/archive/2010/09/13/automating-deployment-with-microsoft-web-deploy.aspx (it worked me)


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -