I have a desktop app which I need to test my windows service with.
The application just call a windows service class which handle my business, First it should load some data from app.config.
The app config is within the sevice project and I store my confugration in a custom section [ABCConfigurationSection]. Like ...
<ABCConfigurationSection>
<ConnectSettings>
<clear />
<add key="HostIp" value="10.0.X.X"/>
</ConnectSettings>
</ABCConfigurationSection>
The main config section is like ..
<configuration>
<configSections>
<section name="ABCConfigurationSection" type="ABCConfiguration, App.Core" />
</configSections>
</configuration>
When I retrive the configuration sections passing the "ABCConfigurationSection" as section name I got null ! Any idea about if the strcture of the app config is missing something