Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My projects are set up like this:

  • Project "Definition"
  • Project "Implementation"
  • Project "Consumer"

Project "Consumer" references both "Definition" and "Implementation", but does not statically reference any types in "Implementation".

When the application starts, Project "Consumer" calls a static method in "Definition", which needs to find types in "Implementation"

Is there a way I can force any referenced assembly to be loaded into the App Domain without knowing the path or name, and preferably without having to use a full-fledged IOC framework?

share|improve this question
1  
What kind of problem is it causing? Why do you need to force the loading? – Mike Two Mar 5 '10 at 4:50
It's not getting loaded at all, presumably because there's no static dependency – Daniel Schaffer Mar 5 '10 at 4:52
How are you trying to "find types" in implementation? Are you looking for something that implements a specific interface? – Mike Two Mar 5 '10 at 4:55
@Mike: Yes. I'm doing AppDomain.CurrentDomain.GetAssemblies, and using a linq query to recursively call GetTypes() on each of them. – Daniel Schaffer Mar 5 '10 at 4:57

3 Answers

up vote 27 down vote accepted

This seemed to do the trick:

        var loadedAssemblies = AppDomain.CurrentDomain.GetAssemblies().ToList();
        var loadedPaths = loadedAssemblies.Select(a => a.Location).ToArray();

        var referencedPaths = Directory.GetFiles(AppDomain.CurrentDomain.BaseDirectory, "*.dll");
        var toLoad = referencedPaths.Where(r => !loadedPaths.Contains(r, StringComparer.InvariantCultureIgnoreCase)).ToList();
        toLoad.ForEach(path => loadedAssemblies.Add(AppDomain.CurrentDomain.Load(AssemblyName.GetAssemblyName(path))));

As Jon noted, the ideal solution would need to recurse into the dependencies for each of the loaded assemblies, but in my specific scenario I don't have to worry about it.


Update: The Managed Extensibility Framework (System.ComponentModel) included in .NET 4 has much better facilities for accomplishing things like this.

share|improve this answer
+1 This solution led me to the solution to my project. – Griffin Sep 12 '12 at 17:09

You can use Assembly.GetReferencedAssemblies to get an AssemblyName[], and then call Assembly.Load(AssemblyName) on each of them. You'll need to recurse, of course - but preferably keeping track of assemblies you've already loaded :)

share|improve this answer
I found that, but the problem is that I have to do whatever I'm doing from the referenced assembly... and at least in the context of a unit test, GetCallingAssembly, GetExecutingAssembly of course return the referenced assembly, and GetEntryAssembly returns null :\ – Daniel Schaffer Mar 5 '10 at 4:45
I just realized that I explained my question very badly... it's reworded now – Daniel Schaffer Mar 5 '10 at 4:51
2  
If you are after loading reference assemblies then the above will solve your problem. You can also ask a specific type typeof(T).Assembly if that helps. I have a feeling that what you need is to dynamically load the assemblies that contain the implementation (not referenced). If this is the case, you will have to either keep a static list of name and load them manually or going through your entire directory, load and then find the type with the right interfaces. – Fadrian Sudaman Mar 5 '10 at 4:58

Daniel's example code here is excellent. Perfect solution for forcing assemblies referenced in Solution Explorer but not loaded by .Net runtime to be loaded. After this code has run, all assemblies are returned by AppDomain.CurrentDomain.GetAssemblies(). Beautiful stuff! (I gotta start using Linq more...)

share|improve this answer
My lack of a reputation score doesn't allow me to comment directly on Daniel's answer above. Sorry about that! – john_30 Jul 2 '10 at 21:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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