I\'m looking the way to read all assemblies (.dlls) used by my app.
In a standard C# project there is \"References\" folder, when it is expanded I can read all lib
If you have an Assembly object, you can call GetReferencedAssemblies() on it to get any references that assembly uses. To get a list of assemblies the currently running project uses, you can use:
Assembly
GetReferencedAssemblies()
System.Reflection.Assembly.GetExecutingAssembly().GetReferencedAssemblies()