C# Dll config file
- by MegaByte
Hi
Im trying to add a app.config file to my dll, but all attempts have failed.
According to MusicGenesis in 'Putting configuration information in a DLL' this should not be a problem. So obviously im doing something wrong...
The following code should return my connectionstring from my dll :
return ConfigurationManager.AppSettings["ConnectionString"];
However, when I copy the app.config file to my console application, it works fine.
Any ideas?