GetReferencedAssemblies not returning all referenced assemblies
GetReferencedAssemblies is used to retrieve all referenced assemblies by assembly. But sometimes this list is not complete, and does no contain all assemblies, that are simply added to project references in Visual Studio. The problem is, that assembly is loaded to AppDomain “on demand” – lazy load – you must first “call/use something” from that assembly.…