I have a problem using a dll with a link to a service that should read a user configuration file.
My situation is this: - a DLL that reads its own configuration file (using configurationManager.openExeConfiguration (dllname.dll.config)) - the main application that uses the DLL (application for 3D applications)
This works fine, the dll reads the correct configuration settings.
Now I have to add the service link to my DLL. The problem is that it is trying to read the standard app.config file (which does not exist) instead of reading the dllname.dll.config file.
Does anyone have a solution for this?
Thanks,
source
share