FIX: Visual Studio .NET 2003 debugger crashes after you install the .NET Framework 2.0 runtime

Article ID: 886609 - View products that this article applies to.
Expand all | Collapse all

SYMPTOMS

When you try to debug an application by using the Microsoft Visual Studio .NET 2003 debugger, the debugger crashes. This problem occurs after you install the Microsoft .NET Framework 2.0 runtime.

CAUSE

Policy changes that are introduced by the .NET Framework 2.0 runtime cause some unmanaged applications to "float up" to the most recent version of the runtime. This problem only occurs in certain cases. For example, this problem occurs when you create managed Component Object Model (COM) servers.

When the unmanaged application is launched, the unmanaged application uses the .NET Framework 2.0. However, the Visual Studio .NET debugger uses the .NET Framework 1.1 runtime that is attached to the .NET Framework 2.0 runtime. The .NET Framework 1.1 runtime does not correctly handle the Visual Studio debugger that is attached to the .NET Framework 2.0. Therefore, the debugger crashes.

RESOLUTION

This problem is resolved in the .NET Framework 1.1 Service Pack 1 (SP1) runtime.

WORKAROUND

To work around this problem, the application that you are debugging must load the .NET Framework 1.1 runtime. To force this to occur, the configuration file must include the <requiredRuntime> element.

The following sample code shows how to specify the runtime version in the configuration file.
<?xml version = "1.0"?>
<configuration>
	<startup>
		<requiredRuntime version="v1.1.4322"/>
	</startup>
</configuration>

STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

MORE INFORMATION

You can confirm this problem by looking at the version of mscorwks that is loaded to the application that you are debugging. If the version string is later than "v1.1.4322," this problem may occur.

REFERENCES

For more information about the .NET Framework runtime, visit the following Microsoft Developer Network (MSDN) Web sites:

Determining which version of the runtime to load
http://msdn2.microsoft.com/en-us/library/w671swch(vs.71).aspx
Visual Studio 2005 Developer Center
http://msdn2.microsoft.com/en-us/vstudio/aa973782.aspx

Properties

Article ID: 886609 - Last Review: May 18, 2007 - Revision: 2.4
APPLIES TO
  • Microsoft Visual Studio .NET 2003 Enterprise Architect
  • Microsoft Visual Studio .NET 2003 Enterprise Developer
  • Microsoft Visual Studio .NET 2003 Academic Edition
  • Microsoft .NET Framework 1.1
Keywords: 
kbbug kbqfe kbprb KB886609

Give Feedback