alhassan ali
alhassan ali

Reputation: 181

Devops CICD - deploy each project in solution to specific path

I have .NET framework solution contains more than 100 projects inside, I have completed build the whole solution in pipeline build process. Now I need to deploy each project of them to specific path on my local server using release pipeline.

Anyone help me with resources how to make this.

Upvotes: 0

Views: 150

Answers (1)

Mr Qian
Mr Qian

Reputation: 23808

If you want to make every project under the same solution to deploy to the related location, you should add IIS web app manage task and set your specific deploy location to Physical path, that is what you need.

enter image description here

Note: you should note that each project corresponds to a Manage IISWebsite task and IIS web app deploy task, which means that you should add much tasks for your more than 100 projects. That is the only solution.

Upvotes: 1

Related Questions