After reading about the differences between appSettings and applicationSettings in a web.config file, I'd rather use the applicationSettings section and benefit from the strongly typed settings. But with the appSettings section, you could previously have a separate section on a different file and simply reference it on the web.config using the 'file=' attribute on the section as so.
I would like to keep my application settings separate from the web.config file so that when the user changes any of the settings, the application is not restarted automatically.
Is there a similar way to achieve this using the new applicationSettings section and benefit from strongly typed settings?