We have a solution that was originally developed in Visual Studio 2013. One of my colleagues opened the solution and worked on it on Visual Studio 2015 and pushed changes to GIT.
Now when we try to open the solution back in Visual Studio 2013, Visual Studio hangs while loading the project and we need to kill the process.
We found that if we delete the file Configuration.v12.suo
in the .sln
directory Visual Studio 2013 opens the solution and we are able to work on it normally. But Configuration.v12.suo
is recreated. So next time we will encounter the same problem until we again delete this file.
We are looking for a more elegant way to solve this problem. Any ideas?