My Solution(VS2010) has many projects.
At run time, How do I get list of all the assemblies in a given project?
I can get list of all assemblies within the calling code project by following line of code.
Assembly assembly in AppDomain.CurrentDomain.GetAssemblies()
How do I get list of assemblies in a project different than calling code project?
Please help. Thanks