I'm going to add a DLL which is made inside C# .net to a C++ project.
According to instructions inside some references like this, I should add its reference as below:
Properties --> Common Properties --> Framework and References -->Add new Reference
In windows which titled Add Reference
I should add DLL to my C++ project.
However this windows does not show any DLL files and have no options to browse DLL files.
Does anyone know how can I bring my custom DLL into this window?
P.S. Whole this story is about the requirement that I want to connect SQL Server inside a C++ project and I don't want to use C++ libraries. Instead I want to implement SQL related stuff inside a C# class library project and import it inside C++ project using C# project DLL. If you have any ideas about this I would be grateful if you share your idea or solution.