Tagged Questions
12
votes
1answer
4k views
How do I get intellisense in app.config for a custom section?
We have a custom section in my app.config file related to our IoC container class. How can I get intellisense when editing the config file for this section, as well as getting rid of the compiler ...
2
votes
2answers
335 views
app.config: how do I make a nested customSection called appSettings be the ConfigurationManager.AppSettings
my desired app.config would be like this:
<configSections>
<sectionGroup name="QA_Environment">
<section name="databases" ...
2
votes
2answers
204 views
Multiple identical custom config sctions in app.config
I'm attempting to create a custom config section in the app.config file of my C# .NET console application. It's to store some details about some servers, like so:
<configSections>
...