M
Mark Olbert
I'm developing a set of libraries under the NET framework using C#. Certain of those library
assemblies rely on other library assemblies. Schematically:
Library A
references Utility Library 1
references Utility Library 2
When I include a reference to Library A in an application, I can access the methods of Library A,
but anything in Library A that depends on Utility Libraries 1 or 2 fails. This is apparently because
the application does not have references to either Utility Library 1 or Utility Library 2.
I can solve this problem by manually adding references in the application to Utility Libraries 1 and
2. However, I'd like to arrange things so that adding a Library A reference to any project
automatically adds references to Utility Libraries 1 and 2.
How do I do this? I'm pretty sure it can be done, because I've noticed that adding a reference to,
say, the Microsoft Excel object library actually causes several "extra" references to be added
automatically (e.g., to stdole, and to some VB library).
Thanx in advance for any help/advice!
- Mark
assemblies rely on other library assemblies. Schematically:
Library A
references Utility Library 1
references Utility Library 2
When I include a reference to Library A in an application, I can access the methods of Library A,
but anything in Library A that depends on Utility Libraries 1 or 2 fails. This is apparently because
the application does not have references to either Utility Library 1 or Utility Library 2.
I can solve this problem by manually adding references in the application to Utility Libraries 1 and
2. However, I'd like to arrange things so that adding a Library A reference to any project
automatically adds references to Utility Libraries 1 and 2.
How do I do this? I'm pretty sure it can be done, because I've noticed that adding a reference to,
say, the Microsoft Excel object library actually causes several "extra" references to be added
automatically (e.g., to stdole, and to some VB library).
Thanx in advance for any help/advice!
- Mark