everydayXpert
everydayXpert

Reputation: 857

Can I use TFS 2017 to build a project in SVN?

We have our source code (ASP.NET Core) within a SVN repository. Now for Continuous Integration, we want to use TFS to build and deploy to Azure WebApp. We can't migrate our code to TFS.

Is this possible?

Upvotes: 1

Views: 779

Answers (2)

Cece Dong - MSFT
Cece Dong - MSFT

Reputation: 31023

You can build code you manage in Subversion in TFS 2017. You must install the Subversion client on your build agents. Check: https://www.visualstudio.com/en-us/docs/build/define/repository#subversion

In the Repository of Build Definition, choose Subversion type:

enter image description here

Upvotes: 2

Daniel Mann
Daniel Mann

Reputation: 59020

Subversion is a natively supported repository type when defining builds since TFS 2015 Update 1. You should be able to choose it on the "Repository" tab.

There is a walkthrough available on VisualStudio.com.

Upvotes: 2

Related Questions