Disassembly Window Issues

M

Mike Labosh

I have developed a Service Application that kicks off batch jobs written by
other developers. It works great on my machine, and works great on another
developer's machine. On a third machine, when debugging the batch job that
the service kicked off, any line of code "stepped into" (F11) opens it in
the Disassembly Window, with the VB source listed as comments.

I thought that perhaps the debug symbols may have become out of sync with
the Service's binaries, so I just did a fresh build of the service and one
DLL that it uses. We then re-deployed the freshly rebuilt service, DLL, and
both .pdb files, but any attempt to use the debugger on the launched batch
still gives us the disassembly window on the launched batch's code (i.e.,
not the service's code)

Any other things we can try so we can use the debugger without the
disassembly window?
 
D

Dmitriy Lapshin [C# / .NET MVP]

Hi Mike,

Looks like the debugger cannot locate the source files on this machine.You
can open them manually in the debugger and this should solve the problem.
 
M

Mike Labosh

Looks like the debugger cannot locate the source files on this machine.You
can open them manually in the debugger and this should solve the problem.

Actually, the problem disappeared when she rebooted. I guess the debugger
just had some bit-rot.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top