JIT Debugging

J

Jeff Gaines

I am having great difficulty turning on JIT Debugging for VS 2008 on XP
Pro-x64.

There is plenty of information on the web - basically it says:

Set the jitDebugging value in the machine.config or application.exe.config
file, located in the system.windows.forms section to true. For example:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

I have 2 machine.config files so presumably I need to edit both.

However you can't just stick the above in at the end of the file - and I
don't have a system.windows.forms section.

So please where should I add these 3 lines?
 
J

Jeff Gaines

On 11/01/2010 in message <[email protected]> Jeff
Gaines wrote:

[snipped]

Panic over, I found my notes.
It works if you add it at the end of the file on the line before the
closing </configuration>
so it looks like this:


<system.windows.forms jitDebugging="true"/>
</configuration>
 

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