Skip to content

Commit d9146bb

Browse files
DevJonnyCopilot
andcommitted
fix: Cos Copilot told me to
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 812b2ff commit d9146bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/InteractiveCLI/ServiceConfigurationHelpers/ServiceFactoryOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
public class ServiceFactoryOptions<TService> where TService : class
44
{
55
public List<Action<TService, IServiceProvider>> ServiceActions { get; set; } = new();
6-
public List<Func<IServiceProvider, object[]>> ConstructorArgumentProviders { get; set; } = new();
6+
public IList<Func<IServiceProvider, object[]>> ConstructorArgumentProviders { get; private set; } = new List<Func<IServiceProvider, object[]>>();
77
public Func<IServiceProvider, object[], TService>? CustomFactory { get; set; }
88
}

0 commit comments

Comments
 (0)