diff --git a/Debug.LightweightIocContainer.FactoryGenerator/SampleInstaller.cs b/Debug.LightweightIocContainer.FactoryGenerator/SampleInstaller.cs index 20e9a55..0592d34 100644 --- a/Debug.LightweightIocContainer.FactoryGenerator/SampleInstaller.cs +++ b/Debug.LightweightIocContainer.FactoryGenerator/SampleInstaller.cs @@ -17,5 +17,6 @@ public class SampleInstaller : IIocInstaller { registration.Add().WithGeneratedFactory(); registration.Add().WithGeneratedFactory>(); + registration.Add().WithGeneratedFactory>(); } } \ No newline at end of file diff --git a/Debug.LightweightIocContainer.FactoryGenerator/Samples/Interfaces/IOtherSample2.cs b/Debug.LightweightIocContainer.FactoryGenerator/Samples/Interfaces/IOtherSample2.cs new file mode 100644 index 0000000..1c68dc5 --- /dev/null +++ b/Debug.LightweightIocContainer.FactoryGenerator/Samples/Interfaces/IOtherSample2.cs @@ -0,0 +1,7 @@ +// Author: Simon.Gockner +// Created: 2025-12-05 +// Copyright(c) 2025 SimonG. All Rights Reserved. + +namespace Debug.LightweightIocContainer.FactoryGenerator.Samples.Interfaces; + +public interface IOtherSample2 : IOtherSample; \ No newline at end of file diff --git a/Debug.LightweightIocContainer.FactoryGenerator/Samples/OtherSample2.cs b/Debug.LightweightIocContainer.FactoryGenerator/Samples/OtherSample2.cs new file mode 100644 index 0000000..ba71fb8 --- /dev/null +++ b/Debug.LightweightIocContainer.FactoryGenerator/Samples/OtherSample2.cs @@ -0,0 +1,9 @@ +// Author: Simon.Gockner +// Created: 2025-12-05 +// Copyright(c) 2025 SimonG. All Rights Reserved. + +using Debug.LightweightIocContainer.FactoryGenerator.Samples.Interfaces; + +namespace Debug.LightweightIocContainer.FactoryGenerator.Samples; + +public class OtherSample2 : IOtherSample2; \ No newline at end of file