If I have a web application (with its own web.config) and a .dll it uses happens to have its own app.config which settings file wins when there is a conflict?
If I have a web application (with its own web.config ) and a .dll
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, you will not have any conflict because a .dll cannot have its own .config file.
Even if you put a .config file for your library in the same folder, the application is simply not going to pick up the values from it.
If you wish to use some of those values, you can merge them into your web.config.