Deploying My DLL To GAC, References Other DLL Not In GAC

Viewed 979

I am building a class library. This library will be deployed to the GAC.

In my library, I have references to some external dependencies. The dependencies cannot be deployed to the GAC.

When I deploy my library, and use it, it complains that it can't load the dependencies.

How do I deploy the third-party DLLs so my assembly can reference them?

1 Answers
Related