dll loading problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a mixed mananage-non managed dll written in c++. when I try to use it from a C# app it runs just fine on my developing computer but when I try to move it to other machine it won't find the dll. I already tried to register on the gac, but I do not know how to reference it from there using the visual studio IDE
does anybody has any ideas

Alfonso
 
but when I try to move it to other machine it won't find the dll.

So where is the DLL located in relative to the app directory?
I already tried to register on the gac, but I do not know how to reference it from there using the visual studio IDE.

Reference a copy in some other folder. It will be loaded from the GAC
at runtime.



Mattias
 
Back
Top