Home > Software engineering >  Visual Studio moving a solution to a folder in the repo
Visual Studio moving a solution to a folder in the repo

Time:01-20

My solution is currently in the root of a DevOps repo, is it possible to move it (and it's full contents) into a folder in the repo, maintaining the structure and links to Visual Studio source control?

In the future I need to maintain several solutions in the same repo and so want them all in separate folders.

CodePudding user response:

If you use TFVC, you can use this way: Rename or move files and folders in TFVC.

For GIT, just move locally and commit/push changes. In this case, git performs 2 operations: delete a project from an old folder and add it to a new one.

CodePudding user response:

After much trying and hair pulling, going to the folder view in Visual Studio allowed the files in the solution to be moved.

  •  Tags:  
  • Related