The debugger does not enter into different projects

Is it possible that a web project built on the .NET framework 4.0 is part of a project built on the .NET 2 platform? If so, how would I configure this?

These 2 projects are in different solutions. When I do "Go to Definition" from a web project, it opens metadata. In debug mode, the debugger never "enters" the method.

+4
source share
1 answer

Joining the project is certainly supported by the script. The likely reason not to enter into this is because you do not have the characters loaded in the project, or you have Just My Code (JMC) enabled.

Most likely the situation with JMC. Try disabling it and repeat your script

Tools -> Options -> Debugger -> Only my code

+6
source

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


All Articles