A
a non e mouse
Is there a deployment guideline or suggestion for how dotnet
applications that include regular DLLs ?
If a DLL is compiled using a 32 bit compiler then the interop fails in
64 bit environments. The solution seems to be to
a) mark the dotnet application as a x86 application forcing it to run
in the 32 bit emulator
b) recompile the regular DLL with a 64 bit compiler
Presumably one needs to have two DLLs which are deployed by an
installer according to the target operating system, but one would have
expected a safer default handling of the situation.
applications that include regular DLLs ?
If a DLL is compiled using a 32 bit compiler then the interop fails in
64 bit environments. The solution seems to be to
a) mark the dotnet application as a x86 application forcing it to run
in the 32 bit emulator
b) recompile the regular DLL with a 64 bit compiler
Presumably one needs to have two DLLs which are deployed by an
installer according to the target operating system, but one would have
expected a safer default handling of the situation.