├── .appveyor.yml ├── .editorconfig ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .markdownlint.json ├── .runsettings ├── .travis.yml ├── Aqua.sln ├── CHANGELOG.md ├── Directory.Build.props ├── Directory.Build.targets ├── GlobalAssemblyInfo.cs ├── README.md ├── Style.NoDoc.ruleset ├── Style.Tests.ruleset ├── Style.ruleset ├── Stylecop.json ├── aqua-small.png ├── clean.bat ├── codecov.yml ├── coverlet.runsettings ├── global.json ├── key.snk ├── license.txt ├── nuget.config ├── src ├── Aqua.Newtonsoft.Json │ ├── Aqua.Newtonsoft.Json.csproj │ ├── AquaJsonSerializerSettings.cs │ ├── ContractResolvers │ │ └── AquaContractResolver.cs │ ├── Converters │ │ ├── DynamicObjectConverter.cs │ │ ├── JsonConverterHelper.cs │ │ ├── ObjectConverter.cs │ │ ├── ObjectConverter`1.cs │ │ └── TypeInfoConverter.cs │ ├── JsonNetSerializerSettingsExtensions.cs │ ├── KnownTypesRegistry.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Aqua.Text.Json │ ├── Aqua.Text.Json.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Aqua.protobuf-net │ ├── Aqua.protobuf-net.csproj │ ├── AquaTypeModel.cs │ ├── Dynamic │ │ ├── DynamicObjectSurrogate.cs │ │ ├── DynamicTypeModel.cs │ │ └── PropertySurrogate.cs │ ├── EmptyArray.cs │ ├── NullValue.cs │ ├── NullableValues`1.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ProtoBufTypeModel.cs │ ├── TypeSystem │ │ └── TypeSystemTypeModel.cs │ ├── Value.cs │ ├── Value`1.cs │ ├── Values.cs │ └── Values`1.cs ├── Aqua │ ├── Aqua.csproj │ ├── Dynamic │ │ ├── DynamicObject.MetaObject.cs │ │ ├── DynamicObject.cs │ │ ├── DynamicObjectExtensions.cs │ │ ├── DynamicObjectMapper.FormatterServices.cs │ │ ├── DynamicObjectMapper.cs │ │ ├── DynamicObjectMapperException.cs │ │ ├── DynamicObjectMapperExtensions.cs │ │ ├── DynamicObjectMapperSettings.cs │ │ ├── IDynamicObjectFactory.cs │ │ ├── IDynamicObjectMapper.cs │ │ ├── IIsKnownTypeProvider.cs │ │ ├── ITypeMapper.cs │ │ ├── ITypeSafetyChecker.cs │ │ ├── Property.cs │ │ ├── PropertySet.cs │ │ ├── UnmappedAttribute.cs │ │ └── UnmappedAttributeHelper.cs │ ├── EnumerableExtensions │ │ └── EnumerableExtensions.cs │ ├── MethodInfos.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Text │ │ └── Json │ │ │ ├── AquaReferenceHandler.cs │ │ │ ├── AquaReferenceResolver.cs │ │ │ ├── Converters │ │ │ ├── DynamicObjectConverter.cs │ │ │ ├── JsonConverterHelper.cs │ │ │ ├── JsonMetadata.cs │ │ │ ├── MemberInfoConverter.cs │ │ │ ├── MemberInfoConverter`1.cs │ │ │ ├── ObjectConverter`1.cs │ │ │ ├── TimeSpanConverter.cs │ │ │ └── TypeInfoConverter.cs │ │ │ ├── JsonSerializerOptionsExtensions.cs │ │ │ └── KnownTypesRegistry.cs │ ├── TypeExtensions │ │ ├── AssemblyExtensions.cs │ │ ├── ReflectionBinding.cs │ │ ├── RuntimeReflectionExtensions.cs │ │ └── TypeExtensions.cs │ ├── TypeSystem │ │ ├── ConstructorInfo.cs │ │ ├── Emit │ │ │ ├── EmittedTypeAttribute.cs │ │ │ ├── TypeEmitter.Cache.cs │ │ │ ├── TypeEmitter.cs │ │ │ └── TypeEmitterException.cs │ │ ├── Extensions │ │ │ ├── BindingFlagsExtension.cs │ │ │ └── MemberInfoExtensions.cs │ │ ├── FieldInfo.cs │ │ ├── ITypeInfoProvider.cs │ │ ├── ITypeResolver.cs │ │ ├── MemberInfo.cs │ │ ├── MemberTypes.cs │ │ ├── MethodBaseInfo.cs │ │ ├── MethodInfo.cs │ │ ├── PropertyInfo.cs │ │ ├── TypeHelper.cs │ │ ├── TypeInfo.cs │ │ ├── TypeInfoProvider.cs │ │ ├── TypeInfoProviderExtensions.cs │ │ ├── TypeResolver.cs │ │ ├── TypeResolverException.cs │ │ └── TypeResolverExtensions.cs │ └── Utils │ │ ├── ReferenceEqualityComparer`1.cs │ │ └── TransparentCache`2.cs └── Directory.Build.props └── test ├── Aqua.Tests.TestObjects1 ├── Aqua.Tests.TestObjects1.csproj ├── CustomType0.cs ├── CustomType1.cs ├── Helper.cs ├── Properties │ └── AssemblyInfo.cs └── Value`1.cs ├── Aqua.Tests.TestObjects2 ├── Aqua.Tests.TestObjects2.csproj ├── CustomType0.cs ├── CustomType1.cs ├── Helper.cs └── Properties │ └── AssemblyInfo.cs ├── Aqua.Tests ├── Aqua.Tests.csproj ├── Dynamic │ ├── DynamicObject │ │ ├── When_converting_to_anonymous_type.cs │ │ ├── When_converting_to_datetime_object.cs │ │ ├── When_converting_to_different_target_type.cs │ │ ├── When_converting_to_object_based_on_typeinfo.cs │ │ ├── When_converting_to_object_with_abstract_properties.cs │ │ ├── When_converting_to_object_with_abstract_properties_in_absence_of_type_information.cs │ │ ├── When_converting_to_object_with_additional_properties.cs │ │ ├── When_converting_to_object_with_dictionary_property.cs │ │ ├── When_converting_to_object_with_different_property_types_assignable.cs │ │ ├── When_converting_to_object_with_different_property_types_unassignable.cs │ │ ├── When_converting_to_object_with_enum.cs │ │ ├── When_converting_to_object_with_fields_and_properties.cs │ │ ├── When_converting_to_object_with_guid_properties.cs │ │ ├── When_converting_to_object_with_indexer.cs │ │ ├── When_converting_to_object_with_missing_properties.cs │ │ ├── When_converting_to_object_with_private_properties.cs │ │ ├── When_converting_to_object_with_private_property_setter.cs │ │ ├── When_converting_to_object_with_static_members.cs │ │ ├── When_converting_to_serializable_object.cs │ │ ├── When_converting_to_serializable_object_with_additional_properies.cs │ │ ├── When_converting_to_serializable_object_with_missing_properties.cs │ │ ├── When_converting_to_serializable_object_with_private_properties.cs │ │ ├── When_converting_to_serializable_object_with_private_property_setters.cs │ │ ├── When_converting_to_serializable_object_with_properties_ordered_differently.cs │ │ ├── When_converting_to_type_requiring_ctor_and_property_setter.cs │ │ ├── When_created_based_on_a_keyvaluepair.cs │ │ ├── When_created_based_on_custom_type.cs │ │ ├── When_created_based_on_custom_value_type.cs │ │ ├── When_created_based_on_datetime_object.cs │ │ ├── When_created_based_on_delegate.cs │ │ ├── When_created_based_on_guid.cs │ │ ├── When_created_based_on_nullable_guid.cs │ │ ├── When_created_based_on_object_tree_with_circular_references.cs │ │ ├── When_created_based_on_object_with_abstract_properties_with_type_information.cs │ │ ├── When_created_based_on_object_with_dictionary_property.cs │ │ ├── When_created_based_on_object_with_enum_property.cs │ │ ├── When_created_based_on_object_with_fields_and_properties.cs │ │ ├── When_created_based_on_object_with_guid_properties.cs │ │ ├── When_created_based_on_object_with_indexer.cs │ │ ├── When_created_based_on_typesystem.cs │ │ ├── When_created_using_collection_initializer.cs │ │ ├── When_created_using_copyconstructor.cs │ │ ├── When_created_using_parameterless_constructor.cs │ │ ├── When_creating_default.cs │ │ ├── When_creating_dynamic_object_with_type.cs │ │ ├── When_creating_dynamic_object_with_typeinfo.cs │ │ ├── When_initializing_with_null_value.cs │ │ ├── When_modifying_dynamic_object.cs │ │ └── When_used_as_dynamic_type.cs │ ├── DynamicObjectMapper │ │ ├── CustomMapper │ │ │ ├── When_mapping_int_as_string_and_long_as_long.cs │ │ │ ├── When_mapping_object_from_object_with_igrouping_members.cs │ │ │ ├── When_mapping_reducing_property_set.cs │ │ │ └── When_mapping_reducing_property_set_for_seriable_type.cs │ │ ├── When_mapping_collection_from_dictionary.cs │ │ ├── When_mapping_collection_from_list.cs │ │ ├── When_mapping_collection_from_list_of_custom_reference_type.cs │ │ ├── When_mapping_collection_from_list_of_custom_value_type.cs │ │ ├── When_mapping_collection_from_list_of_guids.cs │ │ ├── When_mapping_collection_from_list_of_known_types.cs │ │ ├── When_mapping_collection_from_list_of_nullable_guids.cs │ │ ├── When_mapping_collection_from_list_of_strings.cs │ │ ├── When_mapping_dynamic_object_to_type_with_different_property_types.cs │ │ ├── When_mapping_dynamic_objects_to_list_of_known_types.cs │ │ ├── When_mapping_dynamic_objects_with_isnull_true.cs │ │ ├── When_mapping_empty_int_array.cs │ │ ├── When_mapping_empty_list.cs │ │ ├── When_mapping_int_array.cs │ │ ├── When_mapping_list_of_nullable_int.cs │ │ ├── When_mapping_list_of_string_as_collection.cs │ │ ├── When_mapping_list_of_string_as_object.cs │ │ ├── When_mapping_native_values.cs │ │ ├── When_mapping_null.cs │ │ ├── When_mapping_object_from_array.cs │ │ ├── When_mapping_object_from_dynamic_object.cs │ │ ├── When_mapping_object_from_immutable_value_type.cs │ │ ├── When_mapping_object_from_object_with_collection_member.cs │ │ ├── When_mapping_object_from_object_with_dynamic_object_member.cs │ │ ├── When_mapping_object_from_value_type_without_constructor.cs │ │ ├── When_mapping_object_to_custom_dynamic_object.cs │ │ ├── When_mapping_object_with_collection_property.cs │ │ ├── When_mapping_object_with_static_members.cs │ │ ├── When_mapping_object_with_type_info_mapper.cs │ │ ├── When_mapping_string_array.cs │ │ ├── When_mapping_type_object.cs │ │ └── When_using_type_safety_checker.cs │ ├── Property │ │ └── When_creating_property.cs │ └── PropertySet │ │ ├── When_converting_from_and_to_dictionary.cs │ │ └── When_modifying_property_set.cs ├── EnumerableExtensions │ ├── When_comparing_collections.cs │ ├── When_using_outer_join.cs │ └── When_using_string_join.cs ├── FluentAssertions.cs ├── ProtoBuf │ └── When_serializing_dynamic_types.cs ├── RunnableInDebugOnlyAttribute.cs ├── Serialization │ ├── BinarySerializationHelper.cs │ ├── DataContractSerializationHelper.cs │ ├── Dynamic │ │ └── DynamicObject │ │ │ ├── When_serializing_dynamic_object.cs │ │ │ ├── When_serializing_dynamicobject_collections_of_notnullable.cs │ │ │ ├── When_serializing_dynamicobject_collections_of_nullable.cs │ │ │ ├── When_serializing_dynamicobject_for_collections_of_notnullable.cs │ │ │ ├── When_serializing_dynamicobject_for_collections_of_nullable.cs │ │ │ ├── When_serializing_dynamicobject_for_typeinfo_of_typeinfo.cs │ │ │ ├── When_using_dynamic_object_for_complex_object_tree.cs │ │ │ ├── When_using_dynamic_object_for_object_with_polymorphism.cs │ │ │ ├── When_using_dynamic_object_for_typeinfo.cs │ │ │ └── When_using_dynamic_object_with_circular_reference.cs │ ├── FileDump.cs │ ├── NetDataContractSerializationHelper.cs │ ├── NewtonsoftJsonSerializationHelper.cs │ ├── ProtobufNetSerializationHelper.cs │ ├── SystemTextJsonSerializationHelper.cs │ ├── TypeSystem │ │ └── TypeInfo │ │ │ ├── When_serializing_typeinfo_of_dynamicobject.cs │ │ │ ├── When_using_typeinfo_with_circular_reference.cs │ │ │ ├── When_using_typeinfo_with_circular_reference_no_propertyinfos.cs │ │ │ └── When_using_typeinfo_with_circular_reference_with_anonymous_type.cs │ ├── When_deserializing_json.cs │ ├── When_serializing.cs │ └── XmlSerializationHelper.cs ├── TestData.cs ├── TestException.cs ├── TestHelper.cs ├── TypeExtensions │ ├── When_get_friendly_name.cs │ └── When_reflecting_implemented_types.cs └── TypeSystem │ ├── ConstructorInfo │ ├── When_creating_constructor_info.cs │ └── When_resolving_constructor.cs │ ├── Emit │ └── TypeEmitter │ │ ├── Cache │ │ └── When_emitting_multiple_times.cs │ │ ├── When_emitting_type.cs │ │ └── When_emitting_type_with_circular_reference.cs │ ├── Extensions │ └── Using_type_extensions.cs │ ├── FieldInfo │ ├── When_creating_field_info.cs │ └── When_resolving_field.cs │ ├── MethodInfo │ ├── When_creating_method_info.cs │ ├── When_resolving_method.cs │ └── When_resolving_method2.cs │ ├── PropertyInfo │ ├── When_creating_property_info.cs │ └── When_resolving_property.cs │ ├── TypeInfo │ ├── When_creating_type_info_for_array_type.cs │ ├── When_creating_type_info_for_array_type_of_generic_type.cs │ ├── When_creating_type_info_for_simple_type.cs │ ├── When_creating_type_info_of_anonymous_type.cs │ ├── When_creating_type_info_of_circular_type_graph.cs │ ├── When_creating_type_info_of_generic_type.cs │ └── When_creating_type_info_of_generic_type_definition.cs │ └── TypeResolver │ ├── PerformanceTests.cs │ ├── When_resolving_a_system_type.cs │ ├── When_resolving_a_types_with_a_property_of_its_own_type.cs │ ├── When_resolving_a_types_with_two_resolvers.cs │ ├── When_resolving_anonymous_type.cs │ ├── When_resolving_array_type.cs │ ├── When_resolving_array_type_of_generic_type.cs │ ├── When_resolving_constructor.cs │ ├── When_resolving_different_anonymous_types_with_same_name_and_different_order_of_properties.cs │ ├── When_resolving_different_anonymous_types_with_same_name_and_different_property_name.cs │ ├── When_resolving_different_anonymous_types_with_same_name_and_different_property_type.cs │ ├── When_resolving_different_anonymous_types_with_same_name_and_same_properties.cs │ ├── When_resolving_different_types_with_same_name_and_different_property_name.cs │ ├── When_resolving_different_types_with_same_name_and_same_properties.cs │ ├── When_resolving_explicit_cast_operator.cs │ ├── When_resolving_generic_type.cs │ ├── When_resolving_hidden_member.cs │ ├── When_resolving_ienumerable_of_anonymous_type.cs │ ├── When_resolving_type.cs │ ├── When_resolving_types_with_circular_reference.cs │ ├── When_resolving_unknown_anonymous_type.cs │ └── When_resolving_unknown_type.cs ├── Aqua.VBNet.Tests ├── Aqua.VBNet.Tests.vbproj └── TypeSystem │ ├── ConstructorInfo │ └── When_creating_constructor_info.vb │ └── Extensions │ └── When_using_type_extensions.vb └── Directory.Build.props /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/.runsettings -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/.travis.yml -------------------------------------------------------------------------------- /Aqua.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/Aqua.sln -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/README.md -------------------------------------------------------------------------------- /Style.NoDoc.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/Style.NoDoc.ruleset -------------------------------------------------------------------------------- /Style.Tests.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/Style.Tests.ruleset -------------------------------------------------------------------------------- /Style.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/Style.ruleset -------------------------------------------------------------------------------- /Stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/Stylecop.json -------------------------------------------------------------------------------- /aqua-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/aqua-small.png -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/clean.bat -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/codecov.yml -------------------------------------------------------------------------------- /coverlet.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/coverlet.runsettings -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/global.json -------------------------------------------------------------------------------- /key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/key.snk -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/license.txt -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/nuget.config -------------------------------------------------------------------------------- /src/Aqua.Newtonsoft.Json/Aqua.Newtonsoft.Json.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.Newtonsoft.Json/Aqua.Newtonsoft.Json.csproj -------------------------------------------------------------------------------- /src/Aqua.Newtonsoft.Json/AquaJsonSerializerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.Newtonsoft.Json/AquaJsonSerializerSettings.cs -------------------------------------------------------------------------------- /src/Aqua.Newtonsoft.Json/ContractResolvers/AquaContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.Newtonsoft.Json/ContractResolvers/AquaContractResolver.cs -------------------------------------------------------------------------------- /src/Aqua.Newtonsoft.Json/Converters/DynamicObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.Newtonsoft.Json/Converters/DynamicObjectConverter.cs -------------------------------------------------------------------------------- /src/Aqua.Newtonsoft.Json/Converters/JsonConverterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.Newtonsoft.Json/Converters/JsonConverterHelper.cs -------------------------------------------------------------------------------- /src/Aqua.Newtonsoft.Json/Converters/ObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.Newtonsoft.Json/Converters/ObjectConverter.cs -------------------------------------------------------------------------------- /src/Aqua.Newtonsoft.Json/Converters/ObjectConverter`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.Newtonsoft.Json/Converters/ObjectConverter`1.cs -------------------------------------------------------------------------------- /src/Aqua.Newtonsoft.Json/Converters/TypeInfoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.Newtonsoft.Json/Converters/TypeInfoConverter.cs -------------------------------------------------------------------------------- /src/Aqua.Newtonsoft.Json/JsonNetSerializerSettingsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.Newtonsoft.Json/JsonNetSerializerSettingsExtensions.cs -------------------------------------------------------------------------------- /src/Aqua.Newtonsoft.Json/KnownTypesRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.Newtonsoft.Json/KnownTypesRegistry.cs -------------------------------------------------------------------------------- /src/Aqua.Newtonsoft.Json/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.Newtonsoft.Json/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Aqua.Text.Json/Aqua.Text.Json.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.Text.Json/Aqua.Text.Json.csproj -------------------------------------------------------------------------------- /src/Aqua.Text.Json/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.Text.Json/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/Aqua.protobuf-net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/Aqua.protobuf-net.csproj -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/AquaTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/AquaTypeModel.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/Dynamic/DynamicObjectSurrogate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/Dynamic/DynamicObjectSurrogate.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/Dynamic/DynamicTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/Dynamic/DynamicTypeModel.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/Dynamic/PropertySurrogate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/Dynamic/PropertySurrogate.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/EmptyArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/EmptyArray.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/NullValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/NullValue.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/NullableValues`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/NullableValues`1.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/ProtoBufTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/ProtoBufTypeModel.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/TypeSystem/TypeSystemTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/TypeSystem/TypeSystemTypeModel.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/Value.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/Value`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/Value`1.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/Values.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/Values.cs -------------------------------------------------------------------------------- /src/Aqua.protobuf-net/Values`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua.protobuf-net/Values`1.cs -------------------------------------------------------------------------------- /src/Aqua/Aqua.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Aqua.csproj -------------------------------------------------------------------------------- /src/Aqua/Dynamic/DynamicObject.MetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/DynamicObject.MetaObject.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/DynamicObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/DynamicObject.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/DynamicObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/DynamicObjectExtensions.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/DynamicObjectMapper.FormatterServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/DynamicObjectMapper.FormatterServices.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/DynamicObjectMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/DynamicObjectMapper.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/DynamicObjectMapperException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/DynamicObjectMapperException.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/DynamicObjectMapperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/DynamicObjectMapperExtensions.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/DynamicObjectMapperSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/DynamicObjectMapperSettings.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/IDynamicObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/IDynamicObjectFactory.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/IDynamicObjectMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/IDynamicObjectMapper.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/IIsKnownTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/IIsKnownTypeProvider.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/ITypeMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/ITypeMapper.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/ITypeSafetyChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/ITypeSafetyChecker.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/Property.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/PropertySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/PropertySet.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/UnmappedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/UnmappedAttribute.cs -------------------------------------------------------------------------------- /src/Aqua/Dynamic/UnmappedAttributeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Dynamic/UnmappedAttributeHelper.cs -------------------------------------------------------------------------------- /src/Aqua/EnumerableExtensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/EnumerableExtensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/Aqua/MethodInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/MethodInfos.cs -------------------------------------------------------------------------------- /src/Aqua/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Aqua/Text/Json/AquaReferenceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Text/Json/AquaReferenceHandler.cs -------------------------------------------------------------------------------- /src/Aqua/Text/Json/AquaReferenceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Text/Json/AquaReferenceResolver.cs -------------------------------------------------------------------------------- /src/Aqua/Text/Json/Converters/DynamicObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Text/Json/Converters/DynamicObjectConverter.cs -------------------------------------------------------------------------------- /src/Aqua/Text/Json/Converters/JsonConverterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Text/Json/Converters/JsonConverterHelper.cs -------------------------------------------------------------------------------- /src/Aqua/Text/Json/Converters/JsonMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Text/Json/Converters/JsonMetadata.cs -------------------------------------------------------------------------------- /src/Aqua/Text/Json/Converters/MemberInfoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Text/Json/Converters/MemberInfoConverter.cs -------------------------------------------------------------------------------- /src/Aqua/Text/Json/Converters/MemberInfoConverter`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Text/Json/Converters/MemberInfoConverter`1.cs -------------------------------------------------------------------------------- /src/Aqua/Text/Json/Converters/ObjectConverter`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Text/Json/Converters/ObjectConverter`1.cs -------------------------------------------------------------------------------- /src/Aqua/Text/Json/Converters/TimeSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Text/Json/Converters/TimeSpanConverter.cs -------------------------------------------------------------------------------- /src/Aqua/Text/Json/Converters/TypeInfoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Text/Json/Converters/TypeInfoConverter.cs -------------------------------------------------------------------------------- /src/Aqua/Text/Json/JsonSerializerOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Text/Json/JsonSerializerOptionsExtensions.cs -------------------------------------------------------------------------------- /src/Aqua/Text/Json/KnownTypesRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Text/Json/KnownTypesRegistry.cs -------------------------------------------------------------------------------- /src/Aqua/TypeExtensions/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeExtensions/AssemblyExtensions.cs -------------------------------------------------------------------------------- /src/Aqua/TypeExtensions/ReflectionBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeExtensions/ReflectionBinding.cs -------------------------------------------------------------------------------- /src/Aqua/TypeExtensions/RuntimeReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeExtensions/RuntimeReflectionExtensions.cs -------------------------------------------------------------------------------- /src/Aqua/TypeExtensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeExtensions/TypeExtensions.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/ConstructorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/ConstructorInfo.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/Emit/EmittedTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/Emit/EmittedTypeAttribute.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/Emit/TypeEmitter.Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/Emit/TypeEmitter.Cache.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/Emit/TypeEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/Emit/TypeEmitter.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/Emit/TypeEmitterException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/Emit/TypeEmitterException.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/Extensions/BindingFlagsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/Extensions/BindingFlagsExtension.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/Extensions/MemberInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/Extensions/MemberInfoExtensions.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/FieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/FieldInfo.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/ITypeInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/ITypeInfoProvider.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/ITypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/ITypeResolver.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/MemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/MemberInfo.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/MemberTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/MemberTypes.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/MethodBaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/MethodBaseInfo.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/MethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/MethodInfo.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/PropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/PropertyInfo.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/TypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/TypeHelper.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/TypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/TypeInfo.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/TypeInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/TypeInfoProvider.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/TypeInfoProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/TypeInfoProviderExtensions.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/TypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/TypeResolver.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/TypeResolverException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/TypeResolverException.cs -------------------------------------------------------------------------------- /src/Aqua/TypeSystem/TypeResolverExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/TypeSystem/TypeResolverExtensions.cs -------------------------------------------------------------------------------- /src/Aqua/Utils/ReferenceEqualityComparer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Utils/ReferenceEqualityComparer`1.cs -------------------------------------------------------------------------------- /src/Aqua/Utils/TransparentCache`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Aqua/Utils/TransparentCache`2.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /test/Aqua.Tests.TestObjects1/Aqua.Tests.TestObjects1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests.TestObjects1/Aqua.Tests.TestObjects1.csproj -------------------------------------------------------------------------------- /test/Aqua.Tests.TestObjects1/CustomType0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests.TestObjects1/CustomType0.cs -------------------------------------------------------------------------------- /test/Aqua.Tests.TestObjects1/CustomType1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests.TestObjects1/CustomType1.cs -------------------------------------------------------------------------------- /test/Aqua.Tests.TestObjects1/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests.TestObjects1/Helper.cs -------------------------------------------------------------------------------- /test/Aqua.Tests.TestObjects1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests.TestObjects1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/Aqua.Tests.TestObjects1/Value`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests.TestObjects1/Value`1.cs -------------------------------------------------------------------------------- /test/Aqua.Tests.TestObjects2/Aqua.Tests.TestObjects2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests.TestObjects2/Aqua.Tests.TestObjects2.csproj -------------------------------------------------------------------------------- /test/Aqua.Tests.TestObjects2/CustomType0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests.TestObjects2/CustomType0.cs -------------------------------------------------------------------------------- /test/Aqua.Tests.TestObjects2/CustomType1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests.TestObjects2/CustomType1.cs -------------------------------------------------------------------------------- /test/Aqua.Tests.TestObjects2/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests.TestObjects2/Helper.cs -------------------------------------------------------------------------------- /test/Aqua.Tests.TestObjects2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests.TestObjects2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Aqua.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Aqua.Tests.csproj -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_anonymous_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_anonymous_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_datetime_object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_datetime_object.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_different_target_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_different_target_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_based_on_typeinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_based_on_typeinfo.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_abstract_properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_abstract_properties.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_abstract_properties_in_absence_of_type_information.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_abstract_properties_in_absence_of_type_information.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_additional_properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_additional_properties.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_dictionary_property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_dictionary_property.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_different_property_types_assignable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_different_property_types_assignable.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_different_property_types_unassignable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_different_property_types_unassignable.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_enum.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_fields_and_properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_fields_and_properties.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_guid_properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_guid_properties.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_indexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_indexer.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_missing_properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_missing_properties.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_private_properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_private_properties.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_private_property_setter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_private_property_setter.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_static_members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_object_with_static_members.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_serializable_object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_serializable_object.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_serializable_object_with_additional_properies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_serializable_object_with_additional_properies.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_serializable_object_with_missing_properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_serializable_object_with_missing_properties.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_serializable_object_with_private_properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_serializable_object_with_private_properties.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_serializable_object_with_private_property_setters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_serializable_object_with_private_property_setters.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_serializable_object_with_properties_ordered_differently.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_serializable_object_with_properties_ordered_differently.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_type_requiring_ctor_and_property_setter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_converting_to_type_requiring_ctor_and_property_setter.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_a_keyvaluepair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_a_keyvaluepair.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_custom_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_custom_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_custom_value_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_custom_value_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_datetime_object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_datetime_object.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_delegate.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_guid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_guid.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_nullable_guid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_nullable_guid.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_tree_with_circular_references.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_tree_with_circular_references.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_with_abstract_properties_with_type_information.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_with_abstract_properties_with_type_information.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_with_dictionary_property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_with_dictionary_property.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_with_enum_property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_with_enum_property.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_with_fields_and_properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_with_fields_and_properties.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_with_guid_properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_with_guid_properties.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_with_indexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_object_with_indexer.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_typesystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_based_on_typesystem.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_using_collection_initializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_using_collection_initializer.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_using_copyconstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_using_copyconstructor.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_created_using_parameterless_constructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_created_using_parameterless_constructor.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_creating_default.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_creating_default.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_creating_dynamic_object_with_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_creating_dynamic_object_with_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_creating_dynamic_object_with_typeinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_creating_dynamic_object_with_typeinfo.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_initializing_with_null_value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_initializing_with_null_value.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_modifying_dynamic_object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_modifying_dynamic_object.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObject/When_used_as_dynamic_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObject/When_used_as_dynamic_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/CustomMapper/When_mapping_int_as_string_and_long_as_long.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/CustomMapper/When_mapping_int_as_string_and_long_as_long.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/CustomMapper/When_mapping_object_from_object_with_igrouping_members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/CustomMapper/When_mapping_object_from_object_with_igrouping_members.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/CustomMapper/When_mapping_reducing_property_set.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/CustomMapper/When_mapping_reducing_property_set.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/CustomMapper/When_mapping_reducing_property_set_for_seriable_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/CustomMapper/When_mapping_reducing_property_set_for_seriable_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_dictionary.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list_of_custom_reference_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list_of_custom_reference_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list_of_custom_value_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list_of_custom_value_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list_of_guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list_of_guids.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list_of_known_types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list_of_known_types.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list_of_nullable_guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list_of_nullable_guids.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list_of_strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_collection_from_list_of_strings.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_dynamic_object_to_type_with_different_property_types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_dynamic_object_to_type_with_different_property_types.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_dynamic_objects_to_list_of_known_types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_dynamic_objects_to_list_of_known_types.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_dynamic_objects_with_isnull_true.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_dynamic_objects_with_isnull_true.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_empty_int_array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_empty_int_array.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_empty_list.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_empty_list.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_int_array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_int_array.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_list_of_nullable_int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_list_of_nullable_int.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_list_of_string_as_collection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_list_of_string_as_collection.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_list_of_string_as_object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_list_of_string_as_object.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_native_values.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_native_values.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_null.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_null.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_from_array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_from_array.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_from_dynamic_object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_from_dynamic_object.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_from_immutable_value_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_from_immutable_value_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_from_object_with_collection_member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_from_object_with_collection_member.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_from_object_with_dynamic_object_member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_from_object_with_dynamic_object_member.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_from_value_type_without_constructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_from_value_type_without_constructor.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_to_custom_dynamic_object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_to_custom_dynamic_object.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_with_collection_property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_with_collection_property.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_with_static_members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_with_static_members.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_with_type_info_mapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_object_with_type_info_mapper.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_string_array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_string_array.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_type_object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_mapping_type_object.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_using_type_safety_checker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/DynamicObjectMapper/When_using_type_safety_checker.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/Property/When_creating_property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/Property/When_creating_property.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/PropertySet/When_converting_from_and_to_dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/PropertySet/When_converting_from_and_to_dictionary.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Dynamic/PropertySet/When_modifying_property_set.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Dynamic/PropertySet/When_modifying_property_set.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/EnumerableExtensions/When_comparing_collections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/EnumerableExtensions/When_comparing_collections.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/EnumerableExtensions/When_using_outer_join.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/EnumerableExtensions/When_using_outer_join.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/EnumerableExtensions/When_using_string_join.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/EnumerableExtensions/When_using_string_join.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/FluentAssertions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/FluentAssertions.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/ProtoBuf/When_serializing_dynamic_types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/ProtoBuf/When_serializing_dynamic_types.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/RunnableInDebugOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/RunnableInDebugOnlyAttribute.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/BinarySerializationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/BinarySerializationHelper.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/DataContractSerializationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/DataContractSerializationHelper.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_serializing_dynamic_object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_serializing_dynamic_object.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_serializing_dynamicobject_collections_of_notnullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_serializing_dynamicobject_collections_of_notnullable.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_serializing_dynamicobject_collections_of_nullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_serializing_dynamicobject_collections_of_nullable.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_serializing_dynamicobject_for_collections_of_notnullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_serializing_dynamicobject_for_collections_of_notnullable.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_serializing_dynamicobject_for_collections_of_nullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_serializing_dynamicobject_for_collections_of_nullable.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_serializing_dynamicobject_for_typeinfo_of_typeinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_serializing_dynamicobject_for_typeinfo_of_typeinfo.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_using_dynamic_object_for_complex_object_tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_using_dynamic_object_for_complex_object_tree.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_using_dynamic_object_for_object_with_polymorphism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_using_dynamic_object_for_object_with_polymorphism.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_using_dynamic_object_for_typeinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_using_dynamic_object_for_typeinfo.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_using_dynamic_object_with_circular_reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/Dynamic/DynamicObject/When_using_dynamic_object_with_circular_reference.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/FileDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/FileDump.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/NetDataContractSerializationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/NetDataContractSerializationHelper.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/NewtonsoftJsonSerializationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/NewtonsoftJsonSerializationHelper.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/ProtobufNetSerializationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/ProtobufNetSerializationHelper.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/SystemTextJsonSerializationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/SystemTextJsonSerializationHelper.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/TypeSystem/TypeInfo/When_serializing_typeinfo_of_dynamicobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/TypeSystem/TypeInfo/When_serializing_typeinfo_of_dynamicobject.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/TypeSystem/TypeInfo/When_using_typeinfo_with_circular_reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/TypeSystem/TypeInfo/When_using_typeinfo_with_circular_reference.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/TypeSystem/TypeInfo/When_using_typeinfo_with_circular_reference_no_propertyinfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/TypeSystem/TypeInfo/When_using_typeinfo_with_circular_reference_no_propertyinfos.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/TypeSystem/TypeInfo/When_using_typeinfo_with_circular_reference_with_anonymous_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/TypeSystem/TypeInfo/When_using_typeinfo_with_circular_reference_with_anonymous_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/When_deserializing_json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/When_deserializing_json.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/When_serializing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/When_serializing.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/Serialization/XmlSerializationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/Serialization/XmlSerializationHelper.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TestData.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TestException.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TestHelper.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeExtensions/When_get_friendly_name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeExtensions/When_get_friendly_name.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeExtensions/When_reflecting_implemented_types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeExtensions/When_reflecting_implemented_types.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/ConstructorInfo/When_creating_constructor_info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/ConstructorInfo/When_creating_constructor_info.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/ConstructorInfo/When_resolving_constructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/ConstructorInfo/When_resolving_constructor.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/Emit/TypeEmitter/Cache/When_emitting_multiple_times.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/Emit/TypeEmitter/Cache/When_emitting_multiple_times.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/Emit/TypeEmitter/When_emitting_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/Emit/TypeEmitter/When_emitting_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/Emit/TypeEmitter/When_emitting_type_with_circular_reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/Emit/TypeEmitter/When_emitting_type_with_circular_reference.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/Extensions/Using_type_extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/Extensions/Using_type_extensions.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/FieldInfo/When_creating_field_info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/FieldInfo/When_creating_field_info.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/FieldInfo/When_resolving_field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/FieldInfo/When_resolving_field.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/MethodInfo/When_creating_method_info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/MethodInfo/When_creating_method_info.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/MethodInfo/When_resolving_method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/MethodInfo/When_resolving_method.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/MethodInfo/When_resolving_method2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/MethodInfo/When_resolving_method2.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/PropertyInfo/When_creating_property_info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/PropertyInfo/When_creating_property_info.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/PropertyInfo/When_resolving_property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/PropertyInfo/When_resolving_property.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_for_array_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_for_array_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_for_array_type_of_generic_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_for_array_type_of_generic_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_for_simple_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_for_simple_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_of_anonymous_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_of_anonymous_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_of_circular_type_graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_of_circular_type_graph.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_of_generic_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_of_generic_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_of_generic_type_definition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeInfo/When_creating_type_info_of_generic_type_definition.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/PerformanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/PerformanceTests.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_a_system_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_a_system_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_a_types_with_a_property_of_its_own_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_a_types_with_a_property_of_its_own_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_a_types_with_two_resolvers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_a_types_with_two_resolvers.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_anonymous_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_anonymous_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_array_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_array_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_array_type_of_generic_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_array_type_of_generic_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_constructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_constructor.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_different_anonymous_types_with_same_name_and_different_order_of_properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_different_anonymous_types_with_same_name_and_different_order_of_properties.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_different_anonymous_types_with_same_name_and_different_property_name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_different_anonymous_types_with_same_name_and_different_property_name.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_different_anonymous_types_with_same_name_and_different_property_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_different_anonymous_types_with_same_name_and_different_property_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_different_anonymous_types_with_same_name_and_same_properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_different_anonymous_types_with_same_name_and_same_properties.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_different_types_with_same_name_and_different_property_name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_different_types_with_same_name_and_different_property_name.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_different_types_with_same_name_and_same_properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_different_types_with_same_name_and_same_properties.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_explicit_cast_operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_explicit_cast_operator.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_generic_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_generic_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_hidden_member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_hidden_member.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_ienumerable_of_anonymous_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_ienumerable_of_anonymous_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_types_with_circular_reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_types_with_circular_reference.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_unknown_anonymous_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_unknown_anonymous_type.cs -------------------------------------------------------------------------------- /test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_unknown_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.Tests/TypeSystem/TypeResolver/When_resolving_unknown_type.cs -------------------------------------------------------------------------------- /test/Aqua.VBNet.Tests/Aqua.VBNet.Tests.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.VBNet.Tests/Aqua.VBNet.Tests.vbproj -------------------------------------------------------------------------------- /test/Aqua.VBNet.Tests/TypeSystem/ConstructorInfo/When_creating_constructor_info.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.VBNet.Tests/TypeSystem/ConstructorInfo/When_creating_constructor_info.vb -------------------------------------------------------------------------------- /test/Aqua.VBNet.Tests/TypeSystem/Extensions/When_using_type_extensions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Aqua.VBNet.Tests/TypeSystem/Extensions/When_using_type_extensions.vb -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6bee/aqua-core/HEAD/test/Directory.Build.props --------------------------------------------------------------------------------