outstacked
outstacked

Reputation: 213

Visual Studio 2017 crash

We are running into a problem opening our MVC5 solution in Visual Studio 2017. It will show a message saying loading projects, followed by "Preparing solution" and then it just freezes. Some preliminary research has lead to suggestions like

  1. Remove the hidden .vs folder
  2. Repair installation by running as admin
  3. Updating to the latest released VS build
  4. Remove any node.js type folders that have deeply nested folder structure within the solution folder

However, none of these have worked. Has anyone else run into a similar problem using VS 2017 with their solution? There are no special commands on packages loaded on startup.

Upvotes: 6

Views: 10638

Answers (6)

cleverRay
cleverRay

Reputation: 11

Visual studio 2017 keeps crashing when i try to launch it,all i did was to launch visual studio installer go to more which is under the product am using then clicked on repair and that got me running again.

Upvotes: 1

user9736316
user9736316

Reputation:

I had the same issue and uninstalled the ankhsvn subversion plugin then closed and re opened vs 2017 ad it worked.

Upvotes: 0

Mikal Madsen
Mikal Madsen

Reputation: 579

Deleted the vs folder, but it didn't work.

Looked for recently changed files in the project, saw Web.csproj.user — when I removed this the project works again.

Upvotes: 1

outstacked
outstacked

Reputation: 213

I was able to finally get it to work. I updated to the latest Visual Studio build 15.0.0+26228.10, but that did not seem to help. After removing my .vs folder before opening the solution multiple times, it finally started to load. I have no 3rd party extensions or tools running.

Upvotes: 9

starbugs
starbugs

Reputation: 695

I installed visual studio enterprise 2017 version 15.0.0+26228.10. and productivity power tool extension. the studio keep crashing when load project. I uninstall everything and reinstall vs only, the crash problem disappeared.

Upvotes: 1

NoelC
NoelC

Reputation: 1419

We saw some lockups, especially during the start of Batch Builds, until we set this experimental feature to False:

Tools > Options : Text Editor > C/C++ > Experimental : Enable Faster Project Load.

I don't know whether it could apply to your problem or not, but it is related to loading projects, so...

Good luck.

Upvotes: 0

Related Questions