├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── merge-dependabot.yml │ └── on-push-do-docs.yml ├── .gitignore ├── code_of_conduct.md ├── license.txt ├── readme.md └── src ├── .editorconfig ├── .gitattributes ├── .nuget └── _._ ├── Directory.Build.props ├── Directory.Packages.props ├── EmptyListTests ├── EmptyListTests.csproj ├── ModuleInitializer.cs ├── SharedRuleTests.Usage.verified.txt ├── Tests.Compounded.verified.txt ├── Tests.Dates_Defaults.verified.txt ├── Tests.Dates_Min.verified.txt ├── Tests.Dates_NonEmpty.verified.txt ├── Tests.Disabled_Defaults.verified.txt ├── Tests.Disabled_Empty.verified.txt ├── Tests.Disabled_NonEmpty.verified.txt ├── Tests.Guids_Defaults.verified.txt ├── Tests.Guids_Empty.verified.txt ├── Tests.Guids_NonEmpty.verified.txt ├── Tests.List_Defaults.verified.txt ├── Tests.List_Defaults_ValidateEmptyLists.verified.txt ├── Tests.List_Empty.verified.txt ├── Tests.List_Empty_ValidateEmptyLists.verified.txt ├── Tests.List_NonEmpty.verified.txt ├── Tests.List_NonEmpty_ValidateEmptyLists.verified.txt ├── Tests.Newlines.verified.txt ├── Tests.NoNulls_NoValues.verified.txt ├── Tests.NoNulls_WithValues.verified.txt ├── Tests.Nulls_NoValues.verified.txt ├── Tests.Nulls_WithValues.verified.txt ├── Tests.Strings_Defaults.verified.txt ├── Tests.Strings_Empty.verified.txt ├── Tests.Strings_NonEmpty.verified.txt ├── Tests.Strings_Whitespace.verified.txt ├── Tests.Usage.verified.txt ├── Tests.ValueTypes_NoValues.verified.txt ├── Tests.ValueTypes_WithValues.verified.txt └── Tests.WithRecord.verified.txt ├── ExtendedFluentValidation.slnx ├── ExtendedFluentValidation.slnx.DotSettings ├── ExtendedFluentValidation ├── AllowEmptyAttribute.cs ├── ConstructableValidator.cs ├── ExtendedFluentValidation.csproj ├── ExtendedValidator.cs ├── Extensions.cs ├── GlobalUsings.cs ├── PropertyValidators │ ├── NotContainNewlineValidator.cs │ ├── NotEmptyCollectionValidator.cs │ ├── NotNullValidator.cs │ └── NotWhiteSpaceValidator.cs ├── RuleBuilder.cs ├── ValidatorConventions.cs └── ValidatorExtensions.cs ├── Shared.sln.DotSettings ├── Tests ├── GlobalUsings.cs ├── ModuleInitializer.cs ├── SharedRuleTests.Usage.verified.txt ├── SharedRuleTests.cs ├── Tests.Compounded.verified.txt ├── Tests.Dates_Defaults.verified.txt ├── Tests.Dates_Min.verified.txt ├── Tests.Dates_NonEmpty.verified.txt ├── Tests.Disabled_Defaults.verified.txt ├── Tests.Disabled_Empty.verified.txt ├── Tests.Disabled_NonEmpty.verified.txt ├── Tests.Guids_Defaults.verified.txt ├── Tests.Guids_Empty.verified.txt ├── Tests.Guids_NonEmpty.verified.txt ├── Tests.List_Defaults.verified.txt ├── Tests.List_Defaults_ValidateEmptyLists.verified.txt ├── Tests.List_Empty.verified.txt ├── Tests.List_Empty_ValidateEmptyLists.verified.txt ├── Tests.List_NonEmpty.verified.txt ├── Tests.List_NonEmpty_ValidateEmptyLists.verified.txt ├── Tests.Newlines.verified.txt ├── Tests.NoNulls_NoValues.verified.txt ├── Tests.NoNulls_WithValues.verified.txt ├── Tests.Nulls_NoValues.verified.txt ├── Tests.Nulls_WithValues.verified.txt ├── Tests.Strings_Defaults.verified.txt ├── Tests.Strings_Empty.verified.txt ├── Tests.Strings_NonEmpty.verified.txt ├── Tests.Strings_Whitespace.verified.txt ├── Tests.Usage.verified.txt ├── Tests.ValueTypes_NoValues.verified.txt ├── Tests.ValueTypes_WithValues.verified.txt ├── Tests.WithRecord.verified.txt ├── Tests.cs ├── Tests.csproj └── Tests.csproj.user ├── appveyor.yml ├── global.json ├── icon.png ├── key.snk ├── mdsnippets.json └── nuget.config /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: SimonCropp -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/.github/workflows/merge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/on-push-do-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/.github/workflows/on-push-do-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/.gitignore -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/readme.md -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/.gitattributes -------------------------------------------------------------------------------- /src/.nuget/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/EmptyListTests/EmptyListTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/EmptyListTests.csproj -------------------------------------------------------------------------------- /src/EmptyListTests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/EmptyListTests/SharedRuleTests.Usage.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/SharedRuleTests.Usage.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Compounded.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Compounded.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Dates_Defaults.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Dates_Defaults.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Dates_Min.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Dates_Min.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Dates_NonEmpty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Dates_NonEmpty.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Disabled_Defaults.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Disabled_Defaults.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Disabled_Empty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Disabled_Empty.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Disabled_NonEmpty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Disabled_NonEmpty.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Guids_Defaults.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Guids_Defaults.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Guids_Empty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Guids_Empty.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Guids_NonEmpty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Guids_NonEmpty.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.List_Defaults.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.List_Defaults.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.List_Defaults_ValidateEmptyLists.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.List_Defaults_ValidateEmptyLists.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.List_Empty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.List_Empty.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.List_Empty_ValidateEmptyLists.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.List_Empty_ValidateEmptyLists.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.List_NonEmpty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.List_NonEmpty.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.List_NonEmpty_ValidateEmptyLists.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.List_NonEmpty_ValidateEmptyLists.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Newlines.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Newlines.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.NoNulls_NoValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.NoNulls_NoValues.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.NoNulls_WithValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.NoNulls_WithValues.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Nulls_NoValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Nulls_NoValues.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Nulls_WithValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Nulls_WithValues.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Strings_Defaults.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Strings_Defaults.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Strings_Empty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Strings_Empty.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Strings_NonEmpty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Strings_NonEmpty.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Strings_Whitespace.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Strings_Whitespace.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.Usage.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.Usage.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.ValueTypes_NoValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.ValueTypes_NoValues.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.ValueTypes_WithValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.ValueTypes_WithValues.verified.txt -------------------------------------------------------------------------------- /src/EmptyListTests/Tests.WithRecord.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/EmptyListTests/Tests.WithRecord.verified.txt -------------------------------------------------------------------------------- /src/ExtendedFluentValidation.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation.slnx -------------------------------------------------------------------------------- /src/ExtendedFluentValidation.slnx.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation.slnx.DotSettings -------------------------------------------------------------------------------- /src/ExtendedFluentValidation/AllowEmptyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation/AllowEmptyAttribute.cs -------------------------------------------------------------------------------- /src/ExtendedFluentValidation/ConstructableValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation/ConstructableValidator.cs -------------------------------------------------------------------------------- /src/ExtendedFluentValidation/ExtendedFluentValidation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation/ExtendedFluentValidation.csproj -------------------------------------------------------------------------------- /src/ExtendedFluentValidation/ExtendedValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation/ExtendedValidator.cs -------------------------------------------------------------------------------- /src/ExtendedFluentValidation/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation/Extensions.cs -------------------------------------------------------------------------------- /src/ExtendedFluentValidation/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation/GlobalUsings.cs -------------------------------------------------------------------------------- /src/ExtendedFluentValidation/PropertyValidators/NotContainNewlineValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation/PropertyValidators/NotContainNewlineValidator.cs -------------------------------------------------------------------------------- /src/ExtendedFluentValidation/PropertyValidators/NotEmptyCollectionValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation/PropertyValidators/NotEmptyCollectionValidator.cs -------------------------------------------------------------------------------- /src/ExtendedFluentValidation/PropertyValidators/NotNullValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation/PropertyValidators/NotNullValidator.cs -------------------------------------------------------------------------------- /src/ExtendedFluentValidation/PropertyValidators/NotWhiteSpaceValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation/PropertyValidators/NotWhiteSpaceValidator.cs -------------------------------------------------------------------------------- /src/ExtendedFluentValidation/RuleBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation/RuleBuilder.cs -------------------------------------------------------------------------------- /src/ExtendedFluentValidation/ValidatorConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation/ValidatorConventions.cs -------------------------------------------------------------------------------- /src/ExtendedFluentValidation/ValidatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/ExtendedFluentValidation/ValidatorExtensions.cs -------------------------------------------------------------------------------- /src/Shared.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Shared.sln.DotSettings -------------------------------------------------------------------------------- /src/Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Tests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Tests/SharedRuleTests.Usage.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/SharedRuleTests.Usage.verified.txt -------------------------------------------------------------------------------- /src/Tests/SharedRuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/SharedRuleTests.cs -------------------------------------------------------------------------------- /src/Tests/Tests.Compounded.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Compounded.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Dates_Defaults.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Dates_Defaults.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Dates_Min.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Dates_Min.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Dates_NonEmpty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Dates_NonEmpty.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Disabled_Defaults.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Disabled_Defaults.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Disabled_Empty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Disabled_Empty.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Disabled_NonEmpty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Disabled_NonEmpty.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Guids_Defaults.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Guids_Defaults.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Guids_Empty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Guids_Empty.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Guids_NonEmpty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Guids_NonEmpty.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.List_Defaults.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.List_Defaults.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.List_Defaults_ValidateEmptyLists.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.List_Defaults_ValidateEmptyLists.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.List_Empty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.List_Empty.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.List_Empty_ValidateEmptyLists.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.List_Empty_ValidateEmptyLists.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.List_NonEmpty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.List_NonEmpty.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.List_NonEmpty_ValidateEmptyLists.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.List_NonEmpty_ValidateEmptyLists.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Newlines.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Newlines.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.NoNulls_NoValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.NoNulls_NoValues.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.NoNulls_WithValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.NoNulls_WithValues.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Nulls_NoValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Nulls_NoValues.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Nulls_WithValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Nulls_WithValues.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Strings_Defaults.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Strings_Defaults.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Strings_Empty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Strings_Empty.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Strings_NonEmpty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Strings_NonEmpty.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Strings_Whitespace.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Strings_Whitespace.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.Usage.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.Usage.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.ValueTypes_NoValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.ValueTypes_NoValues.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.ValueTypes_WithValues.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.ValueTypes_WithValues.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.WithRecord.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.WithRecord.verified.txt -------------------------------------------------------------------------------- /src/Tests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.cs -------------------------------------------------------------------------------- /src/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.csproj -------------------------------------------------------------------------------- /src/Tests/Tests.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/Tests/Tests.csproj.user -------------------------------------------------------------------------------- /src/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/appveyor.yml -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/global.json -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/key.snk -------------------------------------------------------------------------------- /src/mdsnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/mdsnippets.json -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ExtendedFluentValidation/HEAD/src/nuget.config --------------------------------------------------------------------------------