Is it possible to move applicationSettings to another config file as it is possible with connectionStrings or appSettings?
When I create Settings for my web application using the designer I get applicationSettings section in my web.config such as:
<applicationSettings>
<TestWebApplication.Properties.Settings>
<setting name="AnotherSetting" serializeAs="String">
<value>Another setting value</value>
</setting>
</TestWebApplication.Properties.Settings>
</applicationSettings>
I would like to be able to move them to another file like appSettings:
<appSettings configSource="configappsettings.config"/>
I'm working with a project that has lots of settings accessed through class generated with designer and web.config is extremely hard to maintain between multiple environments. It would be even better if I could force Settings class to use appSettings not applicationSettings.
Is it possible?
Thanks in advance for help.
See Question&Answers more detail:os