Visual Studio 2003 and .NET framework 2.0

P

PromisedOyster

Is there anyway I can debug a program that is compiled under Visual
Studio 2003 but runs using .NET framework 2.0.

The reason I ask is that we are experiencing issues with .NET framework
2.0 but we are not ready to install Visual Studio 2005 just yet.

The same code/infrastructure runs under .NET framework 1.1 but not .NET
framework 2.0.

One of the issues is with field level tooltips. They do not appear with
2.0 of the framework.
 
C

Cowboy \(Gregory A. Beamer\)

No. And, it gets even trickier. In the 1.x timeframe, the SDK shipped with
the core debugger and a few others tools that are no longer in the SDK
install.

Under the Common7/Packages directory (with even an Express install), you
have the debugger bits for the IDE, but that would require developing your
own tool.

I would bite the bullet on one machine and have that machine set up as your
2005 debug environment. It is much easier than dancing around trying to
figure out what went wrong.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***********************************************
Think Outside the Box!
***********************************************
 
I

Ilya Tumanov [MS]

No, you can not. But you can attach to V1 EXE running under V2 using VS 2005
debugger.
You can also use command line debuggers (cordbg.exe or mdbg.exe), they come
with SDK.

Best regards,

Ilya

This posting is provided "AS IS" with no warranties, and confers no rights.

*** Want to find answers instantly? Here's how... ***

1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).
 

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