Product: Microstation Connect Edition Update 15 and SDK
I have generated a native MDL Application(containing .ma and DLL) build on c++ using the MicroStation SDK's bmake tool. When I look at the details tab on the property page of the DLL, the information like product name, product version, file version, Copyright, etc fields are empty. How to get this information on the DLL?
I came across the generateAssemblyInfocpp.mki file from the mki folder. I was able to generate a file assemblyinfo.cpp using the mki file, this assemblyinfo.cpp file generated contains all the information which I need on the DLL's property page. If this is the process, then how to use the generated assemblyinfo.cpp to get the required?
Hi Devender,
I think assembly info mki is used for mixed assemblies, created e.g. using C++/CLI, not for native C++ dll.
I think your question is "general Windows software development" topic. Did you check e.g. Stack Overflow?
With regards,
Jan
Bentley Accredited Developer: iTwin Platform - AssociateLabyrinth Technology | dev.notes() | cad.point
Hi Jan,
I couldn't find much information from Stack Overflow and other forums. Do you have a way of getting these information onto the DLL using bmake tool? or any other .mki file for native c++ dll which would solve the purpose?