├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .filenesting.json ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── SECURITY.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .runsettings ├── .vscode └── settings.json ├── AGENTS.md ├── CHANGELOG.md ├── Directory.Build.props ├── Directory.Packages.props ├── Fluentify.sln ├── LICENSE ├── README.md ├── analyzers ├── code.ruleset └── tests.ruleset ├── codecov.yml ├── docs └── rules │ ├── FLTFY01.md │ ├── FLTFY02.md │ ├── FLTFY03.md │ ├── FLTFY04.md │ ├── FLTFY05.md │ ├── FLTFY06.md │ ├── FLTFY07.md │ └── FLTFY08.md ├── nuget.config ├── packages └── README.md ├── scripts └── README.md └── src ├── Fluentify.Console.Tests ├── Class │ ├── CrossReferencedTests │ │ ├── WhenWithDescriptionIsCalled.cs │ │ └── WhenWithSimpleIsCalled.cs │ ├── Descriptor │ │ ├── OnIgnoredTests │ │ │ ├── WhenWithAgeIsCalled.cs │ │ │ └── WhenWithAttributesIsCalled.cs │ │ ├── OnOptionalTests │ │ │ ├── WhenAttributedWithIsCalled.cs │ │ │ ├── WhenWithAgeIsCalled.cs │ │ │ └── WhenWithNameIsCalled.cs │ │ └── OnRequiredTests │ │ │ ├── WhenAgedIsCalled.cs │ │ │ ├── WhenWithAttributesIsCalled.cs │ │ │ └── WhenWithNameIsCalled.cs │ ├── GlobalClassTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── Ignore │ │ ├── OneOfThreeTests │ │ │ ├── WhenWithAgeIsCalled.cs │ │ │ └── WhenWithAttributesIsCalled.cs │ │ └── TwoOfThreeTests │ │ │ └── WhenWithAttributesIsCalled.cs │ ├── MultipleGenericsTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── NestedInClassTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── NestedInInterfaceTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── NestedInReadOnlyStructTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── NestedInRecordStructTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── NestedInRecordTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── NestedInRefRecordStructTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── NestedInRefStructTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── NestedInStructTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── SelfDescriptor │ │ ├── OnIgnoredTests │ │ │ ├── WhenWithAgeIsCalled.cs │ │ │ └── WhenWithAttributesIsCalled.cs │ │ ├── OnOptionalTests │ │ │ ├── WhenAttributesIsCalled.cs │ │ │ ├── WhenWithAgeIsCalled.cs │ │ │ └── WhenWithNameIsCalled.cs │ │ └── OnRequiredTests │ │ │ ├── WhenAgeIsCalled.cs │ │ │ ├── WhenWithAttributesIsCalled.cs │ │ │ └── WhenWithNameIsCalled.cs │ ├── SimpleTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── SimpleWithArrayTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── SimpleWithBooleanTests │ │ ├── WhenIsRetiredIsCalled.cs │ │ ├── WhenWithAgeIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── SimpleWithCollectionTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── SimpleWithEnumerablesTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ ├── WhenWithNameIsCalled.cs │ │ ├── WhenWithNamesIsCalled.cs │ │ └── WhenWithNumbersIsCalled.cs │ ├── SingleGenericTests │ │ ├── WhenWithAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── SingleTests │ │ └── WhenWithAgeIsCalled.cs │ └── SkipAutoInstantiationTests │ │ ├── WhenInspectingExtensions.cs │ │ └── WhenWithDependencyIsCalled.cs ├── Fluentify.Console.Tests.csproj └── Record │ ├── CrossReferencedTests │ ├── WhenWithDescriptionIsCalled.cs │ └── WhenWithSimpleIsCalled.cs │ ├── Descriptor │ ├── OnIgnoredTests │ │ ├── WhenWithAgeIsCalled.cs │ │ └── WhenWithAttributesIsCalled.cs │ ├── OnOptionalTests │ │ ├── WhenAttributedWithIsCalled.cs │ │ ├── WhenWithAgeIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ └── OnRequiredTests │ │ ├── WhenAgedIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── Example │ └── Simple │ │ ├── MovieTests │ │ └── WhenMovieIsBuilt.cs │ │ └── MyServiceBuilderTests │ │ └── WhenMyServiceIsBuilt.cs │ ├── GlobalRecordTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── Ignore │ ├── OneOfThreeTests │ │ ├── WhenWithAgeIsCalled.cs │ │ └── WhenWithAttributesIsCalled.cs │ └── TwoOfThreeTests │ │ └── WhenWithAttributesIsCalled.cs │ ├── MultipleGenericsTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── NestedInClassTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── NestedInInterfaceTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── NestedInReadOnlyStructTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── NestedInRecordStructTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── NestedInRecordTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── NestedInRefRecordStructTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── NestedInRefStructTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── NestedInStructTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── SelfDescriptor │ ├── OnIgnoredTests │ │ ├── WhenWithAgeIsCalled.cs │ │ └── WhenWithAttributesIsCalled.cs │ ├── OnOptionalTests │ │ ├── WhenAttributesIsCalled.cs │ │ ├── WhenWithAgeIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ └── OnRequiredTests │ │ ├── WhenAgeIsCalled.cs │ │ ├── WhenWithAttributesIsCalled.cs │ │ └── WhenWithNameIsCalled.cs │ ├── SimpleTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── SimpleWithArrayTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── SimpleWithBooleanTests │ ├── WhenIsRetiredIsCalled.cs │ ├── WhenWithAgeIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── SimpleWithCollectionTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ ├── SimpleWithEnumerablesTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ ├── WhenWithNameIsCalled.cs │ ├── WhenWithNamesIsCalled.cs │ └── WhenWithNumbersIsCalled.cs │ ├── SingleGenericTests │ ├── WhenWithAgeIsCalled.cs │ ├── WhenWithAttributesIsCalled.cs │ └── WhenWithNameIsCalled.cs │ └── SingleTests │ └── WhenWithAgeIsCalled.cs ├── Fluentify.Console ├── Class │ ├── CrossReferenced.cs │ ├── Descriptor │ │ ├── OnIgnored.cs │ │ ├── OnOptional.cs │ │ └── OnRequired.cs │ ├── GlobalClass.cs │ ├── Ignore │ │ ├── AllThree.cs │ │ ├── OneOfThree.cs │ │ └── TwoOfThree.cs │ ├── MultipleGenerics.cs │ ├── NestedInClass.cs │ ├── NestedInInterface.cs │ ├── NestedInReadOnlyStruct.cs │ ├── NestedInRecord.cs │ ├── NestedInRecordStruct.cs │ ├── NestedInRefRecordStruct.cs │ ├── NestedInRefStruct.cs │ ├── NestedInStruct.cs │ ├── SelfDescriptor │ │ ├── OnIgnored.cs │ │ ├── OnOptional.cs │ │ └── OnRequired.cs │ ├── Simple.cs │ ├── SimpleWithArray.cs │ ├── SimpleWithBoolean.cs │ ├── SimpleWithCollection.cs │ ├── SimpleWithEnumerables.cs │ ├── Single.cs │ ├── SingleGeneric.cs │ └── SkipAutoInstantiation │ │ ├── CollectionExample.cs │ │ └── Example.cs ├── Fluentify.Console.csproj ├── Program.cs ├── Record │ ├── CrossReferenced.cs │ ├── Descriptor │ │ ├── OnIgnored.cs │ │ ├── OnOptional.cs │ │ └── OnRequired.cs │ ├── Example │ │ └── Simple │ │ │ ├── Actor.cs │ │ │ ├── Genre.cs │ │ │ ├── Movie.cs │ │ │ ├── MyService.cs │ │ │ └── MyServiceBuilder.cs │ ├── GlobalRecord.cs │ ├── Ignore │ │ ├── AllThree.cs │ │ ├── OneOfThree.cs │ │ └── TwoOfThree.cs │ ├── MultipleGenerics.cs │ ├── NestedInClass.cs │ ├── NestedInInterface.cs │ ├── NestedInReadOnlyStruct.cs │ ├── NestedInRecord.cs │ ├── NestedInRecordStruct.cs │ ├── NestedInRefRecordStruct.cs │ ├── NestedInRefStruct.cs │ ├── NestedInStruct.cs │ ├── SelfDescriptor │ │ ├── OnIgnored.cs │ │ ├── OnOptional.cs │ │ └── OnRequired.cs │ ├── Simple.cs │ ├── SimpleWithArray.cs │ ├── SimpleWithBoolean.cs │ ├── SimpleWithCollection.cs │ ├── SimpleWithEnumerables.cs │ ├── Single.cs │ └── SingleGeneric.cs └── SkipAutoInstantiation.cs ├── Fluentify.Tests ├── AnalyzerTests.cs ├── ClassAnalyzerTests │ └── WhenExecuted.cs ├── ClassGeneratorTests │ └── WhenExecuted.cs ├── DescriptorAttributeAnalyzerTests │ ├── WhenExecuted.Class.cs │ ├── WhenExecuted.Record.cs │ └── WhenExecuted.cs ├── DescriptorAttributeGeneratorTests │ └── WhenExecuted.cs ├── Fluentify.Tests.csproj ├── FluentifyAttributeGeneratorTests │ └── WhenExecuted.cs ├── GeneratorTests.cs ├── IgnoreAttributeAnalyzerTests │ ├── WhenExecuted.Class.cs │ ├── WhenExecuted.Record.cs │ └── WhenExecuted.cs ├── IgnoreAttributeGeneratorTests │ └── WhenExecuted.cs ├── InternalExtensionsGeneratorTests │ └── WhenExecuted.cs ├── Model │ ├── GenericTests │ │ ├── WhenEqualityIsChecked.cs │ │ ├── WhenEqualityIsCheckedByEquals.cs │ │ ├── WhenEqualityIsCheckedByEquatable.cs │ │ ├── WhenEqualityIsCheckedByOperator.cs │ │ ├── WhenInequalityIsChecked.cs │ │ └── WhenInequalityIsCheckedByOperator.cs │ ├── KindTests │ │ ├── WhenEqualityIsChecked.cs │ │ ├── WhenEqualityIsCheckedByEquals.cs │ │ ├── WhenEqualityIsCheckedByEquatable.cs │ │ └── WhenEqualityIsCheckedByOperator.cs │ ├── NestingTests │ │ ├── WhenEqualityIsChecked.cs │ │ ├── WhenEqualityIsCheckedByEquals.cs │ │ ├── WhenEqualityIsCheckedByEquatable.cs │ │ ├── WhenEqualityIsCheckedByOperator.cs │ │ ├── WhenInequalityIsChecked.cs │ │ └── WhenInequalityIsCheckedByOperator.cs │ ├── PropertyTests │ │ ├── WhenEqualityIsChecked.cs │ │ ├── WhenEqualityIsCheckedByEquals.cs │ │ ├── WhenEqualityIsCheckedByEquatable.cs │ │ ├── WhenEqualityIsCheckedByOperator.cs │ │ ├── WhenInequalityIsChecked.cs │ │ └── WhenInequalityIsCheckedByOperator.cs │ ├── SubjectTests │ │ ├── WhenEqualityIsChecked.cs │ │ ├── WhenEqualityIsCheckedByEquals.cs │ │ ├── WhenEqualityIsCheckedByEquatable.cs │ │ ├── WhenEqualityIsCheckedByOperator.cs │ │ ├── WhenInequalityIsChecked.cs │ │ └── WhenInequalityIsCheckedByOperator.cs │ └── TypeTests │ │ ├── WhenEqualityIsChecked.cs │ │ ├── WhenEqualityIsCheckedByEquals.cs │ │ ├── WhenEqualityIsCheckedByEquatable.cs │ │ ├── WhenEqualityIsCheckedByOperator.cs │ │ ├── WhenInequalityIsChecked.cs │ │ └── WhenInequalityIsCheckedByOperator.cs ├── RecordAnalyzerTests │ └── WhenExecuted.cs ├── RecordGeneratorTests │ └── WhenExecuted.cs ├── Semantics │ ├── Classes.cs │ ├── Definition.cs │ ├── DefinitionExtensions.GetParameter.cs │ ├── DefinitionExtensions.GetProperty.cs │ ├── INamedTypeSymbolExtensionsTests │ │ ├── WhenGetGenericsIsCalled.cs │ │ ├── WhenGetPropertiesIsCalled.cs │ │ └── WhenHasFluentifyIsCalled.cs │ ├── IPropertySymbolExtensionsTests │ │ ├── WhenGetDescriptorIsCalled.cs │ │ ├── WhenGetParameterIsCalled.cs │ │ ├── WhenHasAttributeIsCalled.cs │ │ ├── WhenHasIgnoreIsCalled.cs │ │ └── WhenHasSkipAutoInstantiationIsCalled.cs │ ├── ISymbolExtensionsTests │ │ ├── WhenGetAttributeIsCalled.cs │ │ ├── WhenGetDefaultDescriptorIsCalled.cs │ │ └── WhenHasAttributeIsCalled.cs │ ├── ITypeParameterSymbolExtensionsTests │ │ └── WhenGetConstraintsIsCalled.cs │ ├── ITypeSymbolExtensionsTests │ │ ├── WhenHasAccessibleParameterlessConstructorIsCalled.cs │ │ ├── WhenIsAttributeIsCalled.cs │ │ └── WhenIsBuildableIsCalled.cs │ ├── Records.cs │ └── Types.cs ├── SkipAutoInstantiationAttributeGeneratorTests │ └── WhenExecuted.cs ├── Snippets │ ├── Attributes.cs │ ├── Classes.AllThreeIgnored.cs │ ├── Classes.Boolean.cs │ ├── Classes.CrossReferenced.cs │ ├── Classes.DescriptorOnIgnored.cs │ ├── Classes.DescriptorOnOptional.cs │ ├── Classes.DescriptorOnRequired.cs │ ├── Classes.Global.cs │ ├── Classes.InvalidDescriptor.cs │ ├── Classes.MultipleGenerics.cs │ ├── Classes.NestedInClass.cs │ ├── Classes.NestedInClassWithGenerics.cs │ ├── Classes.NestedInStruct.cs │ ├── Classes.NestedInStructWithGenerics.cs │ ├── Classes.OneOfThreeIgnored.cs │ ├── Classes.SelfDescriptorOnIgnored.cs │ ├── Classes.SelfDescriptorOnOptional.cs │ ├── Classes.SelfDescriptorOnRequired.cs │ ├── Classes.Simple.cs │ ├── Classes.Single.cs │ ├── Classes.SingleGeneric.cs │ ├── Classes.SkipAutoInstantiationOnProperty.cs │ ├── Classes.SkipAutoInstantiationOnType.cs │ ├── Classes.TwoOfThreeIgnored.cs │ ├── Classes.Unannotated.cs │ ├── Classes.Unsupported.cs │ ├── Classes.cs │ ├── Declared.cs │ ├── DeclaredAttribute.cs │ ├── Extensions.cs │ ├── Generated.cs │ ├── Records.AllThreeIgnored.cs │ ├── Records.Boolean.cs │ ├── Records.CrossReferenced.cs │ ├── Records.DescriptorOnIgnored.cs │ ├── Records.DescriptorOnOptional.cs │ ├── Records.DescriptorOnRequired.cs │ ├── Records.Global.cs │ ├── Records.InvalidDescriptor.cs │ ├── Records.MultipleGenerics.cs │ ├── Records.NestedInClass.cs │ ├── Records.NestedInClassWithGenerics.cs │ ├── Records.NestedInInterface.cs │ ├── Records.NestedInInterfaceWithGenerics.cs │ ├── Records.NestedInRecord.cs │ ├── Records.NestedInRecordWithGenerics.cs │ ├── Records.NestedInStruct.cs │ ├── Records.NestedInStructWithGenerics.cs │ ├── Records.OneOfThreeIgnored.cs │ ├── Records.SelfDescriptorOnIgnored.cs │ ├── Records.SelfDescriptorOnOptional.cs │ ├── Records.SelfDescriptorOnRequired.cs │ ├── Records.Simple.cs │ ├── Records.SimpleWithDefaultConstructor.cs │ ├── Records.SimpleWithoutPartial.cs │ ├── Records.Single.cs │ ├── Records.SingleGeneric.cs │ ├── Records.SkipAutoInstantiationOnProperty.cs │ ├── Records.SkipAutoInstantiationOnType.cs │ ├── Records.TwoOfThreeIgnored.cs │ ├── Records.Unannotated.cs │ ├── Records.Unsupported.cs │ └── Records.cs ├── Source │ ├── GenericExtensionsTests │ │ ├── WhenToConstraintsIsCalled.cs │ │ └── WhenToParametersIsCalled.cs │ ├── PropertyExtensionsTests │ │ ├── WhenGetExtensionsIsCalled.WhenArray.cs │ │ ├── WhenGetExtensionsIsCalled.WhenCollection.cs │ │ ├── WhenGetExtensionsIsCalled.WhenEnumerable.cs │ │ └── WhenGetExtensionsIsCalled.cs │ └── SubjectExtensionsTests │ │ ├── WhenGetConstructorIsCalled.cs │ │ └── WhenToMetadataIsCalled.cs ├── StringExtensionsTests │ └── WhenIndentIsCalled.cs └── Syntax │ └── TypeDeclarationSyntaxExtensionsTests │ ├── WhenIsPartialIsCalled.cs │ └── WhenToSubjectIsCalled.cs └── Fluentify ├── Analyzer.Resources.Designer.cs ├── Analyzer.Resources.resx ├── Analyzer.cs ├── AnalyzerReleases.Shipped.md ├── AnalyzerReleases.Unshipped.md ├── AttributeAnalyzer.Resources.Designer.cs ├── AttributeAnalyzer.Resources.resx ├── AttributeAnalyzer.cs ├── AttributeGenerator.cs ├── ClassAnalyzer.Resources.Designer.cs ├── ClassAnalyzer.Resources.resx ├── ClassAnalyzer.cs ├── ClassGenerator.cs ├── DescriptorAttributeAnalyzer.Resources.Designer.cs ├── DescriptorAttributeAnalyzer.Resources.resx ├── DescriptorAttributeAnalyzer.cs ├── DescriptorAttributeGenerator.cs ├── Fluentify.csproj ├── FluentifyAttributeGenerator.cs ├── FluentifyGenerator.Source.cs ├── FluentifyGenerator.cs ├── IgnoreAttributeAnalyzer.Resources.Designer.cs ├── IgnoreAttributeAnalyzer.Resources.resx ├── IgnoreAttributeAnalyzer.cs ├── IgnoreAttributeGenerator.cs ├── InternalExtensionsGenerator.cs ├── Model ├── Generic.cs ├── Kind.cs ├── Nesting.cs ├── Pattern.cs ├── Property.cs ├── Subject.cs └── Type.cs ├── RecordAnalyzer.Resources.Designer.cs ├── RecordAnalyzer.Resources.resx ├── RecordAnalyzer.cs ├── RecordGenerator.cs ├── Semantics ├── INamedTypeSymbolExtensions.GetGenerics.cs ├── INamedTypeSymbolExtensions.GetProperties.cs ├── INamedTypeSymbolExtensions.HasFluentify.cs ├── INamedTypeSymbolExtensions.IsPartial.cs ├── IPropertySymbolExtensions.GetDescriptor.cs ├── IPropertySymbolExtensions.GetKind.cs ├── IPropertySymbolExtensions.GetParameter.cs ├── IPropertySymbolExtensions.HasAttribute.cs ├── IPropertySymbolExtensions.HasIgnore.cs ├── IPropertySymbolExtensions.HasSkipAutoInstantiation.cs ├── IPropertySymbolExtensions.IsMutable.cs ├── ISymbolExtensions.GetAttribute.cs ├── ISymbolExtensions.GetDefaultDescriptor.cs ├── ISymbolExtensions.HasAttribute.cs ├── ISymbolExtensions.HasIgnore.cs ├── ITypeParameterSymbolExtensions.GetConstraints.cs ├── ITypeSymbolExtensions.HasAccessibleParameterlessConstructor.cs ├── ITypeSymbolExtensions.IsAttribute.cs ├── ITypeSymbolExtensions.IsBuildable.cs └── ITypeSymbolExtensions.IsNullable.cs ├── SkipAutoInstantiationAttributeGenerator.cs ├── Source ├── GenericExtensions.ToConstraints.cs ├── GenericExtensions.ToParameters.cs ├── Metadata.cs ├── PropertyExtensions.GetArrayExtensionMethodBody.cs ├── PropertyExtensions.GetCollectionExtensionMethodBody.cs ├── PropertyExtensions.GetEnumerableExtensionMethodBody.cs ├── PropertyExtensions.GetExtensions.cs ├── PropertyExtensions.GetScalarDelegateExtensionMethodBody.cs ├── PropertyExtensions.GetScalarExtensionMethodBody.cs ├── SubjectExtensions.GetConstructor.cs └── SubjectExtensions.ToMetadata.cs ├── StringExtensions.Indent.cs └── Syntax ├── SyntaxNodeExtensions.GetParent.cs ├── TypeDeclarationSyntaxExtensions.IsPartial.cs └── TypeDeclarationSyntaxExtensions.ToSubject.cs /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.filenesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.filenesting.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @MooVC -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.gitignore -------------------------------------------------------------------------------- /.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.runsettings -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Fluentify.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/Fluentify.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/README.md -------------------------------------------------------------------------------- /analyzers/code.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/analyzers/code.ruleset -------------------------------------------------------------------------------- /analyzers/tests.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/analyzers/tests.ruleset -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/rules/FLTFY01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/docs/rules/FLTFY01.md -------------------------------------------------------------------------------- /docs/rules/FLTFY02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/docs/rules/FLTFY02.md -------------------------------------------------------------------------------- /docs/rules/FLTFY03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/docs/rules/FLTFY03.md -------------------------------------------------------------------------------- /docs/rules/FLTFY04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/docs/rules/FLTFY04.md -------------------------------------------------------------------------------- /docs/rules/FLTFY05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/docs/rules/FLTFY05.md -------------------------------------------------------------------------------- /docs/rules/FLTFY06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/docs/rules/FLTFY06.md -------------------------------------------------------------------------------- /docs/rules/FLTFY07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/docs/rules/FLTFY07.md -------------------------------------------------------------------------------- /docs/rules/FLTFY08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/docs/rules/FLTFY08.md -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/nuget.config -------------------------------------------------------------------------------- /packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/packages/README.md -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/scripts/README.md -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/CrossReferencedTests/WhenWithDescriptionIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/CrossReferencedTests/WhenWithDescriptionIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/CrossReferencedTests/WhenWithSimpleIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/CrossReferencedTests/WhenWithSimpleIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/Descriptor/OnIgnoredTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/Descriptor/OnIgnoredTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/Descriptor/OnIgnoredTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/Descriptor/OnIgnoredTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/Descriptor/OnOptionalTests/WhenAttributedWithIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/Descriptor/OnOptionalTests/WhenAttributedWithIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/Descriptor/OnOptionalTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/Descriptor/OnOptionalTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/Descriptor/OnOptionalTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/Descriptor/OnOptionalTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/Descriptor/OnRequiredTests/WhenAgedIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/Descriptor/OnRequiredTests/WhenAgedIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/Descriptor/OnRequiredTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/Descriptor/OnRequiredTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/Descriptor/OnRequiredTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/Descriptor/OnRequiredTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/GlobalClassTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/GlobalClassTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/GlobalClassTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/GlobalClassTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/GlobalClassTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/GlobalClassTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/Ignore/OneOfThreeTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/Ignore/OneOfThreeTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/Ignore/OneOfThreeTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/Ignore/OneOfThreeTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/Ignore/TwoOfThreeTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/Ignore/TwoOfThreeTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/MultipleGenericsTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/MultipleGenericsTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/MultipleGenericsTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/MultipleGenericsTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/MultipleGenericsTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/MultipleGenericsTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInClassTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInClassTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInClassTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInClassTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInClassTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInClassTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInInterfaceTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInInterfaceTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInInterfaceTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInInterfaceTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInInterfaceTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInInterfaceTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInReadOnlyStructTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInReadOnlyStructTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInReadOnlyStructTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInReadOnlyStructTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInReadOnlyStructTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInReadOnlyStructTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInRecordStructTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInRecordStructTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInRecordStructTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInRecordStructTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInRecordStructTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInRecordStructTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInRecordTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInRecordTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInRecordTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInRecordTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInRecordTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInRecordTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInRefRecordStructTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInRefRecordStructTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInRefRecordStructTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInRefRecordStructTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInRefRecordStructTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInRefRecordStructTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInRefStructTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInRefStructTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInRefStructTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInRefStructTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInRefStructTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInRefStructTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInStructTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInStructTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInStructTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInStructTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/NestedInStructTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/NestedInStructTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SelfDescriptor/OnIgnoredTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SelfDescriptor/OnIgnoredTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SelfDescriptor/OnIgnoredTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SelfDescriptor/OnIgnoredTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SelfDescriptor/OnOptionalTests/WhenAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SelfDescriptor/OnOptionalTests/WhenAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SelfDescriptor/OnOptionalTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SelfDescriptor/OnOptionalTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SelfDescriptor/OnOptionalTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SelfDescriptor/OnOptionalTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SelfDescriptor/OnRequiredTests/WhenAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SelfDescriptor/OnRequiredTests/WhenAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SelfDescriptor/OnRequiredTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SelfDescriptor/OnRequiredTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SelfDescriptor/OnRequiredTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SelfDescriptor/OnRequiredTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithArrayTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithArrayTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithArrayTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithArrayTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithArrayTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithArrayTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithBooleanTests/WhenIsRetiredIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithBooleanTests/WhenIsRetiredIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithBooleanTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithBooleanTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithBooleanTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithBooleanTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithCollectionTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithCollectionTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithCollectionTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithCollectionTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithCollectionTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithCollectionTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithEnumerablesTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithEnumerablesTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithEnumerablesTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithEnumerablesTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithEnumerablesTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithEnumerablesTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithEnumerablesTests/WhenWithNamesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithEnumerablesTests/WhenWithNamesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SimpleWithEnumerablesTests/WhenWithNumbersIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SimpleWithEnumerablesTests/WhenWithNumbersIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SingleGenericTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SingleGenericTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SingleGenericTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SingleGenericTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SingleGenericTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SingleGenericTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SingleTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SingleTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SkipAutoInstantiationTests/WhenInspectingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SkipAutoInstantiationTests/WhenInspectingExtensions.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Class/SkipAutoInstantiationTests/WhenWithDependencyIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Class/SkipAutoInstantiationTests/WhenWithDependencyIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Fluentify.Console.Tests.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/CrossReferencedTests/WhenWithDescriptionIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/CrossReferencedTests/WhenWithDescriptionIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/CrossReferencedTests/WhenWithSimpleIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/CrossReferencedTests/WhenWithSimpleIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/Descriptor/OnIgnoredTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/Descriptor/OnIgnoredTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/Descriptor/OnIgnoredTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/Descriptor/OnIgnoredTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/Descriptor/OnOptionalTests/WhenAttributedWithIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/Descriptor/OnOptionalTests/WhenAttributedWithIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/Descriptor/OnOptionalTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/Descriptor/OnOptionalTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/Descriptor/OnOptionalTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/Descriptor/OnOptionalTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/Descriptor/OnRequiredTests/WhenAgedIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/Descriptor/OnRequiredTests/WhenAgedIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/Descriptor/OnRequiredTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/Descriptor/OnRequiredTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/Descriptor/OnRequiredTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/Descriptor/OnRequiredTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/Example/Simple/MovieTests/WhenMovieIsBuilt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/Example/Simple/MovieTests/WhenMovieIsBuilt.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/Example/Simple/MyServiceBuilderTests/WhenMyServiceIsBuilt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/Example/Simple/MyServiceBuilderTests/WhenMyServiceIsBuilt.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/GlobalRecordTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/GlobalRecordTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/GlobalRecordTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/GlobalRecordTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/GlobalRecordTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/GlobalRecordTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/Ignore/OneOfThreeTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/Ignore/OneOfThreeTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/Ignore/OneOfThreeTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/Ignore/OneOfThreeTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/Ignore/TwoOfThreeTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/Ignore/TwoOfThreeTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/MultipleGenericsTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/MultipleGenericsTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/MultipleGenericsTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/MultipleGenericsTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/MultipleGenericsTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/MultipleGenericsTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInClassTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInClassTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInClassTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInClassTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInClassTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInClassTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInInterfaceTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInInterfaceTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInInterfaceTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInInterfaceTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInInterfaceTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInInterfaceTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInReadOnlyStructTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInReadOnlyStructTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInReadOnlyStructTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInReadOnlyStructTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInReadOnlyStructTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInReadOnlyStructTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInRecordStructTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInRecordStructTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInRecordStructTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInRecordStructTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInRecordStructTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInRecordStructTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInRecordTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInRecordTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInRecordTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInRecordTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInRecordTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInRecordTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInRefRecordStructTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInRefRecordStructTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInRefRecordStructTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInRefRecordStructTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInRefRecordStructTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInRefRecordStructTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInRefStructTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInRefStructTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInRefStructTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInRefStructTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInRefStructTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInRefStructTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInStructTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInStructTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInStructTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInStructTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/NestedInStructTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/NestedInStructTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SelfDescriptor/OnIgnoredTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SelfDescriptor/OnIgnoredTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SelfDescriptor/OnIgnoredTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SelfDescriptor/OnIgnoredTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SelfDescriptor/OnOptionalTests/WhenAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SelfDescriptor/OnOptionalTests/WhenAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SelfDescriptor/OnOptionalTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SelfDescriptor/OnOptionalTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SelfDescriptor/OnOptionalTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SelfDescriptor/OnOptionalTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SelfDescriptor/OnRequiredTests/WhenAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SelfDescriptor/OnRequiredTests/WhenAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SelfDescriptor/OnRequiredTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SelfDescriptor/OnRequiredTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SelfDescriptor/OnRequiredTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SelfDescriptor/OnRequiredTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithArrayTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithArrayTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithArrayTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithArrayTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithArrayTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithArrayTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithBooleanTests/WhenIsRetiredIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithBooleanTests/WhenIsRetiredIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithBooleanTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithBooleanTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithBooleanTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithBooleanTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithCollectionTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithCollectionTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithCollectionTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithCollectionTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithCollectionTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithCollectionTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithEnumerablesTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithEnumerablesTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithEnumerablesTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithEnumerablesTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithEnumerablesTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithEnumerablesTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithEnumerablesTests/WhenWithNamesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithEnumerablesTests/WhenWithNamesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SimpleWithEnumerablesTests/WhenWithNumbersIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SimpleWithEnumerablesTests/WhenWithNumbersIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SingleGenericTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SingleGenericTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SingleGenericTests/WhenWithAttributesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SingleGenericTests/WhenWithAttributesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SingleGenericTests/WhenWithNameIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SingleGenericTests/WhenWithNameIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console.Tests/Record/SingleTests/WhenWithAgeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console.Tests/Record/SingleTests/WhenWithAgeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/CrossReferenced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/CrossReferenced.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/Descriptor/OnIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/Descriptor/OnIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/Descriptor/OnOptional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/Descriptor/OnOptional.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/Descriptor/OnRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/Descriptor/OnRequired.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/GlobalClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/GlobalClass.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/Ignore/AllThree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/Ignore/AllThree.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/Ignore/OneOfThree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/Ignore/OneOfThree.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/Ignore/TwoOfThree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/Ignore/TwoOfThree.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/MultipleGenerics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/MultipleGenerics.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/NestedInClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/NestedInClass.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/NestedInInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/NestedInInterface.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/NestedInReadOnlyStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/NestedInReadOnlyStruct.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/NestedInRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/NestedInRecord.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/NestedInRecordStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/NestedInRecordStruct.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/NestedInRefRecordStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/NestedInRefRecordStruct.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/NestedInRefStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/NestedInRefStruct.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/NestedInStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/NestedInStruct.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/SelfDescriptor/OnIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/SelfDescriptor/OnIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/SelfDescriptor/OnOptional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/SelfDescriptor/OnOptional.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/SelfDescriptor/OnRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/SelfDescriptor/OnRequired.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/Simple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/Simple.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/SimpleWithArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/SimpleWithArray.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/SimpleWithBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/SimpleWithBoolean.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/SimpleWithCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/SimpleWithCollection.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/SimpleWithEnumerables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/SimpleWithEnumerables.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/Single.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/SingleGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/SingleGeneric.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/SkipAutoInstantiation/CollectionExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/SkipAutoInstantiation/CollectionExample.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Class/SkipAutoInstantiation/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Class/SkipAutoInstantiation/Example.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Fluentify.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Fluentify.Console.csproj -------------------------------------------------------------------------------- /src/Fluentify.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Program.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/CrossReferenced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/CrossReferenced.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/Descriptor/OnIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/Descriptor/OnIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/Descriptor/OnOptional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/Descriptor/OnOptional.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/Descriptor/OnRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/Descriptor/OnRequired.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/Example/Simple/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/Example/Simple/Actor.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/Example/Simple/Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/Example/Simple/Genre.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/Example/Simple/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/Example/Simple/Movie.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/Example/Simple/MyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/Example/Simple/MyService.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/Example/Simple/MyServiceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/Example/Simple/MyServiceBuilder.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/GlobalRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/GlobalRecord.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/Ignore/AllThree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/Ignore/AllThree.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/Ignore/OneOfThree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/Ignore/OneOfThree.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/Ignore/TwoOfThree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/Ignore/TwoOfThree.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/MultipleGenerics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/MultipleGenerics.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/NestedInClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/NestedInClass.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/NestedInInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/NestedInInterface.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/NestedInReadOnlyStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/NestedInReadOnlyStruct.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/NestedInRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/NestedInRecord.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/NestedInRecordStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/NestedInRecordStruct.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/NestedInRefRecordStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/NestedInRefRecordStruct.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/NestedInRefStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/NestedInRefStruct.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/NestedInStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/NestedInStruct.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/SelfDescriptor/OnIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/SelfDescriptor/OnIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/SelfDescriptor/OnOptional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/SelfDescriptor/OnOptional.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/SelfDescriptor/OnRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/SelfDescriptor/OnRequired.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/Simple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/Simple.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/SimpleWithArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/SimpleWithArray.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/SimpleWithBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/SimpleWithBoolean.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/SimpleWithCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/SimpleWithCollection.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/SimpleWithEnumerables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/SimpleWithEnumerables.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/Single.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/Record/SingleGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/Record/SingleGeneric.cs -------------------------------------------------------------------------------- /src/Fluentify.Console/SkipAutoInstantiation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Console/SkipAutoInstantiation.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/AnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/AnalyzerTests.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/ClassAnalyzerTests/WhenExecuted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/ClassAnalyzerTests/WhenExecuted.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/ClassGeneratorTests/WhenExecuted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/ClassGeneratorTests/WhenExecuted.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/DescriptorAttributeAnalyzerTests/WhenExecuted.Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/DescriptorAttributeAnalyzerTests/WhenExecuted.Class.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/DescriptorAttributeAnalyzerTests/WhenExecuted.Record.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/DescriptorAttributeAnalyzerTests/WhenExecuted.Record.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/DescriptorAttributeAnalyzerTests/WhenExecuted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/DescriptorAttributeAnalyzerTests/WhenExecuted.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/DescriptorAttributeGeneratorTests/WhenExecuted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/DescriptorAttributeGeneratorTests/WhenExecuted.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Fluentify.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Fluentify.Tests.csproj -------------------------------------------------------------------------------- /src/Fluentify.Tests/FluentifyAttributeGeneratorTests/WhenExecuted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/FluentifyAttributeGeneratorTests/WhenExecuted.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/GeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/GeneratorTests.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/IgnoreAttributeAnalyzerTests/WhenExecuted.Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/IgnoreAttributeAnalyzerTests/WhenExecuted.Class.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/IgnoreAttributeAnalyzerTests/WhenExecuted.Record.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/IgnoreAttributeAnalyzerTests/WhenExecuted.Record.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/IgnoreAttributeAnalyzerTests/WhenExecuted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/IgnoreAttributeAnalyzerTests/WhenExecuted.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/IgnoreAttributeGeneratorTests/WhenExecuted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/IgnoreAttributeGeneratorTests/WhenExecuted.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/InternalExtensionsGeneratorTests/WhenExecuted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/InternalExtensionsGeneratorTests/WhenExecuted.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/GenericTests/WhenEqualityIsChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/GenericTests/WhenEqualityIsChecked.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/GenericTests/WhenEqualityIsCheckedByEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/GenericTests/WhenEqualityIsCheckedByEquals.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/GenericTests/WhenEqualityIsCheckedByEquatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/GenericTests/WhenEqualityIsCheckedByEquatable.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/GenericTests/WhenEqualityIsCheckedByOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/GenericTests/WhenEqualityIsCheckedByOperator.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/GenericTests/WhenInequalityIsChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/GenericTests/WhenInequalityIsChecked.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/GenericTests/WhenInequalityIsCheckedByOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/GenericTests/WhenInequalityIsCheckedByOperator.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/KindTests/WhenEqualityIsChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/KindTests/WhenEqualityIsChecked.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/KindTests/WhenEqualityIsCheckedByEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/KindTests/WhenEqualityIsCheckedByEquals.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/KindTests/WhenEqualityIsCheckedByEquatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/KindTests/WhenEqualityIsCheckedByEquatable.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/KindTests/WhenEqualityIsCheckedByOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/KindTests/WhenEqualityIsCheckedByOperator.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/NestingTests/WhenEqualityIsChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/NestingTests/WhenEqualityIsChecked.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/NestingTests/WhenEqualityIsCheckedByEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/NestingTests/WhenEqualityIsCheckedByEquals.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/NestingTests/WhenEqualityIsCheckedByEquatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/NestingTests/WhenEqualityIsCheckedByEquatable.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/NestingTests/WhenEqualityIsCheckedByOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/NestingTests/WhenEqualityIsCheckedByOperator.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/NestingTests/WhenInequalityIsChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/NestingTests/WhenInequalityIsChecked.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/NestingTests/WhenInequalityIsCheckedByOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/NestingTests/WhenInequalityIsCheckedByOperator.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/PropertyTests/WhenEqualityIsChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/PropertyTests/WhenEqualityIsChecked.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/PropertyTests/WhenEqualityIsCheckedByEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/PropertyTests/WhenEqualityIsCheckedByEquals.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/PropertyTests/WhenEqualityIsCheckedByEquatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/PropertyTests/WhenEqualityIsCheckedByEquatable.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/PropertyTests/WhenEqualityIsCheckedByOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/PropertyTests/WhenEqualityIsCheckedByOperator.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/PropertyTests/WhenInequalityIsChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/PropertyTests/WhenInequalityIsChecked.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/PropertyTests/WhenInequalityIsCheckedByOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/PropertyTests/WhenInequalityIsCheckedByOperator.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/SubjectTests/WhenEqualityIsChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/SubjectTests/WhenEqualityIsChecked.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/SubjectTests/WhenEqualityIsCheckedByEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/SubjectTests/WhenEqualityIsCheckedByEquals.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/SubjectTests/WhenEqualityIsCheckedByEquatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/SubjectTests/WhenEqualityIsCheckedByEquatable.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/SubjectTests/WhenEqualityIsCheckedByOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/SubjectTests/WhenEqualityIsCheckedByOperator.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/SubjectTests/WhenInequalityIsChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/SubjectTests/WhenInequalityIsChecked.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/SubjectTests/WhenInequalityIsCheckedByOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/SubjectTests/WhenInequalityIsCheckedByOperator.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/TypeTests/WhenEqualityIsChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/TypeTests/WhenEqualityIsChecked.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/TypeTests/WhenEqualityIsCheckedByEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/TypeTests/WhenEqualityIsCheckedByEquals.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/TypeTests/WhenEqualityIsCheckedByEquatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/TypeTests/WhenEqualityIsCheckedByEquatable.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/TypeTests/WhenEqualityIsCheckedByOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/TypeTests/WhenEqualityIsCheckedByOperator.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/TypeTests/WhenInequalityIsChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/TypeTests/WhenInequalityIsChecked.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Model/TypeTests/WhenInequalityIsCheckedByOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Model/TypeTests/WhenInequalityIsCheckedByOperator.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/RecordAnalyzerTests/WhenExecuted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/RecordAnalyzerTests/WhenExecuted.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/RecordGeneratorTests/WhenExecuted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/RecordGeneratorTests/WhenExecuted.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/Classes.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/Definition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/Definition.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/DefinitionExtensions.GetParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/DefinitionExtensions.GetParameter.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/DefinitionExtensions.GetProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/DefinitionExtensions.GetProperty.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/INamedTypeSymbolExtensionsTests/WhenGetGenericsIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/INamedTypeSymbolExtensionsTests/WhenGetGenericsIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/INamedTypeSymbolExtensionsTests/WhenGetPropertiesIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/INamedTypeSymbolExtensionsTests/WhenGetPropertiesIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/INamedTypeSymbolExtensionsTests/WhenHasFluentifyIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/INamedTypeSymbolExtensionsTests/WhenHasFluentifyIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/IPropertySymbolExtensionsTests/WhenGetDescriptorIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/IPropertySymbolExtensionsTests/WhenGetDescriptorIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/IPropertySymbolExtensionsTests/WhenGetParameterIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/IPropertySymbolExtensionsTests/WhenGetParameterIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/IPropertySymbolExtensionsTests/WhenHasAttributeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/IPropertySymbolExtensionsTests/WhenHasAttributeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/IPropertySymbolExtensionsTests/WhenHasIgnoreIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/IPropertySymbolExtensionsTests/WhenHasIgnoreIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/IPropertySymbolExtensionsTests/WhenHasSkipAutoInstantiationIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/IPropertySymbolExtensionsTests/WhenHasSkipAutoInstantiationIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/ISymbolExtensionsTests/WhenGetAttributeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/ISymbolExtensionsTests/WhenGetAttributeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/ISymbolExtensionsTests/WhenGetDefaultDescriptorIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/ISymbolExtensionsTests/WhenGetDefaultDescriptorIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/ISymbolExtensionsTests/WhenHasAttributeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/ISymbolExtensionsTests/WhenHasAttributeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/ITypeParameterSymbolExtensionsTests/WhenGetConstraintsIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/ITypeParameterSymbolExtensionsTests/WhenGetConstraintsIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/ITypeSymbolExtensionsTests/WhenHasAccessibleParameterlessConstructorIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/ITypeSymbolExtensionsTests/WhenHasAccessibleParameterlessConstructorIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/ITypeSymbolExtensionsTests/WhenIsAttributeIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/ITypeSymbolExtensionsTests/WhenIsAttributeIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/ITypeSymbolExtensionsTests/WhenIsBuildableIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/ITypeSymbolExtensionsTests/WhenIsBuildableIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/Records.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/Records.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Semantics/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Semantics/Types.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/SkipAutoInstantiationAttributeGeneratorTests/WhenExecuted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/SkipAutoInstantiationAttributeGeneratorTests/WhenExecuted.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Attributes.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.AllThreeIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.AllThreeIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.Boolean.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.CrossReferenced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.CrossReferenced.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.DescriptorOnIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.DescriptorOnIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.DescriptorOnOptional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.DescriptorOnOptional.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.DescriptorOnRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.DescriptorOnRequired.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.Global.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.InvalidDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.InvalidDescriptor.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.MultipleGenerics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.MultipleGenerics.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.NestedInClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.NestedInClass.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.NestedInClassWithGenerics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.NestedInClassWithGenerics.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.NestedInStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.NestedInStruct.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.NestedInStructWithGenerics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.NestedInStructWithGenerics.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.OneOfThreeIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.OneOfThreeIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.SelfDescriptorOnIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.SelfDescriptorOnIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.SelfDescriptorOnOptional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.SelfDescriptorOnOptional.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.SelfDescriptorOnRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.SelfDescriptorOnRequired.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.Simple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.Simple.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.Single.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.SingleGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.SingleGeneric.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.SkipAutoInstantiationOnProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.SkipAutoInstantiationOnProperty.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.SkipAutoInstantiationOnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.SkipAutoInstantiationOnType.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.TwoOfThreeIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.TwoOfThreeIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.Unannotated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.Unannotated.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.Unsupported.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.Unsupported.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Classes.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Declared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Declared.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/DeclaredAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/DeclaredAttribute.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Extensions.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Generated.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.AllThreeIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.AllThreeIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.Boolean.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.CrossReferenced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.CrossReferenced.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.DescriptorOnIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.DescriptorOnIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.DescriptorOnOptional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.DescriptorOnOptional.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.DescriptorOnRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.DescriptorOnRequired.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.Global.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.InvalidDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.InvalidDescriptor.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.MultipleGenerics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.MultipleGenerics.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.NestedInClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.NestedInClass.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.NestedInClassWithGenerics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.NestedInClassWithGenerics.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.NestedInInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.NestedInInterface.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.NestedInInterfaceWithGenerics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.NestedInInterfaceWithGenerics.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.NestedInRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.NestedInRecord.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.NestedInRecordWithGenerics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.NestedInRecordWithGenerics.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.NestedInStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.NestedInStruct.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.NestedInStructWithGenerics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.NestedInStructWithGenerics.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.OneOfThreeIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.OneOfThreeIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.SelfDescriptorOnIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.SelfDescriptorOnIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.SelfDescriptorOnOptional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.SelfDescriptorOnOptional.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.SelfDescriptorOnRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.SelfDescriptorOnRequired.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.Simple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.Simple.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.SimpleWithDefaultConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.SimpleWithDefaultConstructor.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.SimpleWithoutPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.SimpleWithoutPartial.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.Single.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.SingleGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.SingleGeneric.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.SkipAutoInstantiationOnProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.SkipAutoInstantiationOnProperty.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.SkipAutoInstantiationOnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.SkipAutoInstantiationOnType.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.TwoOfThreeIgnored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.TwoOfThreeIgnored.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.Unannotated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.Unannotated.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.Unsupported.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.Unsupported.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Snippets/Records.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Snippets/Records.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Source/GenericExtensionsTests/WhenToConstraintsIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Source/GenericExtensionsTests/WhenToConstraintsIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Source/GenericExtensionsTests/WhenToParametersIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Source/GenericExtensionsTests/WhenToParametersIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Source/PropertyExtensionsTests/WhenGetExtensionsIsCalled.WhenArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Source/PropertyExtensionsTests/WhenGetExtensionsIsCalled.WhenArray.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Source/PropertyExtensionsTests/WhenGetExtensionsIsCalled.WhenCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Source/PropertyExtensionsTests/WhenGetExtensionsIsCalled.WhenCollection.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Source/PropertyExtensionsTests/WhenGetExtensionsIsCalled.WhenEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Source/PropertyExtensionsTests/WhenGetExtensionsIsCalled.WhenEnumerable.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Source/PropertyExtensionsTests/WhenGetExtensionsIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Source/PropertyExtensionsTests/WhenGetExtensionsIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Source/SubjectExtensionsTests/WhenGetConstructorIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Source/SubjectExtensionsTests/WhenGetConstructorIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Source/SubjectExtensionsTests/WhenToMetadataIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Source/SubjectExtensionsTests/WhenToMetadataIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/StringExtensionsTests/WhenIndentIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/StringExtensionsTests/WhenIndentIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Syntax/TypeDeclarationSyntaxExtensionsTests/WhenIsPartialIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Syntax/TypeDeclarationSyntaxExtensionsTests/WhenIsPartialIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify.Tests/Syntax/TypeDeclarationSyntaxExtensionsTests/WhenToSubjectIsCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify.Tests/Syntax/TypeDeclarationSyntaxExtensionsTests/WhenToSubjectIsCalled.cs -------------------------------------------------------------------------------- /src/Fluentify/Analyzer.Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Analyzer.Resources.Designer.cs -------------------------------------------------------------------------------- /src/Fluentify/Analyzer.Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Analyzer.Resources.resx -------------------------------------------------------------------------------- /src/Fluentify/Analyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Analyzer.cs -------------------------------------------------------------------------------- /src/Fluentify/AnalyzerReleases.Shipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/AnalyzerReleases.Shipped.md -------------------------------------------------------------------------------- /src/Fluentify/AnalyzerReleases.Unshipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/AnalyzerReleases.Unshipped.md -------------------------------------------------------------------------------- /src/Fluentify/AttributeAnalyzer.Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/AttributeAnalyzer.Resources.Designer.cs -------------------------------------------------------------------------------- /src/Fluentify/AttributeAnalyzer.Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/AttributeAnalyzer.Resources.resx -------------------------------------------------------------------------------- /src/Fluentify/AttributeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/AttributeAnalyzer.cs -------------------------------------------------------------------------------- /src/Fluentify/AttributeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/AttributeGenerator.cs -------------------------------------------------------------------------------- /src/Fluentify/ClassAnalyzer.Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/ClassAnalyzer.Resources.Designer.cs -------------------------------------------------------------------------------- /src/Fluentify/ClassAnalyzer.Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/ClassAnalyzer.Resources.resx -------------------------------------------------------------------------------- /src/Fluentify/ClassAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/ClassAnalyzer.cs -------------------------------------------------------------------------------- /src/Fluentify/ClassGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/ClassGenerator.cs -------------------------------------------------------------------------------- /src/Fluentify/DescriptorAttributeAnalyzer.Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/DescriptorAttributeAnalyzer.Resources.Designer.cs -------------------------------------------------------------------------------- /src/Fluentify/DescriptorAttributeAnalyzer.Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/DescriptorAttributeAnalyzer.Resources.resx -------------------------------------------------------------------------------- /src/Fluentify/DescriptorAttributeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/DescriptorAttributeAnalyzer.cs -------------------------------------------------------------------------------- /src/Fluentify/DescriptorAttributeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/DescriptorAttributeGenerator.cs -------------------------------------------------------------------------------- /src/Fluentify/Fluentify.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Fluentify.csproj -------------------------------------------------------------------------------- /src/Fluentify/FluentifyAttributeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/FluentifyAttributeGenerator.cs -------------------------------------------------------------------------------- /src/Fluentify/FluentifyGenerator.Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/FluentifyGenerator.Source.cs -------------------------------------------------------------------------------- /src/Fluentify/FluentifyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/FluentifyGenerator.cs -------------------------------------------------------------------------------- /src/Fluentify/IgnoreAttributeAnalyzer.Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/IgnoreAttributeAnalyzer.Resources.Designer.cs -------------------------------------------------------------------------------- /src/Fluentify/IgnoreAttributeAnalyzer.Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/IgnoreAttributeAnalyzer.Resources.resx -------------------------------------------------------------------------------- /src/Fluentify/IgnoreAttributeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/IgnoreAttributeAnalyzer.cs -------------------------------------------------------------------------------- /src/Fluentify/IgnoreAttributeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/IgnoreAttributeGenerator.cs -------------------------------------------------------------------------------- /src/Fluentify/InternalExtensionsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/InternalExtensionsGenerator.cs -------------------------------------------------------------------------------- /src/Fluentify/Model/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Model/Generic.cs -------------------------------------------------------------------------------- /src/Fluentify/Model/Kind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Model/Kind.cs -------------------------------------------------------------------------------- /src/Fluentify/Model/Nesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Model/Nesting.cs -------------------------------------------------------------------------------- /src/Fluentify/Model/Pattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Model/Pattern.cs -------------------------------------------------------------------------------- /src/Fluentify/Model/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Model/Property.cs -------------------------------------------------------------------------------- /src/Fluentify/Model/Subject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Model/Subject.cs -------------------------------------------------------------------------------- /src/Fluentify/Model/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Model/Type.cs -------------------------------------------------------------------------------- /src/Fluentify/RecordAnalyzer.Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/RecordAnalyzer.Resources.Designer.cs -------------------------------------------------------------------------------- /src/Fluentify/RecordAnalyzer.Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/RecordAnalyzer.Resources.resx -------------------------------------------------------------------------------- /src/Fluentify/RecordAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/RecordAnalyzer.cs -------------------------------------------------------------------------------- /src/Fluentify/RecordGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/RecordGenerator.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/INamedTypeSymbolExtensions.GetGenerics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/INamedTypeSymbolExtensions.GetGenerics.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/INamedTypeSymbolExtensions.GetProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/INamedTypeSymbolExtensions.GetProperties.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/INamedTypeSymbolExtensions.HasFluentify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/INamedTypeSymbolExtensions.HasFluentify.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/INamedTypeSymbolExtensions.IsPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/INamedTypeSymbolExtensions.IsPartial.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/IPropertySymbolExtensions.GetDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/IPropertySymbolExtensions.GetDescriptor.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/IPropertySymbolExtensions.GetKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/IPropertySymbolExtensions.GetKind.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/IPropertySymbolExtensions.GetParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/IPropertySymbolExtensions.GetParameter.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/IPropertySymbolExtensions.HasAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/IPropertySymbolExtensions.HasAttribute.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/IPropertySymbolExtensions.HasIgnore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/IPropertySymbolExtensions.HasIgnore.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/IPropertySymbolExtensions.HasSkipAutoInstantiation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/IPropertySymbolExtensions.HasSkipAutoInstantiation.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/IPropertySymbolExtensions.IsMutable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/IPropertySymbolExtensions.IsMutable.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/ISymbolExtensions.GetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/ISymbolExtensions.GetAttribute.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/ISymbolExtensions.GetDefaultDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/ISymbolExtensions.GetDefaultDescriptor.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/ISymbolExtensions.HasAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/ISymbolExtensions.HasAttribute.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/ISymbolExtensions.HasIgnore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/ISymbolExtensions.HasIgnore.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/ITypeParameterSymbolExtensions.GetConstraints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/ITypeParameterSymbolExtensions.GetConstraints.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/ITypeSymbolExtensions.HasAccessibleParameterlessConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/ITypeSymbolExtensions.HasAccessibleParameterlessConstructor.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/ITypeSymbolExtensions.IsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/ITypeSymbolExtensions.IsAttribute.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/ITypeSymbolExtensions.IsBuildable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/ITypeSymbolExtensions.IsBuildable.cs -------------------------------------------------------------------------------- /src/Fluentify/Semantics/ITypeSymbolExtensions.IsNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Semantics/ITypeSymbolExtensions.IsNullable.cs -------------------------------------------------------------------------------- /src/Fluentify/SkipAutoInstantiationAttributeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/SkipAutoInstantiationAttributeGenerator.cs -------------------------------------------------------------------------------- /src/Fluentify/Source/GenericExtensions.ToConstraints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Source/GenericExtensions.ToConstraints.cs -------------------------------------------------------------------------------- /src/Fluentify/Source/GenericExtensions.ToParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Source/GenericExtensions.ToParameters.cs -------------------------------------------------------------------------------- /src/Fluentify/Source/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Source/Metadata.cs -------------------------------------------------------------------------------- /src/Fluentify/Source/PropertyExtensions.GetArrayExtensionMethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Source/PropertyExtensions.GetArrayExtensionMethodBody.cs -------------------------------------------------------------------------------- /src/Fluentify/Source/PropertyExtensions.GetCollectionExtensionMethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Source/PropertyExtensions.GetCollectionExtensionMethodBody.cs -------------------------------------------------------------------------------- /src/Fluentify/Source/PropertyExtensions.GetEnumerableExtensionMethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Source/PropertyExtensions.GetEnumerableExtensionMethodBody.cs -------------------------------------------------------------------------------- /src/Fluentify/Source/PropertyExtensions.GetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Source/PropertyExtensions.GetExtensions.cs -------------------------------------------------------------------------------- /src/Fluentify/Source/PropertyExtensions.GetScalarDelegateExtensionMethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Source/PropertyExtensions.GetScalarDelegateExtensionMethodBody.cs -------------------------------------------------------------------------------- /src/Fluentify/Source/PropertyExtensions.GetScalarExtensionMethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Source/PropertyExtensions.GetScalarExtensionMethodBody.cs -------------------------------------------------------------------------------- /src/Fluentify/Source/SubjectExtensions.GetConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Source/SubjectExtensions.GetConstructor.cs -------------------------------------------------------------------------------- /src/Fluentify/Source/SubjectExtensions.ToMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Source/SubjectExtensions.ToMetadata.cs -------------------------------------------------------------------------------- /src/Fluentify/StringExtensions.Indent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/StringExtensions.Indent.cs -------------------------------------------------------------------------------- /src/Fluentify/Syntax/SyntaxNodeExtensions.GetParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Syntax/SyntaxNodeExtensions.GetParent.cs -------------------------------------------------------------------------------- /src/Fluentify/Syntax/TypeDeclarationSyntaxExtensions.IsPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Syntax/TypeDeclarationSyntaxExtensions.IsPartial.cs -------------------------------------------------------------------------------- /src/Fluentify/Syntax/TypeDeclarationSyntaxExtensions.ToSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MooVC/Fluentify/HEAD/src/Fluentify/Syntax/TypeDeclarationSyntaxExtensions.ToSubject.cs --------------------------------------------------------------------------------