Enabling jit debugger

M

mick

Can someone tell me **exactly** where in the machine.config file that I
place the

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

entry.

An example script snippet would be more helpful than a general
"under system.windows.forms bit" answer.

TIA,

mick
 
J

Jeff Gaines

Can someone tell me exactly where in the machine.config file that I
place the
<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

entry.

An example script snippet would be more helpful than a general
"under system.windows.forms bit" answer.

Good to see it's not just me who gets this wrong!

The last few lines of my machine.config are:

<commonBehaviors><endpointBehaviors><Microsoft.VisualStudio.Diagnostics.ServiceModelSink.Behavior/></endpointBehaviors><serviceBehaviors><Microsoft.VisualStudio.Diagnostics.ServiceModelSink.Behavior/></serviceBehaviors></commonBehaviors></system.serviceModel>
<system.windows.forms jitDebugging="true"/>
</configuration>

So you don't need an additional <configuration> even though the
instructions can be read that way.
 
M

mick

Jeff Gaines said:
Good to see it's not just me who gets this wrong!

The last few lines of my machine.config are:

<commonBehaviors><endpointBehaviors><Microsoft.VisualStudio.Diagnostics.ServiceModelSink.Behavior/></endpointBehaviors><serviceBehaviors><Microsoft.VisualStudio.Diagnostics.ServiceModelSink.Behavior/></serviceBehaviors></commonBehaviors></system.serviceModel>
<system.windows.forms jitDebugging="true"/>
</configuration>

So you don't need an additional <configuration> even though the
instructions can be read that way.

Cheers Jeff.
I`d actually set this up on my old system before but couldnt remember how to
do it.

mick
 

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