To resolve the error, have to register the dll in Global Assembly Cache (GAC) using regsvr command. Execute the below command in command prompt
REGSVR32 ABC.DLL
After registration completed, we have to change project properties.
Go to Visual Studio - > Select project properties -> Build tab - > Change Platform Target to X86.
It would be resolve the issue.
REGSVR32 ABC.DLL
After registration completed, we have to change project properties.
Go to Visual Studio - > Select project properties -> Build tab - > Change Platform Target to X86.
It would be resolve the issue.
Comments
Post a Comment