I inherited a substantial amount of code, including a visual studio project that is supposed to (as best as I can tell) build a .lib file. Visual studio says \"... Generating C
If the Methods you want to export are in a class, you have to __declspec(dllexport) on the class. Otherwise no .lib will be created.
__declspec(dllexport)