<!-- ***************************************************************************
* Debugging Microsoft .NET 2.0 Applications
* Copyright © 1997-2006 John Robbins All rights reserved.
**************************************************************************** -->
<!-- Default ADPlus HANG mode configuration for all process types. -->
<ADPlus>
  <Settings>
    <!-- Set the mode to HANG -->
    <RunMode>HANG</RunMode>
    <!-- Snap the dumps, don't tell me about it -->
    <Option>Quiet</Option>
  </Settings>
  <HangActions>
    <!-- For custom actions, I want to see all     -->
    <!-- the handle info, the managed CLR version, -->
    <!-- managed threads, managed call stacks, and -->
    <!-- bigger objects.                           -->
    <CustomActions>
      !handle 0 f;
      .loadby sos mscorwks;
      !eeversion;
      !threads;
      ~*e!clrstack;
      !dumpheap -stat -min 100;
    </CustomActions>
  </HangActions>
</ADPlus>
