├── .config └── dotnet-tools.json ├── .csharpierignore ├── .git-blame-ignore-revs ├── .gitconfig ├── .github └── workflows │ ├── build.yaml │ ├── codeql.yml │ └── label-issues.yaml ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── ArchUnit.sln ├── ArchUnit.sln.DotSettings ├── ArchUnitNET.MSTestV2 ├── ArchRuleAssert.cs ├── ArchRuleExtensions.cs └── ArchUnitNET.MSTestV2.csproj ├── ArchUnitNET.MSTestV2Tests ├── ArchUnitNET.MSTestV2Tests.csproj └── RuleEvaluationTests.cs ├── ArchUnitNET.NUnit ├── ArchRuleAssert.cs ├── ArchRuleExtensions.cs └── ArchUnitNET.NUnit.csproj ├── ArchUnitNET.NUnitTests ├── ArchUnitNET.NUnitTests.csproj └── RuleEvaluationTests.cs ├── ArchUnitNET.TUnit ├── ArchRuleAssert.cs ├── ArchRuleExtensions.cs ├── ArchUnitNET.TUnit.csproj └── FailedArchRuleException.cs ├── ArchUnitNET.TUnitTests ├── ArchUnitNET.TUnitTests.csproj └── RuleEvaluationTests.cs ├── ArchUnitNET.xUnit ├── ArchRuleAssert.cs ├── ArchRuleExtensions.cs ├── ArchUnitNET.xUnit.csproj └── FailedArchRuleException.cs ├── ArchUnitNET.xUnitTests ├── ArchUnitNET.xUnitTests.csproj └── RuleEvaluationTests.cs ├── ArchUnitNET.xUnitV3 ├── ArchRuleAssert.cs ├── ArchRuleExtensions.cs ├── ArchUnitNET.xUnitV3.csproj └── FailedArchRuleException.cs ├── ArchUnitNET.xUnitV3Tests ├── ArchUnitNET.xUnitV3Tests.csproj └── RuleEvaluationTests.cs ├── ArchUnitNET ├── ArchUnitNET.csproj ├── ArchUnitNET.csproj.DotSettings ├── Domain │ ├── Architecture.cs │ ├── ArchitectureCache.cs │ ├── ArchitectureCacheKey.cs │ ├── Assembly.cs │ ├── Attribute.cs │ ├── AttributeArgument.cs │ ├── AttributeInstance.cs │ ├── AttributeNamedArgument.cs │ ├── Class.cs │ ├── Dependencies │ │ ├── AccessFieldDependency.cs │ │ ├── AttributeMemberDependency.cs │ │ ├── AttributeTypeDependency.cs │ │ ├── BodyTypeMemberDependency.cs │ │ ├── CastTypeDependency.cs │ │ ├── FieldTypeDependency.cs │ │ ├── GenericArgumentMemberDependency.cs │ │ ├── GenericArgumentTypeDependency.cs │ │ ├── IMemberMemberDependency.cs │ │ ├── IMemberTypeDependency.cs │ │ ├── ITypeDependency.cs │ │ ├── ImplementsInterfaceDependency.cs │ │ ├── InheritsBaseClassDependency.cs │ │ ├── MemberGenericParameterTypeConstraintDependency.cs │ │ ├── MemberTypeInstanceDependency.cs │ │ ├── MetaDataDependency.cs │ │ ├── MethodCallDependency.cs │ │ ├── MethodSignatureDependency.cs │ │ ├── PropertyTypeDependency.cs │ │ ├── TypeCheckDependency.cs │ │ ├── TypeGenericParameterTypeConstraintDependency.cs │ │ ├── TypeInstanceDependency.cs │ │ └── TypeReferenceDependency.cs │ ├── Enum.cs │ ├── EnumerableIdentifier.cs │ ├── Exceptions │ │ ├── AssemblyDoesNotExistInArchitecture.cs │ │ ├── InvalidStateException.cs │ │ ├── MultipleOccurrencesInSequenceException.cs │ │ └── TypeDoesNotExistInArchitecture.cs │ ├── Extensions │ │ ├── ArchitectureExtensions.cs │ │ ├── AssemblyExtensions.cs │ │ ├── AttributeExtensions.cs │ │ ├── DependencyExtensions.cs │ │ ├── EnumerableExtensions.cs │ │ ├── ICanBeAnalyzedExtensions.cs │ │ ├── MemberExtensions.cs │ │ ├── NamingExtensions.cs │ │ ├── NullableExtensions.cs │ │ └── TypeExtensions.cs │ ├── FieldMember.cs │ ├── FunctionPointer.cs │ ├── GenericArgument.cs │ ├── GenericParameter.cs │ ├── ICanBeAnalyzed.cs │ ├── ICanBeCompilerGenerated.cs │ ├── ICanBeGeneric.cs │ ├── IHasAssemblyQualifiedName.cs │ ├── IHasAttributes.cs │ ├── IHasDependencies.cs │ ├── IHasDescription.cs │ ├── IHasName.cs │ ├── IHasVisibility.cs │ ├── IMember.cs │ ├── IObjectProvider.cs │ ├── IResidesInAssembly.cs │ ├── IResidesInNamespace.cs │ ├── ISizedObjectProvider.cs │ ├── IType.cs │ ├── ITypeInstance.cs │ ├── Interface.cs │ ├── MemberList.cs │ ├── MethodForm.cs │ ├── MethodMember.cs │ ├── MethodMemberInstance.cs │ ├── Namespace.cs │ ├── ObjectProvider.cs │ ├── ObjectProviderCache.cs │ ├── PlantUml │ │ ├── Exceptions │ │ │ ├── ComponentIntersectionException.cs │ │ │ ├── FileAlreadyExistsException.cs │ │ │ ├── IllegalComponentNameException.cs │ │ │ ├── IllegalDiagramException.cs │ │ │ ├── PlantUmlParseException.cs │ │ │ └── UmlNotBuiltException.cs │ │ ├── Export │ │ │ ├── DependencyFilters.cs │ │ │ ├── GenerationOptions.cs │ │ │ ├── IPlantUmlContainer.cs │ │ │ ├── IPlantUmlElement.cs │ │ │ ├── PlantUmlClass.cs │ │ │ ├── PlantUmlDependency.cs │ │ │ ├── PlantUmlDiagram.cs │ │ │ ├── PlantUmlFileBuilder.cs │ │ │ ├── PlantUmlInterface.cs │ │ │ ├── PlantUmlNameChecker.cs │ │ │ ├── PlantUmlNamespace.cs │ │ │ ├── PlantUmlSlice.cs │ │ │ └── RenderOptions.cs │ │ └── Import │ │ │ ├── Alias.cs │ │ │ ├── ClassDiagramAssociation.cs │ │ │ ├── ComponentIdentifier.cs │ │ │ ├── ComponentName.cs │ │ │ ├── ParsedDependency.cs │ │ │ ├── PlantUmlComponent.cs │ │ │ ├── PlantUmlComponentDependency.cs │ │ │ ├── PlantUmlComponents.cs │ │ │ ├── PlantUmlDiagramBuilder.cs │ │ │ ├── PlantUmlParsedDiagram.cs │ │ │ ├── PlantUmlParser.cs │ │ │ ├── PlantUmlPatterns.cs │ │ │ └── Stereotype.cs │ ├── PropertyMember.cs │ ├── Slice.cs │ ├── SliceIdentifier.cs │ ├── SliceIdentifierComparer.cs │ ├── StaticConstants.cs │ ├── StringIdentifier.cs │ ├── StringIdentifierComparer.cs │ ├── Struct.cs │ ├── SystemTypeObjectProvider.cs │ ├── TypeDependencyComparer.cs │ ├── TypeInstance.cs │ ├── UnavailableType.cs │ ├── Visibility.cs │ └── Writability.cs ├── Fluent │ ├── ArchRule.cs │ ├── ArchRuleCreator.cs │ ├── ArchRuleDefinition.cs │ ├── BasicObjectProvider.cs │ ├── BasicObjectProviderDefinition.cs │ ├── CombinedArchRule.cs │ ├── CombinedArchRuleCreator.cs │ ├── CombinedArchRuleDefinition.cs │ ├── ConditionManager.cs │ ├── Conditions │ │ ├── ArchitectureCondition.cs │ │ ├── ComplexCondition.cs │ │ ├── ConditionResult.cs │ │ ├── EnumerableCondition.cs │ │ ├── ExistsCondition.cs │ │ ├── ICondition.cs │ │ ├── IOrderedCondition.cs │ │ ├── OrderedArchitectureCondition.cs │ │ ├── RelationCondition.cs │ │ └── SimpleCondition.cs │ ├── CustomArchRule.cs │ ├── EvaluationResult.cs │ ├── Exceptions │ │ ├── CannotGetObjectsOfCombinedArchRuleCreatorException.cs │ │ └── CannotGetObjectsOfCombinedArchRuleException.cs │ ├── Extensions │ │ ├── EvaluationResultExtensions.cs │ │ └── SyntaxElementExtensions.cs │ ├── Freeze │ │ ├── FreezingArchRule.cs │ │ ├── FrozenRule.cs │ │ ├── IViolationStore.cs │ │ ├── JsonViolationStore.cs │ │ └── XmlViolationStore.cs │ ├── IArchRule.cs │ ├── IArchRuleCreator.cs │ ├── ICanBeEvaluated.cs │ ├── LogicalConjunction.cs │ ├── LogicalConjunctionDefinition.cs │ ├── PlantUml │ │ ├── GivenPlantUmlFluentComponentDiagram.cs │ │ ├── PlantUmlDefinition.cs │ │ ├── PlantUmlFluentComponentDiagramCreator.cs │ │ └── PlantUmlFluentComponentDiagramInitializer.cs │ ├── PredicateManager.PredicateManager.cs │ ├── Predicates │ │ ├── ArchitecturePredicate.cs │ │ ├── EnumerablePredicate.cs │ │ ├── IPredicate.cs │ │ └── SimplePredicate.cs │ ├── Slices │ │ ├── GivenSlices.cs │ │ ├── SliceAssignment.cs │ │ ├── SliceRule.cs │ │ ├── SliceRuleCreator.cs │ │ ├── SliceRuleDefinition.cs │ │ ├── SliceRuleInitializer.cs │ │ └── SlicesShould.cs │ └── Syntax │ │ ├── ConjunctionFactory.cs │ │ ├── Elements │ │ ├── GivenObjects.cs │ │ ├── GivenObjectsConjunction.cs │ │ ├── GivenObjectsConjunctionWithDescription.cs │ │ ├── GivenObjectsThat.cs │ │ ├── IComplexObjectConditions.cs │ │ ├── IObjectConditions.cs │ │ ├── IObjectPredicates.cs │ │ ├── Members │ │ │ ├── FieldMembers │ │ │ │ ├── FieldMembersShould.cs │ │ │ │ ├── FieldMembersShouldConjunction.cs │ │ │ │ ├── FieldMembersShouldConjunctionWithDescription.cs │ │ │ │ ├── GivenFieldMembers.cs │ │ │ │ ├── GivenFieldMembersConjunction.cs │ │ │ │ ├── GivenFieldMembersConjunctionWithDescription.cs │ │ │ │ ├── GivenFieldMembersThat.cs │ │ │ │ ├── IComplexFieldMemberConditions.cs │ │ │ │ ├── IFieldMemberConditions.cs │ │ │ │ ├── IFieldMemberPredicates.cs │ │ │ │ └── ShouldRelateToFieldMembersThat.cs │ │ │ ├── GivenMembers.cs │ │ │ ├── GivenMembersConjunction.cs │ │ │ ├── GivenMembersConjunctionWithDescription.cs │ │ │ ├── GivenMembersThat.cs │ │ │ ├── IComplexMemberConditions.cs │ │ │ ├── IMemberConditions.cs │ │ │ ├── IMemberPredicates.cs │ │ │ ├── MemberConditionsDefinition.cs │ │ │ ├── MemberPredicatesDefinition.cs │ │ │ ├── MembersShould.cs │ │ │ ├── MembersShouldConjunction.cs │ │ │ ├── MembersShouldConjunctionWithDescription.cs │ │ │ ├── MethodMembers │ │ │ │ ├── GivenMethodMembers.cs │ │ │ │ ├── GivenMethodMembersConjunction.cs │ │ │ │ ├── GivenMethodMembersConjunctionWithDescription.cs │ │ │ │ ├── GivenMethodMembersThat.cs │ │ │ │ ├── IComplexMethodMemberConditions.cs │ │ │ │ ├── IMethodMemberConditions.cs │ │ │ │ ├── IMethodMemberPredicates.cs │ │ │ │ ├── MethodMemberConditionsDefinition.cs │ │ │ │ ├── MethodMemberPredicatesDefinition.cs │ │ │ │ ├── MethodMembersShould.cs │ │ │ │ ├── MethodMembersShouldConjunction.cs │ │ │ │ ├── MethodMembersShouldConjunctionWithDescription.cs │ │ │ │ └── ShouldRelateToMethodMembersThat.cs │ │ │ ├── PropertyMembers │ │ │ │ ├── GivenPropertyMembers.cs │ │ │ │ ├── GivenPropertyMembersConjunction.cs │ │ │ │ ├── GivenPropertyMembersConjunctionWithDescription.cs │ │ │ │ ├── GivenPropertyMembersThat.cs │ │ │ │ ├── IComplexPropertyMemberConditions.cs │ │ │ │ ├── IPropertyMemberConditions.cs │ │ │ │ ├── IPropertyMemberPredicates.cs │ │ │ │ ├── PropertyMemberConditionsDefinition.cs │ │ │ │ ├── PropertyMemberPredicateDefinition.cs │ │ │ │ ├── PropertyMembersShould.cs │ │ │ │ ├── PropertyMembersShouldConjunction.cs │ │ │ │ ├── PropertyMembersShouldConjunctionWithDescription.cs │ │ │ │ └── ShouldRelateToPropertyMembersThat.cs │ │ │ └── ShouldRelateToMembersThat.cs │ │ ├── ObjectConditionsDefinition.cs │ │ ├── ObjectPredicatesDefinition.cs │ │ ├── ObjectsShould.cs │ │ ├── ObjectsShouldConjunction.cs │ │ ├── ObjectsShouldConjunctionWithDescription.cs │ │ ├── ShouldRelateToObjectsThat.cs │ │ └── Types │ │ │ ├── Attributes │ │ │ ├── AttributeConditionsDefinition.cs │ │ │ ├── AttributePredicatesDefinition.cs │ │ │ ├── AttributesShould.cs │ │ │ ├── AttributesShouldConjunction.cs │ │ │ ├── AttributesShouldConjunctionWithDescription.cs │ │ │ ├── GivenAttributes.cs │ │ │ ├── GivenAttributesConjunction.cs │ │ │ ├── GivenAttributesConjunctionWithDescription.cs │ │ │ ├── GivenAttributesThat.cs │ │ │ ├── IAttributeConditions.cs │ │ │ ├── IAttributePredicates.cs │ │ │ ├── IComplexAttributeConditions.cs │ │ │ └── ShouldRelateToAttributesThat.cs │ │ │ ├── Classes │ │ │ ├── ClassConditionsDefinition.cs │ │ │ ├── ClassPredicatesDefinition.cs │ │ │ ├── ClassesShould.cs │ │ │ ├── ClassesShouldConjunction.cs │ │ │ ├── ClassesShouldConjunctionWithDescription.cs │ │ │ ├── GivenClasses.cs │ │ │ ├── GivenClassesConjunction.cs │ │ │ ├── GivenClassesConjunctionWithDescription.cs │ │ │ ├── GivenClassesThat.cs │ │ │ ├── IClassConditions.cs │ │ │ ├── IClassPredicates.cs │ │ │ ├── IComplexClassConditions.cs │ │ │ └── ShouldRelateToClassesThat.cs │ │ │ ├── GivenTypes.cs │ │ │ ├── GivenTypesConjunction.cs │ │ │ ├── GivenTypesConjunctionWithDescription.cs │ │ │ ├── GivenTypesThat.cs │ │ │ ├── IComplexTypeConditions.cs │ │ │ ├── ITypeConditions.cs │ │ │ ├── ITypePredicates.cs │ │ │ ├── Interfaces │ │ │ ├── GivenInterfaces.cs │ │ │ ├── GivenInterfacesConjunction.cs │ │ │ ├── GivenInterfacesConjunctionWithDescription.cs │ │ │ ├── GivenInterfacesThat.cs │ │ │ ├── IComplexInterfaceConditions.cs │ │ │ ├── IInterfaceConditions.cs │ │ │ ├── IInterfacePredicates.cs │ │ │ ├── InterfacesShould.cs │ │ │ ├── InterfacesShouldConjunction.cs │ │ │ ├── InterfacesShouldConjunctionWithDescription.cs │ │ │ └── ShouldRelateToInterfacesThat.cs │ │ │ ├── ShouldRelateToTypesThat.cs │ │ │ ├── TypeConditionsDefinition.cs │ │ │ ├── TypePredicatesDefinition.cs │ │ │ ├── TypesShould.cs │ │ │ ├── TypesShouldConjunction.cs │ │ │ └── TypesShouldConjunctionWithDescription.cs │ │ └── SyntaxElement.cs ├── Library │ └── Rules │ │ └── TargetFrameworkRules.cs └── Loader │ ├── ArchBuilder.cs │ ├── ArchLoader.cs │ ├── ArchLoaderException.cs │ ├── AssemblyRegistry.cs │ ├── DotNetCoreAssemblyResolver.cs │ ├── FilterResult.cs │ ├── InstructionExtensions.cs │ ├── LoadTaskRegistry.cs │ ├── LoadTasks │ ├── AddAttributesAndAttributeDependencies.cs │ ├── AddBackwardsDependencies.cs │ ├── AddBaseClassDependency.cs │ ├── AddClassDependencies.cs │ ├── AddFieldAndPropertyDependencies.cs │ ├── AddGenericArgumentDependencies.cs │ ├── AddGenericParameterDependencies.cs │ ├── AddMembers.cs │ ├── AddMethodDependencies.cs │ ├── AddTypesToNamespaces.cs │ ├── CollectAssemblyAttributes.cs │ └── ILoadTask.cs │ ├── MonoCecilAttributeExtensions.cs │ ├── MonoCecilMemberExtensions.cs │ ├── MonoCecilTypeExtensions.cs │ ├── NamespaceRegistry.cs │ ├── RegexUtils.cs │ ├── RegistryUtils.cs │ ├── Type.cs │ └── TypeFactory.cs ├── ArchUnitNETTests ├── ArchUnitNET │ └── Storage │ │ ├── CustomPathFrozenRules.json │ │ ├── FrozenRules.json │ │ └── FrozenRules.xml ├── ArchUnitNETTests.csproj ├── ArchitectureTests │ └── ArchUnitArchitectureTests.cs ├── AssemblyTestHelper │ ├── AssemblyTestHelper.cs │ ├── AssemblyTestHelperExtensions.cs │ ├── AttributeAssemblyTestHelper.cs │ ├── DependencyAssemblyTestHelpers.cs │ ├── InterfaceAssemblyTestHelper.cs │ └── VisibilityAssemblyTestHelper.cs ├── Dependencies │ ├── AccessFieldDependenciesTests.cs │ ├── ArrayTests.cs │ ├── CastDependenciesTest.cs │ ├── CppDependenciesTests.cs │ ├── DependenciesToStaticMethodsTests.cs │ ├── ExceptionDependenciesTests.cs │ ├── ExternalDependenciesTests.cs │ ├── GeneratorDependenciesTests.cs │ ├── GenericMemberDependenciesTests.cs │ ├── KeepDependenciesInCompilerGeneratedTypesTests.cs │ ├── PlantUmlDependenciesTest.cs │ ├── PropertyDependencyTests.cs │ ├── StringDependenciesTests.cs │ ├── TypeCheckDependenciesTests.cs │ ├── TypeOfDependenciesTests.cs │ └── cpplib │ │ └── CppDllTest.dll ├── Domain │ ├── ArchitectureCacheKeyTests.cs │ ├── ArchitectureCacheTests.cs │ ├── AttributeArgumentTests.cs │ ├── AttributeTests.cs │ ├── ClassTests.cs │ ├── CompilerGeneratedTypesTests.cs │ ├── Dependencies │ │ ├── Attributes │ │ │ ├── AttributeAssertionRepository.cs │ │ │ ├── AttributeDependencyTests.cs │ │ │ ├── AttributeTestsBuild.cs │ │ │ └── TestAttributes.cs │ │ ├── Members │ │ │ ├── BodyTypeMemberDependencyTests.cs │ │ │ ├── ClassDependenciesIncludeMemberDependencies.cs │ │ │ ├── FieldDependencyTests.cs │ │ │ ├── GetterSetterExamples.cs │ │ │ ├── GetterSetterMethodDependencyTests.cs │ │ │ ├── GetterSetterTestsBuild.cs │ │ │ ├── InheritsBaseClassDependencyTests.cs │ │ │ ├── InvalidInputException.cs │ │ │ ├── KeepDependenciesInAnonymousTypesTests.cs │ │ │ ├── MemberDependencyTestBuild.cs │ │ │ ├── MemberDependencyTests.cs │ │ │ ├── MethodCallDependencyTests.cs │ │ │ ├── MethodDependencyTestBuild.cs │ │ │ ├── MethodSignatureMemberDependencyTests.cs │ │ │ └── PropertyDependencyTests.cs │ │ └── Types │ │ │ ├── GenericInterfaceTests.cs │ │ │ └── ImplementingInterfacesTest.cs │ ├── Extensions │ │ ├── ArchitectureExtensionTests.cs │ │ ├── NullableExtensionTests.cs │ │ └── TypeExtensionTests.cs │ ├── FixedSizeBufferTests.cs │ ├── GenericClassTests.cs │ ├── GenericMethodTests.cs │ ├── InterfaceTests.cs │ ├── MemberListTests.cs │ ├── MemberTestBuild.cs │ ├── MemberTests.cs │ ├── NullableReferenceTypeTests.cs │ ├── PlantUml │ │ ├── ClassDiagramAssociationTest.cs │ │ ├── PlantUmlComponentTest.cs │ │ ├── PlantUmlErrorMessagesCheck.cs │ │ ├── PlantUmlFileBuilderTest.cs │ │ ├── PlantUmlParserTest.cs │ │ ├── TestDiagram.cs │ │ └── zzz_test_version_with_errors.puml │ ├── RecordTypeTests.cs │ ├── StaticTestTypes.cs │ ├── TestArchitectureCache.cs │ └── TypeTests.cs ├── Fluent │ ├── ArchRuleEqualityTests.cs │ ├── DescriptionTests.cs │ ├── Extensions │ │ └── BuildMocksExtensions.cs │ ├── FreezeTests.cs │ ├── MultipleConditionRulesTests.cs │ ├── NoErrorReferencingOfTypesOutsideOfArchitectureTests.cs │ ├── PlantUml │ │ └── PlantUmlFluentComponentDiagramTests.cs │ ├── RuleEvaluationTests.cs │ ├── Slices │ │ └── SlicesTests.cs │ └── Syntax │ │ ├── ConjunctionFactoryTest.cs │ │ ├── DependenciesToOtherAssembliesTests.cs │ │ └── Elements │ │ ├── AttributeSyntaxElementsTests.cs │ │ ├── ClassSyntaxElementsTests.cs │ │ ├── CustomSyntaxElementsTests.cs │ │ ├── LogicalConjunctionTests.cs │ │ ├── MatchGenericReturnTypesTests.cs │ │ ├── MemberSyntaxElementsTests.cs │ │ ├── MethodMemberSyntaxElementsTests.cs │ │ ├── ObjectSyntaxElementsTests.cs │ │ ├── PropertyMemberSyntaxElementsTests.cs │ │ ├── Snapshots │ │ ├── ObjectSyntaxElementsTests.AreTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.BeInternalTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.BePrivateProtectedTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.BePrivateTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.BeProtectedInternalTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.BeProtectedTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.BePublicTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.BeTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.BeTypesThatTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.CallAnyTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.DependOnAnyTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.DependOnAnyTypesThatTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.ExistTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.FollowCustomConditionTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.FollowCustomPredicateTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.HaveAnyAttributesTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.HaveAnyAttributesThatTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.HaveAnyAttributesWithArgumentsTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.HaveAnyAttributesWithNamedArguments.verified.txt │ │ ├── ObjectSyntaxElementsTests.HaveAttributeWithArgumentsTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.HaveAttributeWithNamedArguments.verified.txt │ │ ├── ObjectSyntaxElementsTests.HaveNameTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.NotBeTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.NotCallAnyTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.NotDependOnAnyTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.NotDependOnAnyTypesThatTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.NotExistTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.NotHaveAnyAttributesTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.NotHaveAnyAttributesThatTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.NotHaveAnyAttributesWithArgumentsTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.NotHaveAnyAttributesWithNamedArgumentsTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.NotHaveAttributeWithArgumentsTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.NotHaveAttributeWithNamedArgumentsTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.NotHaveNameTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.OnlyDependOnTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.OnlyDependOnTypesThatTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.OnlyHaveAttributesTest.verified.txt │ │ ├── ObjectSyntaxElementsTests.OnlyHaveAttributesThatTest.verified.txt │ │ ├── TypeSyntaxElementsTests.ImplementAnyInterfacesTest.verified.txt │ │ └── TypeSyntaxElementsTests.NotImplementAnyInterfacesTest.verified.txt │ │ └── TypeSyntaxElementsTests.cs ├── Loader │ ├── ArchLoaderTests.cs │ ├── AssemblyAttributesTests.cs │ ├── InstructionExtensionTests.cs │ ├── NamespaceTests.cs │ ├── NestedTypesTests.cs │ ├── RegexUtilsTests.cs │ ├── TypeTestBuild.cs │ └── TypeTests.cs ├── SkipInReleaseBuild.cs └── StaticTestArchitectures.cs ├── CONTRIBUTING.md ├── DCO ├── ExampleTest ├── ExampleArchUnitTest.cs ├── ExampleArchUnitTestCooking.cs ├── ExampleArchUnitTestPuml.cs ├── ExampleTest.csproj ├── LimitationsOnReleaseTest.cs ├── PlantUml │ ├── Addresses │ │ └── Address.cs │ ├── Catalog │ │ └── ProductCatalog.cs │ ├── Customers │ │ └── Customer.cs │ ├── Importer │ │ └── ProductImport.cs │ ├── Orders │ │ └── Order.cs │ ├── Products │ │ └── Product.cs │ └── Xml │ │ ├── Processor │ │ └── XmlProcessor.cs │ │ ├── Types │ │ └── XmlTypes.cs │ │ └── Utils │ │ └── XmlUtils.cs ├── Resources │ └── shopping_example.puml ├── WebsiteDocumentationTest.cs └── WebsiteDocumentationTestData.cs ├── LICENSE ├── Licenses └── AdditionalLicenses.txt ├── Logo ├── ArchUnitNET-Logo.png └── ArchUnitNET-Logo.svg ├── NOTICE ├── README.md ├── TestAssemblies ├── AttributeAssembly │ ├── AttributeAssembly.cs │ └── AttributeAssembly.csproj ├── DependencyAssembly │ ├── DependencyAssembly.csproj │ ├── MethodDependency.cs │ └── TypeDependency.cs ├── FilteredDirectoryLoaderTestAssembly │ ├── Class1.cs │ ├── FilteredDirectoryLoaderTestAssembly.csproj │ └── FilteredDirectoryLoaderTestAssembly.sln ├── FilteredDirectoryUnavailableTypesAssembly │ ├── FilteredDirectoryUnavailableTypesAssembly.csproj │ └── UnavailableTypes.cs ├── InterfaceAssembly │ ├── InterfaceAssembly.csproj │ └── Interfaces.cs ├── LoaderTestAssembly │ ├── DuplicateClassAcrossAssemblies.cs │ ├── LoaderTestAssembly.cs │ └── LoaderTestAssembly.csproj ├── OtherLoaderTestAssembly │ ├── DuplicateClassAcrossAssemblies.cs │ ├── OtherLoaderTestAssembly.cs │ └── OtherLoaderTestAssembly.csproj └── VisibilityAssembly │ ├── VisibilityAssembly.csproj │ └── VisibilityClasses.cs ├── TestAssembly ├── AbstractRecord.cs ├── AssemblyTestAttribute.cs ├── Class1.cs ├── Class2.cs ├── Class3.cs ├── ClassCallingOtherMethod.cs ├── ClassUsingNullableReferenceType.cs ├── DependencyTargets │ ├── AttributeInTestAssembly.cs │ ├── ClassInTestAssembly.cs │ └── IInterfaceInTestAssembly.cs ├── Diagram │ ├── ConfusingNamespaceNames │ │ └── FooNamespace │ │ │ └── BarNamespace │ │ │ └── ClassInFooAndBarNamespace.cs │ ├── NoDependencies │ │ ├── Independent │ │ │ ├── AnotherIndependenClass.cs │ │ │ └── IndependentClass.cs │ │ └── SomeNamespace │ │ │ ├── DependencyWithinNamespace.cs │ │ │ └── IndependentOrigin.cs │ └── SimpleDependency │ │ ├── Origin │ │ └── SomeOriginClass.cs │ │ └── Target │ │ └── SomeTargetClass.cs ├── Domain │ ├── Entities │ │ ├── Entity1.cs │ │ ├── Entity2WithDependencyToEntity1.cs │ │ └── EntityWithPublicSetters.cs │ ├── Marker │ │ ├── IEntity.cs │ │ ├── IRepository.cs │ │ └── IService.cs │ ├── Repository │ │ └── RepositoryWithDependencyToService.cs │ └── Services │ │ ├── NotWellNamedService1.cs │ │ ├── ServiceClassInWrongNamespace.cs │ │ └── TestService.cs ├── EmptyTestClass.cs ├── PlantUml │ ├── Addresses │ │ └── Address.cs │ ├── Catalog │ │ └── ProductCatalog.cs │ ├── Customers │ │ └── Customer.cs │ ├── Importer │ │ └── ProductImport.cs │ ├── Orders │ │ └── Order.cs │ ├── Products │ │ └── Product.cs │ └── Xml │ │ ├── Processor │ │ └── XmlProcessor.cs │ │ ├── Types │ │ └── XmlTypes.cs │ │ └── Utils │ │ └── XmlUtils.cs ├── Record1.cs ├── Slices │ ├── Slice1 │ │ ├── Service │ │ │ └── Service1Class.cs │ │ └── Slice1Class.cs │ ├── Slice2 │ │ ├── Service │ │ │ └── Service2Class.cs │ │ └── Slice2Class.cs │ └── Slice3 │ │ ├── Group1 │ │ └── Group1Class.cs │ │ ├── Group2 │ │ └── Group2Class.cs │ │ └── Slice3Class.cs └── TestAssembly.csproj ├── Travis ├── deploy_documentation.sh └── generate_documentation.sh ├── codecov.yml ├── coverlet.runsettings ├── documentation ├── Doxyfile ├── custom_theme │ ├── img │ │ ├── Github-Logo.svg │ │ └── TNG-Logo.svg │ └── main.html ├── docs │ ├── additional.md │ ├── contributing.md │ ├── diagrams │ │ ├── archUnitNet_all_compact.svg │ │ ├── archUnitNet_all_noPackages.svg │ │ ├── archUnitNet_all_withPackages.svg │ │ ├── archUnitNet_fluent_three.svg │ │ ├── archUnitNet_focusOn.svg │ │ ├── archUnitNet_one.svg │ │ ├── archUnitNet_three_alternative.svg │ │ ├── archUnitNet_two.svg │ │ ├── attribute_access.puml │ │ ├── class_dependency.puml │ │ ├── class_namespace_containment.puml │ │ ├── cycle.puml │ │ ├── inheritance_naming.puml │ │ └── namespace_dependency.puml │ ├── guide.md │ ├── guide │ │ ├── condition │ │ │ ├── attribute.md │ │ │ ├── class.md │ │ │ ├── fieldmember.md │ │ │ ├── interface.md │ │ │ ├── member.md │ │ │ ├── methodmember.md │ │ │ ├── object.md │ │ │ ├── propertymember.md │ │ │ └── type.md │ │ └── predicate │ │ │ ├── attribute.md │ │ │ ├── class.md │ │ │ ├── fieldmember.md │ │ │ ├── interface.md │ │ │ ├── member.md │ │ │ ├── methodmember.md │ │ │ ├── object.md │ │ │ ├── propertymember.md │ │ │ └── type.md │ ├── img │ │ ├── ArchUnitNET-Logo.svg │ │ ├── attribute_access.svg │ │ ├── class_dependency.svg │ │ ├── class_namespace_containment.svg │ │ ├── cycle.svg │ │ ├── favicon.ico │ │ ├── inheritance_naming.svg │ │ └── namespace_dependency.svg │ ├── index.md │ ├── license.md │ └── limitations │ │ ├── constant_fields.md │ │ └── debug_artifacts.md └── mkdocs.yml ├── global.json └── renovate.json /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.csharpierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/.csharpierignore -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/.gitconfig -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/label-issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/.github/workflows/label-issues.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/.travis.yml -------------------------------------------------------------------------------- /ArchUnit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnit.sln -------------------------------------------------------------------------------- /ArchUnit.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnit.sln.DotSettings -------------------------------------------------------------------------------- /ArchUnitNET.MSTestV2/ArchRuleAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.MSTestV2/ArchRuleAssert.cs -------------------------------------------------------------------------------- /ArchUnitNET.MSTestV2/ArchRuleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.MSTestV2/ArchRuleExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET.MSTestV2/ArchUnitNET.MSTestV2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.MSTestV2/ArchUnitNET.MSTestV2.csproj -------------------------------------------------------------------------------- /ArchUnitNET.MSTestV2Tests/ArchUnitNET.MSTestV2Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.MSTestV2Tests/ArchUnitNET.MSTestV2Tests.csproj -------------------------------------------------------------------------------- /ArchUnitNET.MSTestV2Tests/RuleEvaluationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.MSTestV2Tests/RuleEvaluationTests.cs -------------------------------------------------------------------------------- /ArchUnitNET.NUnit/ArchRuleAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.NUnit/ArchRuleAssert.cs -------------------------------------------------------------------------------- /ArchUnitNET.NUnit/ArchRuleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.NUnit/ArchRuleExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET.NUnit/ArchUnitNET.NUnit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.NUnit/ArchUnitNET.NUnit.csproj -------------------------------------------------------------------------------- /ArchUnitNET.NUnitTests/ArchUnitNET.NUnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.NUnitTests/ArchUnitNET.NUnitTests.csproj -------------------------------------------------------------------------------- /ArchUnitNET.NUnitTests/RuleEvaluationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.NUnitTests/RuleEvaluationTests.cs -------------------------------------------------------------------------------- /ArchUnitNET.TUnit/ArchRuleAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.TUnit/ArchRuleAssert.cs -------------------------------------------------------------------------------- /ArchUnitNET.TUnit/ArchRuleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.TUnit/ArchRuleExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET.TUnit/ArchUnitNET.TUnit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.TUnit/ArchUnitNET.TUnit.csproj -------------------------------------------------------------------------------- /ArchUnitNET.TUnit/FailedArchRuleException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.TUnit/FailedArchRuleException.cs -------------------------------------------------------------------------------- /ArchUnitNET.TUnitTests/ArchUnitNET.TUnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.TUnitTests/ArchUnitNET.TUnitTests.csproj -------------------------------------------------------------------------------- /ArchUnitNET.TUnitTests/RuleEvaluationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.TUnitTests/RuleEvaluationTests.cs -------------------------------------------------------------------------------- /ArchUnitNET.xUnit/ArchRuleAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.xUnit/ArchRuleAssert.cs -------------------------------------------------------------------------------- /ArchUnitNET.xUnit/ArchRuleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.xUnit/ArchRuleExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET.xUnit/ArchUnitNET.xUnit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.xUnit/ArchUnitNET.xUnit.csproj -------------------------------------------------------------------------------- /ArchUnitNET.xUnit/FailedArchRuleException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.xUnit/FailedArchRuleException.cs -------------------------------------------------------------------------------- /ArchUnitNET.xUnitTests/ArchUnitNET.xUnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.xUnitTests/ArchUnitNET.xUnitTests.csproj -------------------------------------------------------------------------------- /ArchUnitNET.xUnitTests/RuleEvaluationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.xUnitTests/RuleEvaluationTests.cs -------------------------------------------------------------------------------- /ArchUnitNET.xUnitV3/ArchRuleAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.xUnitV3/ArchRuleAssert.cs -------------------------------------------------------------------------------- /ArchUnitNET.xUnitV3/ArchRuleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.xUnitV3/ArchRuleExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET.xUnitV3/ArchUnitNET.xUnitV3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.xUnitV3/ArchUnitNET.xUnitV3.csproj -------------------------------------------------------------------------------- /ArchUnitNET.xUnitV3/FailedArchRuleException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.xUnitV3/FailedArchRuleException.cs -------------------------------------------------------------------------------- /ArchUnitNET.xUnitV3Tests/ArchUnitNET.xUnitV3Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.xUnitV3Tests/ArchUnitNET.xUnitV3Tests.csproj -------------------------------------------------------------------------------- /ArchUnitNET.xUnitV3Tests/RuleEvaluationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET.xUnitV3Tests/RuleEvaluationTests.cs -------------------------------------------------------------------------------- /ArchUnitNET/ArchUnitNET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/ArchUnitNET.csproj -------------------------------------------------------------------------------- /ArchUnitNET/ArchUnitNET.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/ArchUnitNET.csproj.DotSettings -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Architecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Architecture.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/ArchitectureCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/ArchitectureCache.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/ArchitectureCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/ArchitectureCacheKey.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Assembly.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Attribute.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/AttributeArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/AttributeArgument.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/AttributeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/AttributeInstance.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/AttributeNamedArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/AttributeNamedArgument.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Class.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/AccessFieldDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/AccessFieldDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/AttributeMemberDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/AttributeMemberDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/AttributeTypeDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/AttributeTypeDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/BodyTypeMemberDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/BodyTypeMemberDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/CastTypeDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/CastTypeDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/FieldTypeDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/FieldTypeDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/GenericArgumentMemberDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/GenericArgumentMemberDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/GenericArgumentTypeDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/GenericArgumentTypeDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/IMemberMemberDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/IMemberMemberDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/IMemberTypeDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/IMemberTypeDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/ITypeDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/ITypeDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/ImplementsInterfaceDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/ImplementsInterfaceDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/InheritsBaseClassDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/InheritsBaseClassDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/MemberGenericParameterTypeConstraintDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/MemberGenericParameterTypeConstraintDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/MemberTypeInstanceDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/MemberTypeInstanceDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/MetaDataDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/MetaDataDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/MethodCallDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/MethodCallDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/MethodSignatureDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/MethodSignatureDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/PropertyTypeDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/PropertyTypeDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/TypeCheckDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/TypeCheckDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/TypeGenericParameterTypeConstraintDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/TypeGenericParameterTypeConstraintDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/TypeInstanceDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/TypeInstanceDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Dependencies/TypeReferenceDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Dependencies/TypeReferenceDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Enum.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/EnumerableIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/EnumerableIdentifier.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Exceptions/AssemblyDoesNotExistInArchitecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Exceptions/AssemblyDoesNotExistInArchitecture.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Exceptions/InvalidStateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Exceptions/InvalidStateException.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Exceptions/MultipleOccurrencesInSequenceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Exceptions/MultipleOccurrencesInSequenceException.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Exceptions/TypeDoesNotExistInArchitecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Exceptions/TypeDoesNotExistInArchitecture.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Extensions/ArchitectureExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Extensions/ArchitectureExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Extensions/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Extensions/AssemblyExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Extensions/AttributeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Extensions/AttributeExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Extensions/DependencyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Extensions/DependencyExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Extensions/ICanBeAnalyzedExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Extensions/ICanBeAnalyzedExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Extensions/MemberExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Extensions/MemberExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Extensions/NamingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Extensions/NamingExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Extensions/NullableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Extensions/NullableExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/FieldMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/FieldMember.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/FunctionPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/FunctionPointer.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/GenericArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/GenericArgument.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/GenericParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/GenericParameter.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/ICanBeAnalyzed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/ICanBeAnalyzed.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/ICanBeCompilerGenerated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/ICanBeCompilerGenerated.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/ICanBeGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/ICanBeGeneric.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/IHasAssemblyQualifiedName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/IHasAssemblyQualifiedName.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/IHasAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/IHasAttributes.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/IHasDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/IHasDependencies.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/IHasDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/IHasDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/IHasName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/IHasName.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/IHasVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/IHasVisibility.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/IMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/IMember.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/IObjectProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/IObjectProvider.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/IResidesInAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/IResidesInAssembly.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/IResidesInNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/IResidesInNamespace.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/ISizedObjectProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/ISizedObjectProvider.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/IType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/IType.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/ITypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/ITypeInstance.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Interface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Interface.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/MemberList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/MemberList.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/MethodForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/MethodForm.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/MethodMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/MethodMember.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/MethodMemberInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/MethodMemberInstance.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Namespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Namespace.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/ObjectProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/ObjectProvider.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/ObjectProviderCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/ObjectProviderCache.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Exceptions/ComponentIntersectionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Exceptions/ComponentIntersectionException.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Exceptions/FileAlreadyExistsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Exceptions/FileAlreadyExistsException.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Exceptions/IllegalComponentNameException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Exceptions/IllegalComponentNameException.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Exceptions/IllegalDiagramException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Exceptions/IllegalDiagramException.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Exceptions/PlantUmlParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Exceptions/PlantUmlParseException.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Exceptions/UmlNotBuiltException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Exceptions/UmlNotBuiltException.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Export/DependencyFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Export/DependencyFilters.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Export/GenerationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Export/GenerationOptions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Export/IPlantUmlContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Export/IPlantUmlContainer.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Export/IPlantUmlElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Export/IPlantUmlElement.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Export/PlantUmlClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Export/PlantUmlClass.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Export/PlantUmlDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Export/PlantUmlDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Export/PlantUmlDiagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Export/PlantUmlDiagram.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Export/PlantUmlFileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Export/PlantUmlFileBuilder.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Export/PlantUmlInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Export/PlantUmlInterface.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Export/PlantUmlNameChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Export/PlantUmlNameChecker.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Export/PlantUmlNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Export/PlantUmlNamespace.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Export/PlantUmlSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Export/PlantUmlSlice.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Export/RenderOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Export/RenderOptions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Import/Alias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Import/Alias.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Import/ClassDiagramAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Import/ClassDiagramAssociation.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Import/ComponentIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Import/ComponentIdentifier.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Import/ComponentName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Import/ComponentName.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Import/ParsedDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Import/ParsedDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Import/PlantUmlComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Import/PlantUmlComponent.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Import/PlantUmlComponentDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Import/PlantUmlComponentDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Import/PlantUmlComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Import/PlantUmlComponents.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Import/PlantUmlDiagramBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Import/PlantUmlDiagramBuilder.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Import/PlantUmlParsedDiagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Import/PlantUmlParsedDiagram.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Import/PlantUmlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Import/PlantUmlParser.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Import/PlantUmlPatterns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Import/PlantUmlPatterns.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PlantUml/Import/Stereotype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PlantUml/Import/Stereotype.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/PropertyMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/PropertyMember.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Slice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Slice.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/SliceIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/SliceIdentifier.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/SliceIdentifierComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/SliceIdentifierComparer.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/StaticConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/StaticConstants.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/StringIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/StringIdentifier.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/StringIdentifierComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/StringIdentifierComparer.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Struct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Struct.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/SystemTypeObjectProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/SystemTypeObjectProvider.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/TypeDependencyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/TypeDependencyComparer.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/TypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/TypeInstance.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/UnavailableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/UnavailableType.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Visibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Visibility.cs -------------------------------------------------------------------------------- /ArchUnitNET/Domain/Writability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Domain/Writability.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/ArchRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/ArchRule.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/ArchRuleCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/ArchRuleCreator.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/ArchRuleDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/ArchRuleDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/BasicObjectProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/BasicObjectProvider.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/BasicObjectProviderDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/BasicObjectProviderDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/CombinedArchRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/CombinedArchRule.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/CombinedArchRuleCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/CombinedArchRuleCreator.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/CombinedArchRuleDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/CombinedArchRuleDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/ConditionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/ConditionManager.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Conditions/ArchitectureCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Conditions/ArchitectureCondition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Conditions/ComplexCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Conditions/ComplexCondition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Conditions/ConditionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Conditions/ConditionResult.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Conditions/EnumerableCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Conditions/EnumerableCondition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Conditions/ExistsCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Conditions/ExistsCondition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Conditions/ICondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Conditions/ICondition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Conditions/IOrderedCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Conditions/IOrderedCondition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Conditions/OrderedArchitectureCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Conditions/OrderedArchitectureCondition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Conditions/RelationCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Conditions/RelationCondition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Conditions/SimpleCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Conditions/SimpleCondition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/CustomArchRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/CustomArchRule.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/EvaluationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/EvaluationResult.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Exceptions/CannotGetObjectsOfCombinedArchRuleCreatorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Exceptions/CannotGetObjectsOfCombinedArchRuleCreatorException.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Exceptions/CannotGetObjectsOfCombinedArchRuleException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Exceptions/CannotGetObjectsOfCombinedArchRuleException.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Extensions/EvaluationResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Extensions/EvaluationResultExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Extensions/SyntaxElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Extensions/SyntaxElementExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Freeze/FreezingArchRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Freeze/FreezingArchRule.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Freeze/FrozenRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Freeze/FrozenRule.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Freeze/IViolationStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Freeze/IViolationStore.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Freeze/JsonViolationStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Freeze/JsonViolationStore.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Freeze/XmlViolationStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Freeze/XmlViolationStore.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/IArchRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/IArchRule.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/IArchRuleCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/IArchRuleCreator.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/ICanBeEvaluated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/ICanBeEvaluated.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/LogicalConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/LogicalConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/LogicalConjunctionDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/LogicalConjunctionDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/PlantUml/GivenPlantUmlFluentComponentDiagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/PlantUml/GivenPlantUmlFluentComponentDiagram.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/PlantUml/PlantUmlDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/PlantUml/PlantUmlDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/PlantUml/PlantUmlFluentComponentDiagramCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/PlantUml/PlantUmlFluentComponentDiagramCreator.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/PlantUml/PlantUmlFluentComponentDiagramInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/PlantUml/PlantUmlFluentComponentDiagramInitializer.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/PredicateManager.PredicateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/PredicateManager.PredicateManager.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Predicates/ArchitecturePredicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Predicates/ArchitecturePredicate.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Predicates/EnumerablePredicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Predicates/EnumerablePredicate.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Predicates/IPredicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Predicates/IPredicate.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Predicates/SimplePredicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Predicates/SimplePredicate.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Slices/GivenSlices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Slices/GivenSlices.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Slices/SliceAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Slices/SliceAssignment.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Slices/SliceRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Slices/SliceRule.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Slices/SliceRuleCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Slices/SliceRuleCreator.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Slices/SliceRuleDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Slices/SliceRuleDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Slices/SliceRuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Slices/SliceRuleInitializer.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Slices/SlicesShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Slices/SlicesShould.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/ConjunctionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/ConjunctionFactory.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/GivenObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/GivenObjects.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/GivenObjectsConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/GivenObjectsConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/GivenObjectsConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/GivenObjectsConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/GivenObjectsThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/GivenObjectsThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/IComplexObjectConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/IComplexObjectConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/IObjectConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/IObjectConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/IObjectPredicates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/IObjectPredicates.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/FieldMembersShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/FieldMembersShould.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/FieldMembersShouldConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/FieldMembersShouldConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/FieldMembersShouldConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/FieldMembersShouldConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/GivenFieldMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/GivenFieldMembers.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/GivenFieldMembersConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/GivenFieldMembersConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/GivenFieldMembersConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/GivenFieldMembersConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/GivenFieldMembersThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/GivenFieldMembersThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/IComplexFieldMemberConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/IComplexFieldMemberConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/IFieldMemberConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/IFieldMemberConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/IFieldMemberPredicates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/IFieldMemberPredicates.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/ShouldRelateToFieldMembersThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/FieldMembers/ShouldRelateToFieldMembersThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/GivenMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/GivenMembers.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/GivenMembersConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/GivenMembersConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/GivenMembersConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/GivenMembersConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/GivenMembersThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/GivenMembersThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/IComplexMemberConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/IComplexMemberConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/IMemberConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/IMemberConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/IMemberPredicates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/IMemberPredicates.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MemberConditionsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MemberConditionsDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MemberPredicatesDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MemberPredicatesDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MembersShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MembersShould.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MembersShouldConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MembersShouldConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MembersShouldConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MembersShouldConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/GivenMethodMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/GivenMethodMembers.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/GivenMethodMembersConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/GivenMethodMembersConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/GivenMethodMembersConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/GivenMethodMembersConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/GivenMethodMembersThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/GivenMethodMembersThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/IComplexMethodMemberConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/IComplexMethodMemberConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/IMethodMemberConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/IMethodMemberConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/IMethodMemberPredicates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/IMethodMemberPredicates.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/MethodMemberConditionsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/MethodMemberConditionsDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/MethodMemberPredicatesDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/MethodMemberPredicatesDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/MethodMembersShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/MethodMembersShould.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/MethodMembersShouldConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/MethodMembersShouldConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/MethodMembersShouldConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/MethodMembersShouldConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/ShouldRelateToMethodMembersThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/MethodMembers/ShouldRelateToMethodMembersThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/GivenPropertyMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/GivenPropertyMembers.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/GivenPropertyMembersConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/GivenPropertyMembersConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/GivenPropertyMembersConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/GivenPropertyMembersConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/GivenPropertyMembersThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/GivenPropertyMembersThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/IComplexPropertyMemberConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/IComplexPropertyMemberConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/IPropertyMemberConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/IPropertyMemberConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/IPropertyMemberPredicates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/IPropertyMemberPredicates.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/PropertyMemberConditionsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/PropertyMemberConditionsDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/PropertyMemberPredicateDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/PropertyMemberPredicateDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/PropertyMembersShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/PropertyMembersShould.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/PropertyMembersShouldConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/PropertyMembersShouldConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/PropertyMembersShouldConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/PropertyMembersShouldConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/ShouldRelateToPropertyMembersThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/PropertyMembers/ShouldRelateToPropertyMembersThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Members/ShouldRelateToMembersThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Members/ShouldRelateToMembersThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/ObjectConditionsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/ObjectConditionsDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/ObjectPredicatesDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/ObjectPredicatesDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/ObjectsShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/ObjectsShould.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/ObjectsShouldConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/ObjectsShouldConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/ObjectsShouldConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/ObjectsShouldConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/ShouldRelateToObjectsThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/ShouldRelateToObjectsThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/AttributeConditionsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/AttributeConditionsDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/AttributePredicatesDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/AttributePredicatesDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/AttributesShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/AttributesShould.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/AttributesShouldConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/AttributesShouldConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/AttributesShouldConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/AttributesShouldConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/GivenAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/GivenAttributes.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/GivenAttributesConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/GivenAttributesConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/GivenAttributesConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/GivenAttributesConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/GivenAttributesThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/GivenAttributesThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/IAttributeConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/IAttributeConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/IAttributePredicates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/IAttributePredicates.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/IComplexAttributeConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/IComplexAttributeConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/ShouldRelateToAttributesThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Attributes/ShouldRelateToAttributesThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/ClassConditionsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/ClassConditionsDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/ClassPredicatesDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/ClassPredicatesDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/ClassesShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/ClassesShould.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/ClassesShouldConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/ClassesShouldConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/ClassesShouldConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/ClassesShouldConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/GivenClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/GivenClasses.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/GivenClassesConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/GivenClassesConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/GivenClassesConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/GivenClassesConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/GivenClassesThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/GivenClassesThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/IClassConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/IClassConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/IClassPredicates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/IClassPredicates.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/IComplexClassConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/IComplexClassConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/ShouldRelateToClassesThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Classes/ShouldRelateToClassesThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/GivenTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/GivenTypes.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/GivenTypesConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/GivenTypesConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/GivenTypesConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/GivenTypesConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/GivenTypesThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/GivenTypesThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/IComplexTypeConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/IComplexTypeConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/ITypeConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/ITypeConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/ITypePredicates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/ITypePredicates.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/GivenInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/GivenInterfaces.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/GivenInterfacesConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/GivenInterfacesConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/GivenInterfacesConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/GivenInterfacesConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/GivenInterfacesThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/GivenInterfacesThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/IComplexInterfaceConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/IComplexInterfaceConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/IInterfaceConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/IInterfaceConditions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/IInterfacePredicates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/IInterfacePredicates.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/InterfacesShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/InterfacesShould.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/InterfacesShouldConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/InterfacesShouldConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/InterfacesShouldConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/InterfacesShouldConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/ShouldRelateToInterfacesThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/Interfaces/ShouldRelateToInterfacesThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/ShouldRelateToTypesThat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/ShouldRelateToTypesThat.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/TypeConditionsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/TypeConditionsDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/TypePredicatesDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/TypePredicatesDefinition.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/TypesShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/TypesShould.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/TypesShouldConjunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/TypesShouldConjunction.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/Elements/Types/TypesShouldConjunctionWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/Elements/Types/TypesShouldConjunctionWithDescription.cs -------------------------------------------------------------------------------- /ArchUnitNET/Fluent/Syntax/SyntaxElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Fluent/Syntax/SyntaxElement.cs -------------------------------------------------------------------------------- /ArchUnitNET/Library/Rules/TargetFrameworkRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Library/Rules/TargetFrameworkRules.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/ArchBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/ArchBuilder.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/ArchLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/ArchLoader.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/ArchLoaderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/ArchLoaderException.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/AssemblyRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/AssemblyRegistry.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/DotNetCoreAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/DotNetCoreAssemblyResolver.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/FilterResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/FilterResult.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/InstructionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/InstructionExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/LoadTaskRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/LoadTaskRegistry.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/LoadTasks/AddAttributesAndAttributeDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/LoadTasks/AddAttributesAndAttributeDependencies.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/LoadTasks/AddBackwardsDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/LoadTasks/AddBackwardsDependencies.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/LoadTasks/AddBaseClassDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/LoadTasks/AddBaseClassDependency.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/LoadTasks/AddClassDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/LoadTasks/AddClassDependencies.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/LoadTasks/AddFieldAndPropertyDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/LoadTasks/AddFieldAndPropertyDependencies.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/LoadTasks/AddGenericArgumentDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/LoadTasks/AddGenericArgumentDependencies.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/LoadTasks/AddGenericParameterDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/LoadTasks/AddGenericParameterDependencies.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/LoadTasks/AddMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/LoadTasks/AddMembers.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/LoadTasks/AddMethodDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/LoadTasks/AddMethodDependencies.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/LoadTasks/AddTypesToNamespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/LoadTasks/AddTypesToNamespaces.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/LoadTasks/CollectAssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/LoadTasks/CollectAssemblyAttributes.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/LoadTasks/ILoadTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/LoadTasks/ILoadTask.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/MonoCecilAttributeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/MonoCecilAttributeExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/MonoCecilMemberExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/MonoCecilMemberExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/MonoCecilTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/MonoCecilTypeExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/NamespaceRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/NamespaceRegistry.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/RegexUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/RegexUtils.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/RegistryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/RegistryUtils.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/Type.cs -------------------------------------------------------------------------------- /ArchUnitNET/Loader/TypeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNET/Loader/TypeFactory.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/ArchUnitNET/Storage/CustomPathFrozenRules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/ArchUnitNET/Storage/CustomPathFrozenRules.json -------------------------------------------------------------------------------- /ArchUnitNETTests/ArchUnitNET/Storage/FrozenRules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/ArchUnitNET/Storage/FrozenRules.json -------------------------------------------------------------------------------- /ArchUnitNETTests/ArchUnitNET/Storage/FrozenRules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/ArchUnitNET/Storage/FrozenRules.xml -------------------------------------------------------------------------------- /ArchUnitNETTests/ArchUnitNETTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/ArchUnitNETTests.csproj -------------------------------------------------------------------------------- /ArchUnitNETTests/ArchitectureTests/ArchUnitArchitectureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/ArchitectureTests/ArchUnitArchitectureTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/AssemblyTestHelper/AssemblyTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/AssemblyTestHelper/AssemblyTestHelper.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/AssemblyTestHelper/AssemblyTestHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/AssemblyTestHelper/AssemblyTestHelperExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/AssemblyTestHelper/AttributeAssemblyTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/AssemblyTestHelper/AttributeAssemblyTestHelper.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/AssemblyTestHelper/DependencyAssemblyTestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/AssemblyTestHelper/DependencyAssemblyTestHelpers.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/AssemblyTestHelper/InterfaceAssemblyTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/AssemblyTestHelper/InterfaceAssemblyTestHelper.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/AssemblyTestHelper/VisibilityAssemblyTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/AssemblyTestHelper/VisibilityAssemblyTestHelper.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/AccessFieldDependenciesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/AccessFieldDependenciesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/ArrayTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/ArrayTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/CastDependenciesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/CastDependenciesTest.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/CppDependenciesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/CppDependenciesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/DependenciesToStaticMethodsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/DependenciesToStaticMethodsTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/ExceptionDependenciesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/ExceptionDependenciesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/ExternalDependenciesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/ExternalDependenciesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/GeneratorDependenciesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/GeneratorDependenciesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/GenericMemberDependenciesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/GenericMemberDependenciesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/KeepDependenciesInCompilerGeneratedTypesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/KeepDependenciesInCompilerGeneratedTypesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/PlantUmlDependenciesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/PlantUmlDependenciesTest.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/PropertyDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/PropertyDependencyTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/StringDependenciesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/StringDependenciesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/TypeCheckDependenciesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/TypeCheckDependenciesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/TypeOfDependenciesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/TypeOfDependenciesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Dependencies/cpplib/CppDllTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Dependencies/cpplib/CppDllTest.dll -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/ArchitectureCacheKeyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/ArchitectureCacheKeyTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/ArchitectureCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/ArchitectureCacheTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/AttributeArgumentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/AttributeArgumentTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/AttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/AttributeTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/ClassTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/ClassTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/CompilerGeneratedTypesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/CompilerGeneratedTypesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Attributes/AttributeAssertionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Attributes/AttributeAssertionRepository.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Attributes/AttributeDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Attributes/AttributeDependencyTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Attributes/AttributeTestsBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Attributes/AttributeTestsBuild.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Attributes/TestAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Attributes/TestAttributes.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/BodyTypeMemberDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/BodyTypeMemberDependencyTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/ClassDependenciesIncludeMemberDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/ClassDependenciesIncludeMemberDependencies.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/FieldDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/FieldDependencyTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/GetterSetterExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/GetterSetterExamples.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/GetterSetterMethodDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/GetterSetterMethodDependencyTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/GetterSetterTestsBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/GetterSetterTestsBuild.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/InheritsBaseClassDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/InheritsBaseClassDependencyTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/InvalidInputException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/InvalidInputException.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/KeepDependenciesInAnonymousTypesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/KeepDependenciesInAnonymousTypesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/MemberDependencyTestBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/MemberDependencyTestBuild.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/MemberDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/MemberDependencyTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/MethodCallDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/MethodCallDependencyTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/MethodDependencyTestBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/MethodDependencyTestBuild.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/MethodSignatureMemberDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/MethodSignatureMemberDependencyTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Members/PropertyDependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Members/PropertyDependencyTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Types/GenericInterfaceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Types/GenericInterfaceTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Dependencies/Types/ImplementingInterfacesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Dependencies/Types/ImplementingInterfacesTest.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Extensions/ArchitectureExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Extensions/ArchitectureExtensionTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Extensions/NullableExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Extensions/NullableExtensionTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/Extensions/TypeExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/Extensions/TypeExtensionTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/FixedSizeBufferTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/FixedSizeBufferTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/GenericClassTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/GenericClassTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/GenericMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/GenericMethodTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/InterfaceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/InterfaceTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/MemberListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/MemberListTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/MemberTestBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/MemberTestBuild.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/MemberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/MemberTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/NullableReferenceTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/NullableReferenceTypeTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/PlantUml/ClassDiagramAssociationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/PlantUml/ClassDiagramAssociationTest.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/PlantUml/PlantUmlComponentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/PlantUml/PlantUmlComponentTest.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/PlantUml/PlantUmlErrorMessagesCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/PlantUml/PlantUmlErrorMessagesCheck.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/PlantUml/PlantUmlFileBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/PlantUml/PlantUmlFileBuilderTest.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/PlantUml/PlantUmlParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/PlantUml/PlantUmlParserTest.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/PlantUml/TestDiagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/PlantUml/TestDiagram.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/PlantUml/zzz_test_version_with_errors.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/PlantUml/zzz_test_version_with_errors.puml -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/RecordTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/RecordTypeTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/StaticTestTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/StaticTestTypes.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/TestArchitectureCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/TestArchitectureCache.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Domain/TypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Domain/TypeTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/ArchRuleEqualityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/ArchRuleEqualityTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/DescriptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/DescriptionTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Extensions/BuildMocksExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Extensions/BuildMocksExtensions.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/FreezeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/FreezeTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/MultipleConditionRulesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/MultipleConditionRulesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/NoErrorReferencingOfTypesOutsideOfArchitectureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/NoErrorReferencingOfTypesOutsideOfArchitectureTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/PlantUml/PlantUmlFluentComponentDiagramTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/PlantUml/PlantUmlFluentComponentDiagramTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/RuleEvaluationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/RuleEvaluationTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Slices/SlicesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Slices/SlicesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/ConjunctionFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/ConjunctionFactoryTest.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/DependenciesToOtherAssembliesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/DependenciesToOtherAssembliesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/AttributeSyntaxElementsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/AttributeSyntaxElementsTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/ClassSyntaxElementsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/ClassSyntaxElementsTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/CustomSyntaxElementsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/CustomSyntaxElementsTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/LogicalConjunctionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/LogicalConjunctionTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/MatchGenericReturnTypesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/MatchGenericReturnTypesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/MemberSyntaxElementsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/MemberSyntaxElementsTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/MethodMemberSyntaxElementsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/MethodMemberSyntaxElementsTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/ObjectSyntaxElementsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/ObjectSyntaxElementsTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/PropertyMemberSyntaxElementsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/PropertyMemberSyntaxElementsTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.AreTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.AreTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BeInternalTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BeInternalTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BePrivateProtectedTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BePrivateProtectedTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BePrivateTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BePrivateTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BeProtectedInternalTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BeProtectedInternalTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BeProtectedTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BeProtectedTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BePublicTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BePublicTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BeTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BeTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BeTypesThatTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.BeTypesThatTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.CallAnyTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.CallAnyTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.DependOnAnyTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.DependOnAnyTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.DependOnAnyTypesThatTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.DependOnAnyTypesThatTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.ExistTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.ExistTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.FollowCustomConditionTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.FollowCustomConditionTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.FollowCustomPredicateTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.FollowCustomPredicateTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveAnyAttributesTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveAnyAttributesTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveAnyAttributesThatTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveAnyAttributesThatTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveAnyAttributesWithArgumentsTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveAnyAttributesWithArgumentsTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveAnyAttributesWithNamedArguments.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveAnyAttributesWithNamedArguments.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveAttributeWithArgumentsTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveAttributeWithArgumentsTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveAttributeWithNamedArguments.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveAttributeWithNamedArguments.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveNameTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.HaveNameTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotBeTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotBeTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotCallAnyTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotCallAnyTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotDependOnAnyTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotDependOnAnyTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotDependOnAnyTypesThatTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotDependOnAnyTypesThatTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotExistTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotExistTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveAnyAttributesTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveAnyAttributesTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveAnyAttributesThatTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveAnyAttributesThatTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveAnyAttributesWithArgumentsTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveAnyAttributesWithArgumentsTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveAnyAttributesWithNamedArgumentsTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveAnyAttributesWithNamedArgumentsTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveAttributeWithArgumentsTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveAttributeWithArgumentsTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveAttributeWithNamedArgumentsTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveAttributeWithNamedArgumentsTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveNameTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.NotHaveNameTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.OnlyDependOnTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.OnlyDependOnTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.OnlyDependOnTypesThatTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.OnlyDependOnTypesThatTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.OnlyHaveAttributesTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.OnlyHaveAttributesTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.OnlyHaveAttributesThatTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/ObjectSyntaxElementsTests.OnlyHaveAttributesThatTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/TypeSyntaxElementsTests.ImplementAnyInterfacesTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/TypeSyntaxElementsTests.ImplementAnyInterfacesTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/TypeSyntaxElementsTests.NotImplementAnyInterfacesTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/Snapshots/TypeSyntaxElementsTests.NotImplementAnyInterfacesTest.verified.txt -------------------------------------------------------------------------------- /ArchUnitNETTests/Fluent/Syntax/Elements/TypeSyntaxElementsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Fluent/Syntax/Elements/TypeSyntaxElementsTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Loader/ArchLoaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Loader/ArchLoaderTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Loader/AssemblyAttributesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Loader/AssemblyAttributesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Loader/InstructionExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Loader/InstructionExtensionTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Loader/NamespaceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Loader/NamespaceTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Loader/NestedTypesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Loader/NestedTypesTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Loader/RegexUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Loader/RegexUtilsTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Loader/TypeTestBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Loader/TypeTestBuild.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/Loader/TypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/Loader/TypeTests.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/SkipInReleaseBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/SkipInReleaseBuild.cs -------------------------------------------------------------------------------- /ArchUnitNETTests/StaticTestArchitectures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ArchUnitNETTests/StaticTestArchitectures.cs -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/DCO -------------------------------------------------------------------------------- /ExampleTest/ExampleArchUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/ExampleArchUnitTest.cs -------------------------------------------------------------------------------- /ExampleTest/ExampleArchUnitTestCooking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/ExampleArchUnitTestCooking.cs -------------------------------------------------------------------------------- /ExampleTest/ExampleArchUnitTestPuml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/ExampleArchUnitTestPuml.cs -------------------------------------------------------------------------------- /ExampleTest/ExampleTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/ExampleTest.csproj -------------------------------------------------------------------------------- /ExampleTest/LimitationsOnReleaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/LimitationsOnReleaseTest.cs -------------------------------------------------------------------------------- /ExampleTest/PlantUml/Addresses/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/PlantUml/Addresses/Address.cs -------------------------------------------------------------------------------- /ExampleTest/PlantUml/Catalog/ProductCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/PlantUml/Catalog/ProductCatalog.cs -------------------------------------------------------------------------------- /ExampleTest/PlantUml/Customers/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/PlantUml/Customers/Customer.cs -------------------------------------------------------------------------------- /ExampleTest/PlantUml/Importer/ProductImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/PlantUml/Importer/ProductImport.cs -------------------------------------------------------------------------------- /ExampleTest/PlantUml/Orders/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/PlantUml/Orders/Order.cs -------------------------------------------------------------------------------- /ExampleTest/PlantUml/Products/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/PlantUml/Products/Product.cs -------------------------------------------------------------------------------- /ExampleTest/PlantUml/Xml/Processor/XmlProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/PlantUml/Xml/Processor/XmlProcessor.cs -------------------------------------------------------------------------------- /ExampleTest/PlantUml/Xml/Types/XmlTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/PlantUml/Xml/Types/XmlTypes.cs -------------------------------------------------------------------------------- /ExampleTest/PlantUml/Xml/Utils/XmlUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/PlantUml/Xml/Utils/XmlUtils.cs -------------------------------------------------------------------------------- /ExampleTest/Resources/shopping_example.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/Resources/shopping_example.puml -------------------------------------------------------------------------------- /ExampleTest/WebsiteDocumentationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/WebsiteDocumentationTest.cs -------------------------------------------------------------------------------- /ExampleTest/WebsiteDocumentationTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/ExampleTest/WebsiteDocumentationTestData.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/LICENSE -------------------------------------------------------------------------------- /Licenses/AdditionalLicenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/Licenses/AdditionalLicenses.txt -------------------------------------------------------------------------------- /Logo/ArchUnitNET-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/Logo/ArchUnitNET-Logo.png -------------------------------------------------------------------------------- /Logo/ArchUnitNET-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/Logo/ArchUnitNET-Logo.svg -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/README.md -------------------------------------------------------------------------------- /TestAssemblies/AttributeAssembly/AttributeAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/AttributeAssembly/AttributeAssembly.cs -------------------------------------------------------------------------------- /TestAssemblies/AttributeAssembly/AttributeAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/AttributeAssembly/AttributeAssembly.csproj -------------------------------------------------------------------------------- /TestAssemblies/DependencyAssembly/DependencyAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/DependencyAssembly/DependencyAssembly.csproj -------------------------------------------------------------------------------- /TestAssemblies/DependencyAssembly/MethodDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/DependencyAssembly/MethodDependency.cs -------------------------------------------------------------------------------- /TestAssemblies/DependencyAssembly/TypeDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/DependencyAssembly/TypeDependency.cs -------------------------------------------------------------------------------- /TestAssemblies/FilteredDirectoryLoaderTestAssembly/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/FilteredDirectoryLoaderTestAssembly/Class1.cs -------------------------------------------------------------------------------- /TestAssemblies/FilteredDirectoryLoaderTestAssembly/FilteredDirectoryLoaderTestAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/FilteredDirectoryLoaderTestAssembly/FilteredDirectoryLoaderTestAssembly.csproj -------------------------------------------------------------------------------- /TestAssemblies/FilteredDirectoryLoaderTestAssembly/FilteredDirectoryLoaderTestAssembly.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/FilteredDirectoryLoaderTestAssembly/FilteredDirectoryLoaderTestAssembly.sln -------------------------------------------------------------------------------- /TestAssemblies/FilteredDirectoryUnavailableTypesAssembly/FilteredDirectoryUnavailableTypesAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/FilteredDirectoryUnavailableTypesAssembly/FilteredDirectoryUnavailableTypesAssembly.csproj -------------------------------------------------------------------------------- /TestAssemblies/FilteredDirectoryUnavailableTypesAssembly/UnavailableTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/FilteredDirectoryUnavailableTypesAssembly/UnavailableTypes.cs -------------------------------------------------------------------------------- /TestAssemblies/InterfaceAssembly/InterfaceAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/InterfaceAssembly/InterfaceAssembly.csproj -------------------------------------------------------------------------------- /TestAssemblies/InterfaceAssembly/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/InterfaceAssembly/Interfaces.cs -------------------------------------------------------------------------------- /TestAssemblies/LoaderTestAssembly/DuplicateClassAcrossAssemblies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/LoaderTestAssembly/DuplicateClassAcrossAssemblies.cs -------------------------------------------------------------------------------- /TestAssemblies/LoaderTestAssembly/LoaderTestAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/LoaderTestAssembly/LoaderTestAssembly.cs -------------------------------------------------------------------------------- /TestAssemblies/LoaderTestAssembly/LoaderTestAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/LoaderTestAssembly/LoaderTestAssembly.csproj -------------------------------------------------------------------------------- /TestAssemblies/OtherLoaderTestAssembly/DuplicateClassAcrossAssemblies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/OtherLoaderTestAssembly/DuplicateClassAcrossAssemblies.cs -------------------------------------------------------------------------------- /TestAssemblies/OtherLoaderTestAssembly/OtherLoaderTestAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/OtherLoaderTestAssembly/OtherLoaderTestAssembly.cs -------------------------------------------------------------------------------- /TestAssemblies/OtherLoaderTestAssembly/OtherLoaderTestAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/OtherLoaderTestAssembly/OtherLoaderTestAssembly.csproj -------------------------------------------------------------------------------- /TestAssemblies/VisibilityAssembly/VisibilityAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/VisibilityAssembly/VisibilityAssembly.csproj -------------------------------------------------------------------------------- /TestAssemblies/VisibilityAssembly/VisibilityClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssemblies/VisibilityAssembly/VisibilityClasses.cs -------------------------------------------------------------------------------- /TestAssembly/AbstractRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/AbstractRecord.cs -------------------------------------------------------------------------------- /TestAssembly/AssemblyTestAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/AssemblyTestAttribute.cs -------------------------------------------------------------------------------- /TestAssembly/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Class1.cs -------------------------------------------------------------------------------- /TestAssembly/Class2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Class2.cs -------------------------------------------------------------------------------- /TestAssembly/Class3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Class3.cs -------------------------------------------------------------------------------- /TestAssembly/ClassCallingOtherMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/ClassCallingOtherMethod.cs -------------------------------------------------------------------------------- /TestAssembly/ClassUsingNullableReferenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/ClassUsingNullableReferenceType.cs -------------------------------------------------------------------------------- /TestAssembly/DependencyTargets/AttributeInTestAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/DependencyTargets/AttributeInTestAssembly.cs -------------------------------------------------------------------------------- /TestAssembly/DependencyTargets/ClassInTestAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/DependencyTargets/ClassInTestAssembly.cs -------------------------------------------------------------------------------- /TestAssembly/DependencyTargets/IInterfaceInTestAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/DependencyTargets/IInterfaceInTestAssembly.cs -------------------------------------------------------------------------------- /TestAssembly/Diagram/ConfusingNamespaceNames/FooNamespace/BarNamespace/ClassInFooAndBarNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Diagram/ConfusingNamespaceNames/FooNamespace/BarNamespace/ClassInFooAndBarNamespace.cs -------------------------------------------------------------------------------- /TestAssembly/Diagram/NoDependencies/Independent/AnotherIndependenClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Diagram/NoDependencies/Independent/AnotherIndependenClass.cs -------------------------------------------------------------------------------- /TestAssembly/Diagram/NoDependencies/Independent/IndependentClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Diagram/NoDependencies/Independent/IndependentClass.cs -------------------------------------------------------------------------------- /TestAssembly/Diagram/NoDependencies/SomeNamespace/DependencyWithinNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Diagram/NoDependencies/SomeNamespace/DependencyWithinNamespace.cs -------------------------------------------------------------------------------- /TestAssembly/Diagram/NoDependencies/SomeNamespace/IndependentOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Diagram/NoDependencies/SomeNamespace/IndependentOrigin.cs -------------------------------------------------------------------------------- /TestAssembly/Diagram/SimpleDependency/Origin/SomeOriginClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Diagram/SimpleDependency/Origin/SomeOriginClass.cs -------------------------------------------------------------------------------- /TestAssembly/Diagram/SimpleDependency/Target/SomeTargetClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Diagram/SimpleDependency/Target/SomeTargetClass.cs -------------------------------------------------------------------------------- /TestAssembly/Domain/Entities/Entity1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Domain/Entities/Entity1.cs -------------------------------------------------------------------------------- /TestAssembly/Domain/Entities/Entity2WithDependencyToEntity1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Domain/Entities/Entity2WithDependencyToEntity1.cs -------------------------------------------------------------------------------- /TestAssembly/Domain/Entities/EntityWithPublicSetters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Domain/Entities/EntityWithPublicSetters.cs -------------------------------------------------------------------------------- /TestAssembly/Domain/Marker/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Domain/Marker/IEntity.cs -------------------------------------------------------------------------------- /TestAssembly/Domain/Marker/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Domain/Marker/IRepository.cs -------------------------------------------------------------------------------- /TestAssembly/Domain/Marker/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Domain/Marker/IService.cs -------------------------------------------------------------------------------- /TestAssembly/Domain/Repository/RepositoryWithDependencyToService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Domain/Repository/RepositoryWithDependencyToService.cs -------------------------------------------------------------------------------- /TestAssembly/Domain/Services/NotWellNamedService1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Domain/Services/NotWellNamedService1.cs -------------------------------------------------------------------------------- /TestAssembly/Domain/Services/ServiceClassInWrongNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Domain/Services/ServiceClassInWrongNamespace.cs -------------------------------------------------------------------------------- /TestAssembly/Domain/Services/TestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Domain/Services/TestService.cs -------------------------------------------------------------------------------- /TestAssembly/EmptyTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/EmptyTestClass.cs -------------------------------------------------------------------------------- /TestAssembly/PlantUml/Addresses/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/PlantUml/Addresses/Address.cs -------------------------------------------------------------------------------- /TestAssembly/PlantUml/Catalog/ProductCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/PlantUml/Catalog/ProductCatalog.cs -------------------------------------------------------------------------------- /TestAssembly/PlantUml/Customers/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/PlantUml/Customers/Customer.cs -------------------------------------------------------------------------------- /TestAssembly/PlantUml/Importer/ProductImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/PlantUml/Importer/ProductImport.cs -------------------------------------------------------------------------------- /TestAssembly/PlantUml/Orders/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/PlantUml/Orders/Order.cs -------------------------------------------------------------------------------- /TestAssembly/PlantUml/Products/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/PlantUml/Products/Product.cs -------------------------------------------------------------------------------- /TestAssembly/PlantUml/Xml/Processor/XmlProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/PlantUml/Xml/Processor/XmlProcessor.cs -------------------------------------------------------------------------------- /TestAssembly/PlantUml/Xml/Types/XmlTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/PlantUml/Xml/Types/XmlTypes.cs -------------------------------------------------------------------------------- /TestAssembly/PlantUml/Xml/Utils/XmlUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/PlantUml/Xml/Utils/XmlUtils.cs -------------------------------------------------------------------------------- /TestAssembly/Record1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Record1.cs -------------------------------------------------------------------------------- /TestAssembly/Slices/Slice1/Service/Service1Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Slices/Slice1/Service/Service1Class.cs -------------------------------------------------------------------------------- /TestAssembly/Slices/Slice1/Slice1Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Slices/Slice1/Slice1Class.cs -------------------------------------------------------------------------------- /TestAssembly/Slices/Slice2/Service/Service2Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Slices/Slice2/Service/Service2Class.cs -------------------------------------------------------------------------------- /TestAssembly/Slices/Slice2/Slice2Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Slices/Slice2/Slice2Class.cs -------------------------------------------------------------------------------- /TestAssembly/Slices/Slice3/Group1/Group1Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Slices/Slice3/Group1/Group1Class.cs -------------------------------------------------------------------------------- /TestAssembly/Slices/Slice3/Group2/Group2Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Slices/Slice3/Group2/Group2Class.cs -------------------------------------------------------------------------------- /TestAssembly/Slices/Slice3/Slice3Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/Slices/Slice3/Slice3Class.cs -------------------------------------------------------------------------------- /TestAssembly/TestAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/TestAssembly/TestAssembly.csproj -------------------------------------------------------------------------------- /Travis/deploy_documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/Travis/deploy_documentation.sh -------------------------------------------------------------------------------- /Travis/generate_documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/Travis/generate_documentation.sh -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/codecov.yml -------------------------------------------------------------------------------- /coverlet.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/coverlet.runsettings -------------------------------------------------------------------------------- /documentation/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/Doxyfile -------------------------------------------------------------------------------- /documentation/custom_theme/img/Github-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/custom_theme/img/Github-Logo.svg -------------------------------------------------------------------------------- /documentation/custom_theme/img/TNG-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/custom_theme/img/TNG-Logo.svg -------------------------------------------------------------------------------- /documentation/custom_theme/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/custom_theme/main.html -------------------------------------------------------------------------------- /documentation/docs/additional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/additional.md -------------------------------------------------------------------------------- /documentation/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/contributing.md -------------------------------------------------------------------------------- /documentation/docs/diagrams/archUnitNet_all_compact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/archUnitNet_all_compact.svg -------------------------------------------------------------------------------- /documentation/docs/diagrams/archUnitNet_all_noPackages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/archUnitNet_all_noPackages.svg -------------------------------------------------------------------------------- /documentation/docs/diagrams/archUnitNet_all_withPackages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/archUnitNet_all_withPackages.svg -------------------------------------------------------------------------------- /documentation/docs/diagrams/archUnitNet_fluent_three.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/archUnitNet_fluent_three.svg -------------------------------------------------------------------------------- /documentation/docs/diagrams/archUnitNet_focusOn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/archUnitNet_focusOn.svg -------------------------------------------------------------------------------- /documentation/docs/diagrams/archUnitNet_one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/archUnitNet_one.svg -------------------------------------------------------------------------------- /documentation/docs/diagrams/archUnitNet_three_alternative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/archUnitNet_three_alternative.svg -------------------------------------------------------------------------------- /documentation/docs/diagrams/archUnitNet_two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/archUnitNet_two.svg -------------------------------------------------------------------------------- /documentation/docs/diagrams/attribute_access.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/attribute_access.puml -------------------------------------------------------------------------------- /documentation/docs/diagrams/class_dependency.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/class_dependency.puml -------------------------------------------------------------------------------- /documentation/docs/diagrams/class_namespace_containment.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/class_namespace_containment.puml -------------------------------------------------------------------------------- /documentation/docs/diagrams/cycle.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/cycle.puml -------------------------------------------------------------------------------- /documentation/docs/diagrams/inheritance_naming.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/inheritance_naming.puml -------------------------------------------------------------------------------- /documentation/docs/diagrams/namespace_dependency.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/diagrams/namespace_dependency.puml -------------------------------------------------------------------------------- /documentation/docs/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide.md -------------------------------------------------------------------------------- /documentation/docs/guide/condition/attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide/condition/attribute.md -------------------------------------------------------------------------------- /documentation/docs/guide/condition/class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide/condition/class.md -------------------------------------------------------------------------------- /documentation/docs/guide/condition/fieldmember.md: -------------------------------------------------------------------------------- 1 | # Member 2 | -------------------------------------------------------------------------------- /documentation/docs/guide/condition/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide/condition/interface.md -------------------------------------------------------------------------------- /documentation/docs/guide/condition/member.md: -------------------------------------------------------------------------------- 1 | # Member 2 | -------------------------------------------------------------------------------- /documentation/docs/guide/condition/methodmember.md: -------------------------------------------------------------------------------- 1 | # Member 2 | -------------------------------------------------------------------------------- /documentation/docs/guide/condition/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide/condition/object.md -------------------------------------------------------------------------------- /documentation/docs/guide/condition/propertymember.md: -------------------------------------------------------------------------------- 1 | # Member 2 | -------------------------------------------------------------------------------- /documentation/docs/guide/condition/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide/condition/type.md -------------------------------------------------------------------------------- /documentation/docs/guide/predicate/attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide/predicate/attribute.md -------------------------------------------------------------------------------- /documentation/docs/guide/predicate/class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide/predicate/class.md -------------------------------------------------------------------------------- /documentation/docs/guide/predicate/fieldmember.md: -------------------------------------------------------------------------------- 1 | # Class 2 | 3 | No predicate only available for fieldmembers 4 | -------------------------------------------------------------------------------- /documentation/docs/guide/predicate/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide/predicate/interface.md -------------------------------------------------------------------------------- /documentation/docs/guide/predicate/member.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide/predicate/member.md -------------------------------------------------------------------------------- /documentation/docs/guide/predicate/methodmember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide/predicate/methodmember.md -------------------------------------------------------------------------------- /documentation/docs/guide/predicate/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide/predicate/object.md -------------------------------------------------------------------------------- /documentation/docs/guide/predicate/propertymember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide/predicate/propertymember.md -------------------------------------------------------------------------------- /documentation/docs/guide/predicate/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/guide/predicate/type.md -------------------------------------------------------------------------------- /documentation/docs/img/ArchUnitNET-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/img/ArchUnitNET-Logo.svg -------------------------------------------------------------------------------- /documentation/docs/img/attribute_access.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/img/attribute_access.svg -------------------------------------------------------------------------------- /documentation/docs/img/class_dependency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/img/class_dependency.svg -------------------------------------------------------------------------------- /documentation/docs/img/class_namespace_containment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/img/class_namespace_containment.svg -------------------------------------------------------------------------------- /documentation/docs/img/cycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/img/cycle.svg -------------------------------------------------------------------------------- /documentation/docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/img/favicon.ico -------------------------------------------------------------------------------- /documentation/docs/img/inheritance_naming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/img/inheritance_naming.svg -------------------------------------------------------------------------------- /documentation/docs/img/namespace_dependency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/img/namespace_dependency.svg -------------------------------------------------------------------------------- /documentation/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/index.md -------------------------------------------------------------------------------- /documentation/docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/license.md -------------------------------------------------------------------------------- /documentation/docs/limitations/constant_fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/limitations/constant_fields.md -------------------------------------------------------------------------------- /documentation/docs/limitations/debug_artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/docs/limitations/debug_artifacts.md -------------------------------------------------------------------------------- /documentation/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/documentation/mkdocs.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/global.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNG/ArchUnitNET/HEAD/renovate.json --------------------------------------------------------------------------------