views:

98

answers:

0

When previously working with Castle Windsor I had a Castle.xml file that was a part of a solution folder. I then added this as a linked item to each project that was a errr.. looking for word... a startup/invoke project or a test project so I the same Castle.xml was part of Company.Server proj and Company.Server.Tests proj etc... It worked quite well..

Now with programatic IOC container, one's where you build up the wiring via a bootstrap class using fluent interface or what not (e.g. structuremap new stuff, ninject, windsor trunk) etc.. How do I share the bootstrapping across multiple projects. Do I create a new assembly called Company.Bootstrap and reference this as required or what not?

Thanks... Share :)