- Add: Support for combination of assembly pattern matching and filter E.g.
kernel.Bind(x => x
.FromAssembliesMatching(IEnumerable<string> patterns, Predicate<Assembly> filter)
...);
- Add: Support for multiple configurations in one BindWith E.g.
kernel.Bind(x => {
x.FromThisAssembly().....;
x.FromThisAssembly().....;
}
Completely reimplemented, this extension is not backward compatiple. See the documentation for more information