You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
container.RegisterSingleton(typeof(ICommand<Context>), typeof(Command<Context>)); container.RegisterDecorator(typeof(ICommand<>), typeof(Decorator<>)); // ok container.RegisterDecorator(typeof(ICommand<Context>), typeof(Decorator<Context>)); // NOT ok since 3.2.2, but ok on 3.2.1
is that bug or i miss something?
The text was updated successfully, but these errors were encountered:
Hi @ogorodov, thank you for reporting this! It's a bug that I've fixed now in 5.12.1-preview-822, could you please check that it works with that version as expected?
Greeting.
container.RegisterSingleton(typeof(ICommand<Context>), typeof(Command<Context>));
container.RegisterDecorator(typeof(ICommand<>), typeof(Decorator<>)); // ok
container.RegisterDecorator(typeof(ICommand<Context>), typeof(Decorator<Context>)); // NOT ok since 3.2.2, but ok on 3.2.1
is that bug or i miss something?
The text was updated successfully, but these errors were encountered: