Skip to content

Commit

Permalink
Quick fix compilation erros
Browse files Browse the repository at this point in the history
  • Loading branch information
hadashiA committed Dec 19, 2023
1 parent 198a954 commit d903ba3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static class ContainerBuilderExtensions
this IContainerBuilder builder,
Func<IObjectResolver, TInterface> implementationConfiguration,
Lifetime lifetime)
=> builder.Register(new FuncRegistrationBuilder(implementationConfiguration, typeof(TInterface), lifetime));
=> builder.Register(new FuncRegistrationBuilder(container => implementationConfiguration(container), typeof(TInterface), lifetime));

[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static RegistrationBuilder RegisterInstance<TInterface>(
Expand Down

0 comments on commit d903ba3

Please sign in to comment.