BinsorNative Facilities Support

time to read 1 min | 115 words

Okay, I intended to post about this in more details, but I want to wrap up this day, I added support for native facilities in Binsor. By native I mean facilities that expect to be configured by Windsor XML configuration. Since I am mostly the only one that is writing Binsor based facilities, this has been a problem when people wanted to use the standard facilities.

You can see the syntax here, very Yaml like, I think :-)

I am going to post soon about how I managed to get this syntax to work.

Facility("loggerFacility", LoggingFacility, 
	loggingApi: "Log4net", 
	configFile: "Config/log4net.config",
	NestedConfig: {
		something: "foo",
		bar: "nar"
		}
	) 

More posts in "Binsor" series:

  1. (08 Dec 2007) Shove Those Imports To Another File
  2. (06 Dec 2007) Cross file extensibility
  3. (11 Jun 2007) Native Facilities Support