Solution explorer not updating team projects in Visual Studio 2015

1

I am using Visual Studio 2015 Community Edition and have a Team Project setup using Visual Studio Online.

This is so I can easily stop work from one computer and pick it up on another, seamlessly. It works great, however for some reason I cannot get my solution explorer to display a newly added project, despite the fact I have the latest version of my solution and can see the missing project under the Source Control Explorer.


Not showing newest project added to the solution

Right clicking on the solution and getting the newest version should add the missing project, but doesn't

Notice the fact the missing project is showing under the Source Control Explorer

And just to confirm, the missing project is actually downloaded

Shows up on Visual Studio Online

What I've tried:

  • Doing a manual get even though I have the latest version

  • Restarting Visual Studio 2015 after doing a get (duh)

Insane

Posted 2015-10-02T01:29:51.970

Reputation: 2 599

Answers

0

This is definitely a bug in which projects show up missing.

This is how I fixed it:

  1. Right click on your solution and click "Add existing project"

  1. Head to the location where your team project is saved. It's not the same as your other projects. Usually is located in C:\Users\<username>\Source
  2. Navigate to the .vcxproj file of the missing solution, and add it.
  3. You'll see it appears as if it was always there, however your solution will appear to be "out of date". So right click on your solution, and click "Check in" then confirm
  4. You'll probably notice the message below after you check in your solution. The reason nothing changed is because the missing project was already there just for some reason not displayed by the solution explorer.

    All of the changes were either unmodified files or locks. The changes have been undone by the server.

Insane

Posted 2015-10-02T01:29:51.970

Reputation: 2 599