I have an unmanaged class that I'm trying to dllexport from a managed DLL. I'm trying to use the unmanaged class in another managed DLL. However, when I try to do this I get link errors.
I've done this lots of times with unmanaged DLLs so I know how that works. I know how to use "public ref" etc in managed classes.
Is there some flag somewhere I need to set? Or do I have to do some DllImport magic?
This is on .net 2.0, VS2005.