vote up 0 vote down star
2

Hope I'm asking this correctly:

I have a project

Projects.Client

I have my class library ( infrastructure stuff I use all the time )

Library

Assuming these are both projects, how can I do this from a class in the "Projects.Client"

using Library;

public class xxx
{
    public void DoSomething()
    {
        Library.SomeDll.DoSomething();
    }
}

SomeDll.dll is referenced in the "Library" project. "Library" is a reference in end client project "Projects.Client"

I know I could simply add SomeDll to the "Projects.Client" project but there are a number of items and I use them all the time. I'd like to be able to include the "Library" and somehow be able to reference everything within it(including raw code and dll's). Is this possible?

please note: I'd prefer not to write explicit wrappers for all the methods and the dll is static so I can not seem to get away with doing this in the "Library" project:

public static class WrapSomeDll
{
    public static extern SomeDll Dll();
}

Any inventive answers are appreciated, I might not even need dual references, wrappers e.t.c.

flag
1  
Is Library a managed assembly or an unmanaged DLL? – Cat May 26 at 0:08
sorry, I should have mentioned it is managed – 5x1llz May 26 at 2:13
So Library references a multitude of DLLs that you want automatically referenced by Projects.Client. Any publicly exposed type referenced by Library needs its parent assembly added to the Projects.Client project. There is no way around this. You need to hide these types. – Cat May 26 at 5:04

2 Answers

vote up 1 vote down check

Sorry, that doesn't work. You need the reference to SomeDll in order to use its metadata in Project.Client. It's really as simple as that.

Keep in mind that references aren't just a matter of resolving symbols to addresses. This is a matter of pulling over the metadata (types) so that it can be used.

link|flag
thanks, I wish there was a way to do it though, so I don't have to always re-import the same references in every project I do. – 5x1llz Jun 1 at 6:54
Try recording a macro while you do Add Reference. If that doesn't help, get the Visual Studio SDK and learn enough to learn how to add a reference to a project. Otherwise, create your own project template that already has the references. – John Saunders Jun 1 at 13:05
vote up 0 vote down

You just need to reference the project and add using clauses for the namespaces you want to use. There is no need to specify the name of the DLL

link|flag
Doesn't work unfortuantely, this is what I assumed myself. when I do the using, it doesn't automatically wire up ALL the namespaces in the referenced projects. So the DLL is in another project. If I am only refrencing the project, how can I access the "child" dll using a using statement? – 5x1llz May 27 at 19:35
I don't understand what you mean... "using" isn't used to reference a DLL, only to import a namespace in the code file. – Thomas Levesque May 27 at 21:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.