My problem:
Given a list of DLL paths, find their version number and all assemblies referenced. Some may point to the same DLL but with a different path or version.
My Code:
Dim otherDomain As AppDomain = AppDomain.CreateDomain("otherDomain")
otherDomain.DoCallBack(Sub()
Assembly.ReflectionOnlyLoadFrom("filePath")
End Sub)
Dim assemblies As New List(Of Assembly)(otherDomain.ReflectionOnlyGetAssemblies())
The last line throws:
Could not load file or assembly 'file', Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies.The system cannot find the file specified.
If that line were to work, I figure I would simply go:
assemblies(0).GetName.version.tostring
assemblies(0).GetReferencedAssemblies
and then unload the Application Domain.