I have a C # console project that references a C # class library project in the same solution. When using the VS2010 profiler (launched using ALT-F2), I can see the time for methods in both the console project and the class library, but the source code for the class library project is not available. Instead, I get an error message:
"Source code is not available. You may not have the appropriate path character."
It looks like characters have been loaded for the class library project:
Loaded symbols for C:\...\MyApp\MyAppConsole\bin\Debug\MyAppConsoleApp.exe.
Loaded symbols for C:\...\MyApp\MyAppConsole\bin\Debug\MyAppClassLib.dll.
In addition, Tools / Options / Debugger / Symbols states that it is configured to automatically download characters for all modules except the excluded ones, and the excluded list is empty.
What else can I check or do to solve this problem?
source
share