Debugging code from dynamically loaded assembly in .net core 2.0

前端 未结 5 653
一向
一向 2021-02-05 07:27

I have a .net core 2.0 console app that does the following (simplified):

var a = Assembly.Load(Assembly.GetEntryAssembly()
                              .GetRefe         


        
5条回答
  •  灰色年华
    2021-02-05 07:44

    Did you check option just my code?

    Enable Just My Code

    ("My Code") only, ignoring system code and other code that is optimized or that does not have debugging symbols.The debugger displays and steps into user code

    Maybe it should be unchecked?

提交回复
热议问题