Parrotmaster
Parrotmaster

Reputation: 676

Adding existing Visual Studio project to existing Devops project

I have a project that consists out of two visual studio projects: App and API. I want to have both of these under the same Devops project, but so far I can only get the App to actually use versioning. Uploading a second project seems to be not possible.

Upvotes: 1

Views: 1256

Answers (1)

Bhargavi Annadevara
Bhargavi Annadevara

Reputation: 5512

Regardless of how your project is structured within Visual Studio (i.e., within the same solution or otherwise), you can always create a new repository within your Azure DevOps project or connect your local repo to a remote to version control it on Azure DevOps.

One project containing multiple repos works well if the products/services are working on a coordinated release schedule. Your decision for one vs. many repos should be largely based on code dependencies and architecture.

Additional resources:

Upvotes: 3

Related Questions