开发者

Com DLL Gives Exception .NET 4 only

开发者 https://www.devze.com 2023-03-31 15:00 出处:网络
A COM DLL works in .NET 3.5 SP1, but gives exception in .NET 4.0 The full error is Retrieving the COM class factory for component with CLSID {B229C879-1B52-4DE9-A42B-75C415EA1EBC} failed due to th

A COM DLL works in .NET 3.5 SP1, but gives exception in .NET 4.0

The full error is

Retrieving the COM class factory for component with CLSID {B229C879-1B52-4DE9-A42B-75C415EA1EBC} failed due to the follo开发者_StackOverflowwing error: 8007045a A dynamic link library (DLL) initialization routine failed. (Exception from HRESULT: 0x8007045A).

If I change the target framework to 3.5 it works, back to 4.0 it doesn't.

The application is a desktop WPF app.

How can this be solved?


The DllMain() method of the DLL returned FALSE. You'll need to use a debugger to find out why. Set a breakpoint on it and enable unmanaged debugging with Project + Properties, Debug tab. Source code and a .pdb file for the DLL is required.

0

精彩评论

暂无评论...
验证码 换一张
取 消