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
 
Just a quick check: The config file name should be nameofmyapp.exe.config

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
 
yes, and it is. (i miss a dot on my original message) but
nameofmyapp.exe.config does not work . do I miss something?
 
Back
Top