I have an unmanaged DLL that a unmanaged application needs when it runs. Inside VS .NET, I have a soluction and in the solution are a project for the dll and for the application. How can I provide the DLL to the application at runtime? I tried adding the DLL to the application project, but this did not work. They only way I know how is to copy the DLL to the run directory with the application.
There must be a better way that is more like working with managed appilcations. I want my deployment wizard to know that the DLL in my solution is part of my distribution as well.
There must be a better way that is more like working with managed appilcations. I want my deployment wizard to know that the DLL in my solution is part of my distribution as well.