How do I implement a custom LOG4NET parser for my XML file. My XML file contains:
(1) extra attributes on the appender element
(2) custom replacements on the elements of some of the appenders that need to be set at runtime.
For example:
<appender name=... type=... mode="something">
<some-property-of-appender>${MyValueForThisPropertyFromDB}</some-property-of-appender>
</appender>
I have read that I am supposed to implement a Custom Repository probably using the LoggerRepositorySkeleton but not sure how to put this whole thing together. Any suggestions?