Debugging information for regsvr32.exe not found?

468 Views Asked by At

So, I've got a Visual Studio 2013 solution with two Visual C++ projects - one of them is a ComServer, which generates a .dll file, and the other is the ComClient, which relies on the ComServer.dll.

Now, when I try to register the ComServer.dll file by invoking regsvr32.exe (both from c:\Windows\System32 and c:\Windows\SysWOW64), a dialog box pops up with the following error:

"Debugging information for regsvr32.exe not found. Cannot find or open the pdb file."

The project property for ComServer.dll is as follows:

ComServer property pages ->Configuration properties ->Debugging: Command:"C:\Windows\System32\regsvr32.exe" Command Arguments: $(TargetPath).

Is there a fix, or any possible workaround to this issue ? (I'm new to the whole COM / Windows programming scene).

The ComServer.dll contains the following functions:

DllRegisterServer DllUnregisterServer DllGetClassObject

0

There are 0 best solutions below