I have a project called ManagedWrapper that is Managed C++ and builds as a DLL.
I have a second project called MyManagedTest that is Managed C++ and builds as a DLL.
When I try to include a header from ManagedWrapper in MyManagedTest, I get linker LNK2020 errors. I then add a reference to ManagedWrapper in "Frameworks and References" but this causes compiler errors saying that classes in ManagedWrapper are already defined (looks like it is trying to define them again in MyManagedTest because I included header files), error C2011.
What is the proper way to include classes from ManagedWrapper into MyManagedTest?
Thanks.