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
You can use AppDomain.GetAssemblies. But this will give ALL assemblies used explicitly or implicitly in your application.