morcillo
morcillo

Reputation: 1109

Add DLL to program from code

Here's my problem.

I want to create an installable with DLLs. When I use it on the PC I developed the code it works just fine, but when I try to install it on another PC it doesn't add the DLLs. I think I need to add them from the source code or something like that, but I can't do it.

I was wondering if there's someone that could point me to some reading material as to how I can do it.

Upvotes: 1

Views: 261

Answers (1)

Piotr Justyna
Piotr Justyna

Reputation: 4966

It turns out that the problem was that the dlls used by the project were not the part of the solution. To fix this morcillo had to:

  • remove existing references to those dlls
  • add those dlls to the solution manually
  • reference the dlls from the solution

Glad I could help. Piotr

Upvotes: 1

Related Questions