How can my .Net app determine whether to use app.config or web.config
- by sipwiz
I have a class that needs to get some settings from the application configuration file and that is used in a console based app and a web app.
Other than catching an exception how can I determine whether to use:
ServiceModelSectionGroup serviceModelSectionGroup = ServiceModelSectionGroup.GetSectionGroup(ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None));
or
ServiceModelSectionGroup serviceModelSectionGroup = ServiceModelSectionGroup.GetSectionGroup(WebConfigurationManager.OpenWebConfiguration("~"));