Aleksei Ananev
Aleksei Ananev
### Description [.RegisterFactory](https://github.com/unitycontainer/abstractions/blob/master/src/Abstracts/IUnityContainer.cs#L162) should take `factory` with set of [ResolverOverride](https://github.com/unitycontainer/abstractions/blob/master/src/Dependency/Resolution/Abstracts/ResolverOverride.cs) passed by [Resolve](https://github.com/unitycontainer/abstractions/blob/master/src/Abstracts/IUnityContainer.cs#L235). ### Problem Current implementation of `.RegisterFactory` doesn't allow to take `ResolverOverride[]` passed by `.Resolve` like `name` or...
## Description It's not the same as https://github.com/unitycontainer/container/issues/160, but perhaps it is related to each other. ## How to reproduce Compile and run the following code for `.NET Core` (I...
## How to reproduce Use standard ASP.NET Core application (I'm tried on `netcoreapp2.1`, `netcoreapp2.2` and `netcoreapp3.0`) ```C# using Microsoft.AspNetCore; using Microsoft.AspNetCore.Hosting; using Unity; using Unity.Microsoft.DependencyInjection; namespace WebApplication1 { public class...