From bca65eb0f2a41d4b1bfa73e7a967be350e9c35c2 Mon Sep 17 00:00:00 2001 From: Fritz Brandhuber Date: Mon, 12 Jul 2021 19:12:22 +0200 Subject: [PATCH] move TypeInstance into Domain namespace, since the new Fluent methods are accessing it indirectly Signed-off-by: Fritz Brandhuber --- ArchUnitNET/{Loader => Domain}/TypeInstance.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename ArchUnitNET/{Loader => Domain}/TypeInstance.cs (97%) diff --git a/ArchUnitNET/Loader/TypeInstance.cs b/ArchUnitNET/Domain/TypeInstance.cs similarity index 97% rename from ArchUnitNET/Loader/TypeInstance.cs rename to ArchUnitNET/Domain/TypeInstance.cs index 5dd9c12cd..c30dd8080 100644 --- a/ArchUnitNET/Loader/TypeInstance.cs +++ b/ArchUnitNET/Domain/TypeInstance.cs @@ -7,9 +7,8 @@ using System.Collections.Generic; using System.Linq; -using ArchUnitNET.Domain; -namespace ArchUnitNET.Loader +namespace ArchUnitNET.Domain { public class TypeInstance : ITypeInstance where T : IType {