How to enable enable just in time (JIT) debugging?

L

Luminal

Greetings

I'm developing a C# application and I'm getting a JIT error (by the way,
how to solve this errors if no exception is thrown?). I want to enable
JIT debugging, but I'm with problems to do so. I've created the file
nameofmyappexe.config and here is the content of that file:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

but this does not work. The JIT error appears in a dialog box, and not
on the JIT debugger? Help please! How to enable the JIT debbugging?

Thanks

Lum
 
G

Guest

From the Visual Studio menu, click
Debug>Processes
and attach to the application you wish to debug

-James
 
L

Luminal

this create the correct application.exe.config file?

it seems that this does nothing to my app. I keep getting the JIT error...
 

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