0

In my simple console application I'm using dll assembly with useful functionality, and there are no issues when that files contains in the same directory. But how to reference to dll assembly, which is located in the parent directory of the executable file?

shmnff
  • 647
  • 2
  • 15
  • 31

1 Answers1

0

It does not work because the OS does not know where the dll is. You can add the path of the dll to your environmental variables and it will work or add the dll to a path that's already in your environmental variables.

g1b
  • 11
  • 2