Is there a way to get all assemblies that depend on a given assembly?
Pseudo:
Assembly a = GetAssembly();
var dependants = a.GetDependants();
|
Is there a way to get all assemblies that depend on a given assembly? Pseudo:
| |||||||||||
feedback
|
|
If you wish to find the dependent assemblies from the current application domain, you could use something like the
The | |||||
feedback
|
|
Programatically, you can use Mono.Cecil to do this. Something like this (note this won't work if the debugger is attached - e.g. if you run it from inside VS itself):
If you don't need to do this programatically, then NDepend or Reflector can give you this information. | |||||||
feedback
|
|
I'm not aware of any built-in possibility to get dependencies at runtime. So I think the easiest solution is define an extension method and use code from this application. I used an application itself a years ago. But do not use code of it. Hope this helps. | |||
|
feedback
|
|
First define your scope, e.g.:
Then simply (*) iterate through all assemblies in your scope, and use reflection to check if they depend on your target assembly. If you want indirect as well as direct references, you'll have to rinse and repeat for all the assemblies you find. (*) Might not be quite so simple if your scope is 3 above. | ||||
|
feedback
|