Visual Studio 2010 often crashes

I am currently editing XAML. It's very vanilla, but Visual Studio 2010 constantly crashes to the desktop. I suspect that the problem lies somewhere in my code, but I still feel that the IDE should deal with such problems and report it without an unheard of glitch.

Here are the details passed to VS2010 before CTD ...

Problem signature: Problem Event Name: CLR20r3 Problem Signature 01: devenv.exe Problem Signature 02: 10.0.40219.1 Problem Signature 03: 4d5f2a73 Problem Signature 04: (my assembly omitted) <-- NOTE One of my assemblies here! Problem Signature 05: 1.0.0.0 Problem Signature 06: 4f16df96 Problem Signature 07: 3f9 Problem Signature 08: 13 Problem Signature 09: System.NullReferenceException OS Version: 6.1.7601.2.1.0.256.1 Locale ID: 1053 Additional information about the problem: LCID: 1033 

I initially suspected ReSharper and several other add-ons, but I tried to disable them and still see the same crashes. I'm also not 100% sure that the XAML editor is to blame, but most likely because I did not see these crashes in other parts of Visual Studio 2010.

Has anyone else seen this?

+4
source share
2 answers

I had the same problem (except that I don't have .xaml) and this link helped: you just need to delete the .user and .suo files.

Why is Visual Studio constantly crashing?

+4
source

I had a problem with hanging VS 2010 when saving. It turned out that the SQL DataAdapter is frozen. For decision I:

installed SP1 and also off = Tools / Options / Text Editor / Basic / VB Specific / Lovely Listing

+1
source

Source: https://habr.com/ru/post/1391662/


All Articles