upgrading to .NET 2.0 woes

K

kjobson

hello ,

I'm upgrading c++ files in which the source is available that has a
managed wrapper to a non-managed dll. It was .NET 1.1 now I want .NET
2.0

I made some changes and I now get some warnings when compiling. I get
no errors.

Running this dll from my C# app returns the following exception:

{"Strong name validation failed. (Exception from HRESULT: 0x8013141A)"}

referring to the data:

{System.Collections.ListDictionaryInternal}


Now as far as I know .NET 2.0 does not contain
"System.Collections.ListDictionaryInternal". I'de like to fix my c++
file to point to the new
"System.Collections.Specialized.ListDictionary" but I can't even find
where it is trying to do this :( Searching the project for
"ListDictionary" did not return anything.

Any hints?

V. (c++ ultra-noob)
 
L

Lloyd Dupont

I think you should look at the error's stack trace to know where this error
is coming from.

--
Regards,
Lloyd Dupont

NovaMind development team
NovaMind Software
Mind Mapping Software
<www.nova-mind.com>
 

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