Visual Studio 2017 hangs

0

When I try to program an app in xamarin.forms in visual studio 2017 community edition, the IDE hangs, debugging devenv.exe in another instance of visual studio I get the following error:

  

The PDB file is missing or can not be opened.   Subprocess 0x544 ended with code 0 (0x0).   Exception produced in 0x76BCC54F (KernelBase.dll) in devenv.exe:   0xE0434352 (parameters: 0x80131622, 0x00000000, 0x00000000,   0x00000000, 0x71990000).

Finally, it ends up closing the visual studio with this other exception:

  

Exception produced in 0x6F4A114D (System.ni.dll) in devenv.exe:   0xC0000005: Access violation when reading location 0x00000000.

     

If there is a driver for this exception, the program may continue   safely.

    
asked by Lucas D.A.W. 21.03.2018 в 09:49
source

1 answer

1

Causes of the problem?

There may be many, but the most common are file problems if we have had an older version of visual studio , conflicts between installed libraries of different versions of the program or instances of execution of libraries between different versions of visual studio .

How did I solve it?

Completely cleaning the previous versions of visual studio and doing a full reinstallation of visual studio 2017 .

We have to make sure that our project can work with the libraries that will install visual studio 2017 , and worry about them being installed.

    
answered by 29.05.2018 / 20:18
source