unable to evaluate expression whilst debugging

后端 未结 5 1044
遥遥无期
遥遥无期 2020-12-02 22:33

When debugging asp.net code (running against IIS, and using Visual studio 2013) and in a breakpoint and trying to evaluate a variable using quick watch i quite often get \"u

5条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-02 22:42

    I have faced this for specific project and the reason is Costura.Fody (embeds all DLLs into the executing assembly).

    In this case you can disable Costura.Fody.

    1. Comment out Costura from FodyWever.xml

      
        
      
      
    2. Disable the clean reference target (if included) in *.csproj

      
      

提交回复
热议问题