Hi,
Im trying to load a dll that references a c++/CLI-dll. In VS all is working fine and I run a test program where everything checks out. When I try to load my dll in Lab it says it cant find the c++/CLI-dll. I copied it to the bin folder where the other dll is, but it is still not working.
This is the exception being thrown:
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.IO.FileNotFoundException: Could not load file or assembly 'FastLSM, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
at HavardscLaboratorium.FastLSM.Wrapper..ctor()
This messages pops up in the listener when I try to use my dll:
Coden: WARNING: Unable to resolve assembly 'FastLSM, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'
FastLSM is the c++/CLI-dll
Any ideas of what Im doing wrong?
Håvard