c# - How to do RegAsm so that it cover 32-bit and 64-bit? -


i have dll file prepared c# , system windows 7 64-bit. when apply regasm not adding registry 64-bit path adding 32-bit path.

"c:\windows\microsoft.net\framework64\v4.0.30319\regasm.exe" /register /codebase "c:\o.dll" 

then if check guid in regedit.exe see have in 32-bit registry path: hkey_classes_root\clsid\{... guid found here ....}

instead of hkey_classes_root\wow6432node\clsid\{... not found guid ...}

as result have other issues this. can please suggest going on , why not making 32-bit , 64-bit registry entries?"

you have backwards. wow6432node 32-bit specific data goes. use 32-bit regasm (from framework directory, not framework64 directory) have component registered in wow6432node.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -