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
 
S

Shiva

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
 
L

Luminal

yes, and it is. (i miss a dot on my original message) but
nameofmyapp.exe.config does not work . do I miss something?
 

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