Test User
Test User

Reputation: 13

TFS 2015 is missing the "Deploy Azure App Service" task

I'm using TFS 2015 (Microsoft Visual Studio Team Foundation Server Version 14.102.25423.0)

but, I could only see "Azure Web App Deployment" Task, but not the "Deploy Azure App Service" task. How do I get the App Service task in my TFS Build definition.

This is the task I see in my TFS-

enter image description here

This is the task I want-

enter image description here

Upvotes: 0

Views: 353

Answers (1)

Tingting0929
Tingting0929

Reputation: 4202

The Azure Web App Deployment task has been deprecated. But in TFS 2015, it still using it and in TFS 2017 and VSTS, it has been updated to use the Azure App Service Deploy task.

So if you want to use Azure App Service Deploy task, you could upload this task using tfx command to manually. The source files of the Azure App Service Deploy task is on the Github site. You could clone down the repository first.

tfx command to upload a build task:

http://donovanbrown.com/post/how-do-i-upload-a-custom-task-for-build

https://github.com/Microsoft/tfs-cli

Upvotes: 0

Related Questions