Congratulations! I have a suggestion regarding the deferred start: avoid using bool parameters in your APIs. It makes the code much less readable. In our team we always use enums for boolean options. This would make your new API look like this (I'm sure better names could be found):
container.AddFacility<StartableFacility>(f => f.DeferredStart(Options.DoNotThrow)); Omer Mor. On Jul 5, 4:08 pm, Corey <[email protected]> wrote: > Great news on the fewer number of assemblies! Is there by chance plans > to include support for resolving types not registered explicitly? -- You received this message because you are subscribed to the Google Groups "Castle Project Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en.
