I get the above mentioned error when trying to add a breakpoint in a dll. I have tried all off the options mentioned here: Link
Background:
- I am using vs2013 community edition
- The class in the dll is static
- dll project is included in my solution I have tried to uncheck "enable just my code"
- The module windows reports that the symbols has been loaded.
- The dll's pdb file is located in the bin/debug folder where the exe is
- I have also tried to check "enable native code debugging"
When I enable "native code debugging" the modules window shows its trying to load the dll twice, first time it succeeds and the second time it fails. I have attached a screen shot of this.
Is there anything I can try to fix this issue?
The following is a quick description of the projects in the solution.
- CustomAppInitioator - standalone app
- CustomCode - Test application for dll, I modify the program.cs to only start a form for each dll
- CustomCodeDLL - DLL project contain separate classes, eachsuing the namespace customcode.something, each class has its own .cs file
- CustomConnectorDLL - dll project for database
- CustomEmailDLL - DLL project for emails
- CustomIconsDLL - Empty dll project containing an public resource file for icons
Item 2 is the startup project, and I only include on the current test form item 3's class. So 1, 4-6 is not applicable here, I think....