- move files to folders to test correct generation of usings

pull/62/head
Simon G. 3 days ago
parent ba922066a1
commit 40e0260428
Signed by: SimonG
GPG Key ID: 0B82B964BA536523
  1. 3
      Debug.LightweightIocContainer.FactoryGenerator/SampleInstaller.cs
  2. 9
      Debug.LightweightIocContainer.FactoryGenerator/Samples/Factories/ISampleClassFactory.cs
  3. 3
      Debug.LightweightIocContainer.FactoryGenerator/Samples/Interfaces/ISampleClass.cs
  4. 9
      Debug.LightweightIocContainer.FactoryGenerator/Samples/SampleClass.cs

@ -2,6 +2,9 @@
// Created: 2025-12-01
// Copyright(c) 2025 SimonG. All Rights Reserved.
using Debug.LightweightIocContainer.FactoryGenerator.Samples;
using Debug.LightweightIocContainer.FactoryGenerator.Samples.Factories;
using Debug.LightweightIocContainer.FactoryGenerator.Samples.Interfaces;
using LightweightIocContainer.FactoryGenerator;
using LightweightIocContainer.Interfaces.Installers;
using LightweightIocContainer.Interfaces.Registrations;

@ -1,11 +1,6 @@
// Author: Simon.Gockner
// Created: 2025-12-01
// Copyright(c) 2025 SimonG. All Rights Reserved.
using Debug.LightweightIocContainer.FactoryGenerator.Samples.Interfaces;
namespace Debug.LightweightIocContainer.FactoryGenerator;
public class SampleClass : ISampleClass;
public interface ISampleClass;
namespace Debug.LightweightIocContainer.FactoryGenerator.Samples.Factories;
public interface ISampleClassFactory
{

@ -0,0 +1,3 @@
namespace Debug.LightweightIocContainer.FactoryGenerator.Samples.Interfaces;
public interface ISampleClass;

@ -0,0 +1,9 @@
// Author: Simon.Gockner
// Created: 2025-12-01
// Copyright(c) 2025 SimonG. All Rights Reserved.
using Debug.LightweightIocContainer.FactoryGenerator.Samples.Interfaces;
namespace Debug.LightweightIocContainer.FactoryGenerator.Samples;
public class SampleClass : ISampleClass;
Loading…
Cancel
Save