Using 1.0.3705 Assembly with 1.1.4322 solution

  • Thread starter Thread starter Robert Strickland
  • Start date Start date
R

Robert Strickland

I built a component using VS 2002 (framework 1.0.3705) and now use under a
VS 2003 solution (framework 1.1.4322). When I run under the IDE I get the
following:

A first chance exception of type 'System.Reflection.AmbiguousMatchException'

occurred in mscorlib.dll

Additional information: Ambiguous match found.

When I run as 'production" the application runs fine.

Any ideas?
 
What did you answer when VS 2003 asked you if you wanted to convert the
filed to Framework 1.1 the first time you opened it?
 
Hello Robert,

Thanks for your post. As I understand, the problem you are facing is that
you receive an exception when it started from within VS .NET IDE, while it
works fine without IDE. Please correct me if there is any misunderstanding.
I now share the following information with you:

The exception you received in a first chance exception. Visual Studio .NET
debugger can catch all the exception from your application and prompt it.
When running without the debugger, a first chance exception will be thrown
and be handled by some code further down the stack so that you cannot see
it. I believe the following MSDN aritcle is helpful for understanding the
exception handling:

INFO: First and Second Chance Exception Handling
http://support.microsoft.com/?id=105675

As in this case, please check where the exception is thrown (you can view
the call stack of it).

I look forward to hearing from you.

Have a nice day!

Regards,

HuangTM
Microsoft Online Partner Support
MCSE/MCSD

Get Secure! -- www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
 
Back
Top