I am writing an application using the Microsoft enterprise library. I wrote a wrapper dll for that enterprise library dll. I want to use my wrapper in some windows form application. The problem is that every time I want to use my wrapper I get an error in the compilation that says that a reference to the enterprise library dll is missing.
I can simply solve it by supplying this reference but I think I am missing something here because I just wrapped that enterprise library dll in my dll. Why isn't the reference inherited from my wrapper project to the windows form project?
As I understand the windows form application searches the bin directory and then the GAC and if it doesn't find the wanted dll it raises an error.
The Microsoft enterprise library dll are already signed and in the GAC so what is the problem here? As I said I feel I am missing something!