I'm trying to divide up my web.config into multiple config files so that when I import the DLL to other projects, the .config files will also be imported.
Issue is with SubSonicService:
I've defined: configSections
*section name="SubSonicService" type="SubSonic.SubSonicSection, SubSonic" requirePermission="false"/*
/**configsections**
But this doesn't allow me to use the configFile attribute later on in my web.config.
The error I get in the web.config is:
The element 'SubSonicService' has incomplete content. List of possible elements expected: 'providers'.
Any tips?
Thanks.