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

  • Thread starter Thread starter Luminal
  • Start date Start date
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
 
From the Visual Studio menu, click
Debug>Processes
and attach to the application you wish to debug

-James
 
this create the correct application.exe.config file?

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