diff --git a/LightweightIocContainer/EnumerableExtension.cs b/LightweightIocContainer/EnumerableExtension.cs index 99f150c..efd7c62 100644 --- a/LightweightIocContainer/EnumerableExtension.cs +++ b/LightweightIocContainer/EnumerableExtension.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-07-02 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-07-02 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using System.Collections.Generic; diff --git a/LightweightIocContainer/Exceptions/IllegalAbstractMethodCreationException.cs b/LightweightIocContainer/Exceptions/IllegalAbstractMethodCreationException.cs index 3191e23..9e738c7 100644 --- a/LightweightIocContainer/Exceptions/IllegalAbstractMethodCreationException.cs +++ b/LightweightIocContainer/Exceptions/IllegalAbstractMethodCreationException.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-28 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-28 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using System.Reflection; diff --git a/LightweightIocContainer/Exceptions/MultipleRegistrationException.cs b/LightweightIocContainer/Exceptions/MultipleRegistrationException.cs index eaf8c9a..6047a0f 100644 --- a/LightweightIocContainer/Exceptions/MultipleRegistrationException.cs +++ b/LightweightIocContainer/Exceptions/MultipleRegistrationException.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-07 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-07 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using LightweightIocContainer.Interfaces; diff --git a/LightweightIocContainer/Exceptions/MultitonResolveException.cs b/LightweightIocContainer/Exceptions/MultitonResolveException.cs index 860f6ec..3682a63 100644 --- a/LightweightIocContainer/Exceptions/MultitonResolveException.cs +++ b/LightweightIocContainer/Exceptions/MultitonResolveException.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-07 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-07 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; diff --git a/LightweightIocContainer/Installers/AssemblyInstaller.cs b/LightweightIocContainer/Installers/AssemblyInstaller.cs index a340ab5..8823855 100644 --- a/LightweightIocContainer/Installers/AssemblyInstaller.cs +++ b/LightweightIocContainer/Installers/AssemblyInstaller.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-12 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-12 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using System.Collections.Generic; diff --git a/LightweightIocContainer/Installers/FromAssembly.cs b/LightweightIocContainer/Installers/FromAssembly.cs index 4b09819..1eafbb9 100644 --- a/LightweightIocContainer/Installers/FromAssembly.cs +++ b/LightweightIocContainer/Installers/FromAssembly.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-12 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-12 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System.Reflection; using LightweightIocContainer.Interfaces.Installers; diff --git a/LightweightIocContainer/Interfaces/Installers/IAssemblyInstaller.cs b/LightweightIocContainer/Interfaces/Installers/IAssemblyInstaller.cs index 250119d..7ff917d 100644 --- a/LightweightIocContainer/Interfaces/Installers/IAssemblyInstaller.cs +++ b/LightweightIocContainer/Interfaces/Installers/IAssemblyInstaller.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-12 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-12 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System.Collections.Generic; using System.Reflection; diff --git a/LightweightIocContainer/Interfaces/Registrations/IMultitonRegistration.cs b/LightweightIocContainer/Interfaces/Registrations/IMultitonRegistration.cs index 4a7e5a5..00b8709 100644 --- a/LightweightIocContainer/Interfaces/Registrations/IMultitonRegistration.cs +++ b/LightweightIocContainer/Interfaces/Registrations/IMultitonRegistration.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-07 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-07 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; diff --git a/LightweightIocContainer/Registrations/MultitonRegistration.cs b/LightweightIocContainer/Registrations/MultitonRegistration.cs index f253075..4727978 100644 --- a/LightweightIocContainer/Registrations/MultitonRegistration.cs +++ b/LightweightIocContainer/Registrations/MultitonRegistration.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-07 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-07 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using LightweightIocContainer.Interfaces.Registrations; diff --git a/LightweightIocContainer/TypeExtension.cs b/LightweightIocContainer/TypeExtension.cs index 5499448..aae517f 100644 --- a/LightweightIocContainer/TypeExtension.cs +++ b/LightweightIocContainer/TypeExtension.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-07-01 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-07-01 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; diff --git a/Test.LightweightIocContainer/AssemblyInstallerTest.cs b/Test.LightweightIocContainer/AssemblyInstallerTest.cs index 388aa79..4e183fc 100644 --- a/Test.LightweightIocContainer/AssemblyInstallerTest.cs +++ b/Test.LightweightIocContainer/AssemblyInstallerTest.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-12 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-12 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using System.Collections.Generic; diff --git a/Test.LightweightIocContainer/DefaultRegistrationTest.cs b/Test.LightweightIocContainer/DefaultRegistrationTest.cs index afd47a3..2782158 100644 --- a/Test.LightweightIocContainer/DefaultRegistrationTest.cs +++ b/Test.LightweightIocContainer/DefaultRegistrationTest.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-06 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-06 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using LightweightIocContainer.Interfaces.Registrations;