Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Website Project with Team Foundation Server

Is it possible to use a Website Project instead of a Web Application Project with Team Foundation Server? I see that it is easy to add a Web Application but cannot find how to use version control with a Website Project. Any help for this would be greatly appreciate as I have searched and have not found any solutions for this.

like image 216
user2052637 Avatar asked Feb 07 '13 22:02

user2052637


People also ask

How do I get a project from Team Foundation Server?

Right-click your project or project suite in the Project Explorer and then click Source Control > Open From Team Foundation Server. Click Open From Team Foundation Server on the Source Control toolbar (if the toolbar is hidden, right-click the toolbar area and select Source Control).

What is Team Foundation Server used for?

Team Foundation Server (Microsoft TFS) helps manage teams and their code. It's because TFS offers a combo of version control, issue tracking, and application lifecycle management.

What replaced Team Foundation Server?

Team Foundation Server rebranded to Azure DevOps Server.


1 Answers

As John Saunders said, avoid web site projects like the plague. You can turn your site in to an application by right clicking on the site and selecting "convert to web application" but be warned that you will need to do some rework on the project structure and code.

If this isn't an option then you can add them to TFS by right clicking on the solution in solution explorer and select "Add Solution to Source Control"

This will add the solution and any projects contained within to TFS, including the web site. It will create the TFS bindings in the .sln file

like image 92
James Reed Avatar answered Sep 22 '22 01:09

James Reed