Symbol file not loading for debugging custom project in Visual Studio 2012

后端 未结 18 1308
感动是毒
感动是毒 2020-12-04 20:54

I have a large solution in Visual Studio 2012 which consists of executables and class library projects. When debugging the application the breakpoints in one particular clas

18条回答
  •  天涯浪人
    2020-12-04 21:55

    Bit late to the party here - just in case this is helpful.

    We have a couple of separate websites (in different solutions in Visual Studio). On initial load of one of the sites, we were making a call to the other site which would return an image.

    Both of these sites referenced a common DLL, but while working on one site, had not realised that the other site had been left in a 'Release' build - after the site loaded, the offending DLL was rebuilt, but without symbols.

    Kudos to Nanhydrin for both mentioning the modules debug window (very helpful) and for putting me on the right track with the post build event.

提交回复
热议问题