I have a console application project and library project (dll) in one solution. The library project has app.config file where I store a connection string to database.
The c
Do you create a app.config file for your exe ( not just for your dll)? You have to, and make sure that you copy whatever setting you have in your dll config to your exe config.
Or you can use "Add as Link" to link the app.config to your exe.