Question

I have a solution which have three applications a. One web application b. Two web services

I want to host applicaton on One website A and services on Another website B

When I am trying to host build using automatic build deployment in TFS, I am getting only one web service. Can anybody tell me how to host these 3 applications.

Following is the build arguments which I am using in build definition

/p:DeployOnBuild=True /p:DeployTarget=MsDeployPublish /p:CreatePackageOnPublish=False /p:MSDeployPublishMethod=WMSVC /p:Configuration=Dev /p:MSDeployServiceUrl="https://X.X.X.X:8172/MsDeploy.axd" /p:DeployIisAppPath="Default Web Site/SampleApplicaion"  /p:UserName="username" /p:Password="password" /p:AllowUntrustedCertificate=True 

Thanks, Ashwani

Was it helpful?

Solution

In your arguments you are specifying that all deploys should go to "Default Web Site/SampleApplicaion". The command arguments will override any values you have set in your project configuration and so all apps will be deployed to this IIS website.

Instead you need to set the IIS site in the configuration settings of your project. Then you can specify Website A and B and that setting will be used when running your build.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top