|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
upgrading to .NET 2.0 woesI'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) I think you should look at the error's stack trace to know where this error
is coming from. -- Show quoteRegards, Lloyd Dupont NovaMind development team NovaMind Software Mind Mapping Software <www.nova-mind.com> <kjob***@gmail.com> wrote in message news:1134841973.635083.120070@z14g2000cwz.googlegroups.com... > 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) > |
|||||||||||||||||||||||