We have an application that loads our custom DLLs (these DLLs implement some interface) at runtime from the root of the application and execute the method by reflection.
If the user DLL needs to read some value from the configuration files, we must copy these configuration parameters to the app.config file of the main application.
Is there a way in which each custom DLL will have its own configuration file named .config and read its configuration settings from these files.
source share