I have a .NET web application and the configuration is in web.config
which lives in the root of my project (obviously).
Recently I've noticed that <projectname>.dll.config
is also created during the build and it's basically a copy of my web.config
file. The site works just fine without this file and I wondering whether I need it?
I must say that my solution consists of a few projects and the .dll.config
is created for the main (web) project only.
Are there any guidelines on how to organise the configuration settings? Shall I disable creation of this file if it is possible? If it is possible how can I do it? Or shall I just ignore it?