How can we help you today? How can we help you today?
Bart Read
Hi there, Please see this post for instructions on how to change the font in the source code view: http://www.simple-talk.com/community/bl ... 69800.aspx If this doesn't fix the problem please let us know. Many thanks, Bart / comments
Hi there, Please see this post for instructions on how to change the font in the source code view:http://www.simple-talk.com/community/bl ... 69800.aspx If this doesn't fix the problem please let u...
0 votes
Hi Scott, No problem. The difficulty with PDB files is that unfortunately the debugging API doesn't give us much control over resolving them, in fact I'm not sure it gives us any, which is a pain in the butt basically. Ideally we'd like to be able to support the kind of resolution we do for source files. Incidentally I'm surprised you're having to locate all the source files. I would have thought you might have to do it for files in different assemblies, but for every file in a given assembly is a bit much. This suggests our resolution algorithm has a hole or two in it. We'll look at it again. And yes, the line level performance is really going to hurt. I'm not sure what impact disabling and re-enabling the profiler would have on the way we collect data, whether it would impact performance adversely, or whether it would cause problems with the accuracy of the results. Possibly all of these. I'll have a chat with Andrew about it, but realistically I don't see that making a reappearance before version 5. I'd recommend using method level timings to initially isolate problems, but still with the framework PDBs so you can inspect the source code, then when you have a better understanding of what the framework is doing, which should still be possible by stack trace inspection, and comparing time for a method, with its time with children, do line level timings only with your source code. You should find collecting method level timings is very fast, particularly if you only analyse methods with source--just include the PDBs for the parts of the framework you're interested in. Hope that helps. Thanks, Bart / comments
Hi Scott, No problem. The difficulty with PDB files is that unfortunately the debugging API doesn't give us much control over resolving them, in fact I'm not sure it gives us any, which is a pain i...
0 votes