I have a Visual Studio 2017 Community Edition. Started the new C++ console project. Marked the class I want exported as DLL with __declspec(dllexport).
But when I build my solution, I only get files with following extensions: .exe, .iobj, .ipdb and .pdb.
I tried searching through various settings in Visual Studiom including configuration manager, but I can't find where to enable the option to build the code as DLL. Is it maybe not a part of community edition?
You have to select DLL in Configuration Properties of your project.
Then probably figured out errors, if any