├── .gitattributes ├── .gitignore ├── AutoMapper.Attributes.V4.Tests.TestAssembly ├── AutoMapper.Attributes.V4.TestAssembly.csproj ├── MapsFromTests │ ├── DestinationData.cs │ ├── MapsFromSourceDataNormalAttribute.cs │ ├── MapsFromSourceDataSpecialAttribute.cs │ ├── SourceData.cs │ ├── SourceDataNormalAttribute.cs │ └── SourceDataSpecialAttribute.cs ├── MapsToTests │ ├── DestinationData.cs │ ├── DestinationDataNormalAttribute.cs │ ├── DestinationDataSpecialAttribute.cs │ ├── MapsToDestinationDataNormalAttribute.cs │ ├── MapsToDestinationDataSpecialAttribute.cs │ └── SourceData.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyMapTests │ └── Container.cs ├── SubclassTests │ ├── Person.cs │ ├── SourceEmployee.cs │ └── TargetEmployee.cs └── packages.config ├── AutoMapper.Attributes.V4.Tests ├── AutoMapper.Attributes.V4.Tests.csproj ├── MapTests.cs ├── MapsFromPropertyTests.cs ├── MapsFromTests.cs ├── MapsToPropertyTests.cs ├── MapsToTests.cs ├── Properties │ └── AssemblyInfo.cs ├── SubclassTests.cs ├── TestMapper.cs └── packages.config ├── AutoMapper.Attributes.V4 ├── AutoMapper.Attributes.V4.csproj ├── Extensions.cs ├── Mapptribute.cs ├── MapsFromAttribute.cs ├── MapsFromPropertyAttribute.cs ├── MapsPropertyAttribute.cs ├── MapsToAttribute.cs ├── MapsToPropertyAttribute.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyMapInfo.cs ├── ReflectionExtensions.cs └── packages.config ├── AutoMapper.Attributes.V5.TestAssembly ├── AutoMapper.Attributes.V5.TestAssembly.csproj ├── MapsFromTests │ ├── DestinationData.cs │ ├── MapsFromSourceDataNormalAttribute.cs │ ├── MapsFromSourceDataSpecialAttribute.cs │ ├── SourceData.cs │ ├── SourceDataForTheSpecialAttribute.cs │ └── SourceDataNormalAttribute.cs ├── MapsToAndFromTests │ ├── DestinationData.cs │ └── SourceData.cs ├── MapsToTests │ ├── DestinationData.cs │ ├── DestinationDataNormalAttribute.cs │ ├── DestinationDataSpecialAttribute.cs │ ├── MapsToDestinationDataNormalAttribute.cs │ ├── MapsToDestinationDataSpecialAttribute.cs │ └── SourceData.cs ├── PropertyMapTests │ ├── Container.cs │ ├── DeepContainer.cs │ └── DeeperContainer.cs ├── SubclassTests │ ├── Person.cs │ ├── SourceEmployee.cs │ └── TargetEmployee.cs └── packages.config ├── AutoMapper.Attributes.V5.Tests ├── AutoMapper.Attributes.V5.Tests.csproj ├── MapTests.cs ├── MappingValidatorTests.cs ├── MapsFromPropertyTests.cs ├── MapsFromTests.cs ├── MapsToAndFromPropertyTests.cs ├── MapsToPropertyTests.cs ├── MapsToTests.cs ├── SubclassTests.cs └── TestMapper.cs ├── AutoMapper.Attributes.V5 ├── AutoMapper.Attributes.V5.csproj ├── Extensions.cs ├── IgnoreMapFromAttribute.cs ├── IgnoreMapToAttribute.cs ├── IgnoreMapToPropertiesAttribute.cs ├── Mapptribute.cs ├── MapsFromAttribute.cs ├── MapsFromPropertyAttribute.cs ├── MapsPropertyAttribute.cs ├── MapsToAndFromPropertyAttribute.cs ├── MapsToAttribute.cs ├── MapsToPropertyAttribute.cs ├── PropertyMapInfo.cs └── ReflectionExtensions.cs ├── AutoMapper.Attributes.sln ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/AutoMapper.Attributes.V4.TestAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/AutoMapper.Attributes.V4.TestAssembly.csproj -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/MapsFromTests/DestinationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/MapsFromTests/DestinationData.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/MapsFromTests/MapsFromSourceDataNormalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/MapsFromTests/MapsFromSourceDataNormalAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/MapsFromTests/MapsFromSourceDataSpecialAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/MapsFromTests/MapsFromSourceDataSpecialAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/MapsFromTests/SourceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/MapsFromTests/SourceData.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/MapsFromTests/SourceDataNormalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/MapsFromTests/SourceDataNormalAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/MapsFromTests/SourceDataSpecialAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/MapsFromTests/SourceDataSpecialAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/MapsToTests/DestinationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/MapsToTests/DestinationData.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/MapsToTests/DestinationDataNormalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/MapsToTests/DestinationDataNormalAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/MapsToTests/DestinationDataSpecialAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/MapsToTests/DestinationDataSpecialAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/MapsToTests/MapsToDestinationDataNormalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/MapsToTests/MapsToDestinationDataNormalAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/MapsToTests/MapsToDestinationDataSpecialAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/MapsToTests/MapsToDestinationDataSpecialAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/MapsToTests/SourceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/MapsToTests/SourceData.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/PropertyMapTests/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/PropertyMapTests/Container.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/SubclassTests/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/SubclassTests/Person.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/SubclassTests/SourceEmployee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/SubclassTests/SourceEmployee.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/SubclassTests/TargetEmployee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/SubclassTests/TargetEmployee.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests.TestAssembly/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests.TestAssembly/packages.config -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests/AutoMapper.Attributes.V4.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests/AutoMapper.Attributes.V4.Tests.csproj -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests/MapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests/MapTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests/MapsFromPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests/MapsFromPropertyTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests/MapsFromTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests/MapsFromTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests/MapsToPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests/MapsToPropertyTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests/MapsToTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests/MapsToTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests/SubclassTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests/SubclassTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests/TestMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests/TestMapper.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4.Tests/packages.config -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4/AutoMapper.Attributes.V4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4/AutoMapper.Attributes.V4.csproj -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4/Extensions.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4/Mapptribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4/Mapptribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4/MapsFromAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4/MapsFromAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4/MapsFromPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4/MapsFromPropertyAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4/MapsPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4/MapsPropertyAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4/MapsToAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4/MapsToAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4/MapsToPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4/MapsToPropertyAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4/PropertyMapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4/PropertyMapInfo.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4/ReflectionExtensions.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V4/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V4/packages.config -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/AutoMapper.Attributes.V5.TestAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/AutoMapper.Attributes.V5.TestAssembly.csproj -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsFromTests/DestinationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsFromTests/DestinationData.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsFromTests/MapsFromSourceDataNormalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsFromTests/MapsFromSourceDataNormalAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsFromTests/MapsFromSourceDataSpecialAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsFromTests/MapsFromSourceDataSpecialAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsFromTests/SourceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsFromTests/SourceData.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsFromTests/SourceDataForTheSpecialAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsFromTests/SourceDataForTheSpecialAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsFromTests/SourceDataNormalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsFromTests/SourceDataNormalAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsToAndFromTests/DestinationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsToAndFromTests/DestinationData.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsToAndFromTests/SourceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsToAndFromTests/SourceData.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsToTests/DestinationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsToTests/DestinationData.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsToTests/DestinationDataNormalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsToTests/DestinationDataNormalAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsToTests/DestinationDataSpecialAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsToTests/DestinationDataSpecialAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsToTests/MapsToDestinationDataNormalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsToTests/MapsToDestinationDataNormalAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsToTests/MapsToDestinationDataSpecialAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsToTests/MapsToDestinationDataSpecialAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/MapsToTests/SourceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/MapsToTests/SourceData.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/PropertyMapTests/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/PropertyMapTests/Container.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/PropertyMapTests/DeepContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/PropertyMapTests/DeepContainer.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/PropertyMapTests/DeeperContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/PropertyMapTests/DeeperContainer.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/SubclassTests/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/SubclassTests/Person.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/SubclassTests/SourceEmployee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/SubclassTests/SourceEmployee.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/SubclassTests/TargetEmployee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/SubclassTests/TargetEmployee.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.TestAssembly/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.TestAssembly/packages.config -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.Tests/AutoMapper.Attributes.V5.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.Tests/AutoMapper.Attributes.V5.Tests.csproj -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.Tests/MapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.Tests/MapTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.Tests/MappingValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.Tests/MappingValidatorTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.Tests/MapsFromPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.Tests/MapsFromPropertyTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.Tests/MapsFromTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.Tests/MapsFromTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.Tests/MapsToAndFromPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.Tests/MapsToAndFromPropertyTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.Tests/MapsToPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.Tests/MapsToPropertyTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.Tests/MapsToTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.Tests/MapsToTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.Tests/SubclassTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.Tests/SubclassTests.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5.Tests/TestMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5.Tests/TestMapper.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/AutoMapper.Attributes.V5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/AutoMapper.Attributes.V5.csproj -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/Extensions.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/IgnoreMapFromAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/IgnoreMapFromAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/IgnoreMapToAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/IgnoreMapToAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/IgnoreMapToPropertiesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/IgnoreMapToPropertiesAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/Mapptribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/Mapptribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/MapsFromAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/MapsFromAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/MapsFromPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/MapsFromPropertyAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/MapsPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/MapsPropertyAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/MapsToAndFromPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/MapsToAndFromPropertyAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/MapsToAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/MapsToAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/MapsToPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/MapsToPropertyAttribute.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/PropertyMapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/PropertyMapInfo.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.V5/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.V5/ReflectionExtensions.cs -------------------------------------------------------------------------------- /AutoMapper.Attributes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/AutoMapper.Attributes.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneidenbach/AutoMapper.Attributes/HEAD/README.md --------------------------------------------------------------------------------