Gaurav
Gaurav

Reputation: 139

Visual studio 2013 and Azure web app

I want setup my 2012 TFS project so that when I check-in my code, TFS should deploy the project to Web app on Azure using the publish profile file. Is that doable ? how ? thank you.

Upvotes: 0

Views: 73

Answers (1)

Shahed C - MSFT
Shahed C - MSFT

Reputation: 2881

Yep, it's possible. Check out the following article on the Azure website:

Continuous delivery with Visual Studio Online in Azure

https://azure.microsoft.com/en-us/documentation/articles/cloud-services-continuous-delivery-use-vso/

It covers the following steps:

  • Step 1: Create a team project
  • Step 2: Check in a project to source control
  • Step 3: Connect the project to Azure
  • Step 4: Trigger a rebuild and redeploy your project
  • Step 5: Redeploy an earlier build
  • Step 6: Change the Production deployment
  • Step 7: Run unit tests

Hope that helps! :)

Upvotes: 2

Related Questions