Justin Walker

WEB DEVELOPER, CAT ENTHUSIAST, FAN OF VINTAGE COCKTAILS, TRAVEL, AND BREAKFAST BURRITOS

VSTS deployment with multiple projects in a solution

If you have multiple projects in a solution and want to specify the project to deploy, simply name it! By default, in your build definition, the Azure App Service Deploy task will default to the following under Package or Folder:

$(build.artifactstagingdirectory)/**/*.zip

Instead of looking for any zip file, specify the one you want:

$(build.artifactstagingdirectory)/ProjectName.zip or $(build.artifactstagingdirectory)/Company.ProjectName.zip

azure app service deployment task

Basically, whatever your project is named. Hope this helps someone because I struggled with this for a while.


Load Comments