|
Is there any way to include external Combres resource set configuration? What I mean is, classically you have:
<combres>
<resourceSets ...>
<resourceSet/>
<resourceSet/>
<resourceSet/>
...
</resourceSets>
</combres>
However, with a large number of sets this becomes somewhat unwieldy, what I'm thinking is something like:
<combres>
<resourceSets ...>
<resourceSet/>
<resourceSet/>
<resourceSet/>
<include fileName="~/App_Data/combres_bob.xml"/>
<include fileName="~/App_Data/combres_fred.xml"/>
...
</resourceSets>
</combres>
In these include files would only ever be resourceSet nodes such as:
<combres>
<resourceSet/>
...
</combres>
These would then be merged into the main set before processing replacing out the include nodes. This shouldn't be too hard to accomplish I already have something working I just wanted to share the thought and wondered if anything like this existed already?
|