BoDi icon indicating copy to clipboard operation
BoDi copied to clipboard

A very small, embeddable IoC container (for SpecFlow)

Results 28 BoDi issues
Sort by recently updated
recently updated
newest added

I want to update container with another container. Is it possible?

I'm using a SpecFlow runtime plugin and the RegisterGlobalDependencies event to add my own dependencies to the global SpecFlow container. When I ask a sub-container (Feature- or ScenarioContainer) inside the...

Closes https://github.com/gasparnagy/BoDi/issues/18

There is a scenario which requires the following functionality to be available: `public void RegisterCollection(Type dependencyType, IEnumerable dependencyTypes)` This should register the collection of types as a collection of their...

@gasparnagy BoDi does not currently provide any way to track and automatically dispose of objects returned from factory delegates. The following code changes enable this functionality while preserving the existing...

As noted in an ignored integration test: **BoDi.Tests.RegisterFactoryDelegateTests.ShouldThrowExceptionForDynamicCircuarDepenencies** - if a factory delegate registers a component and makes use of a resolved `IObjectContainer` inside of the registration, circular dependencies are...

Repro steps: Create a .NETStandard project Create a .NETFramework project with BoDi container in it Dynamically register the types defined in the .NETStandard project Expected: Type registration works Actual: Exception...