Skip to content

Commit 0875f34

Browse files
Merge pull request #90 from Tasteful/version7
Update to AutoMapper 7.0.0
2 parents 75536f9 + cf8eb32 commit 0875f34

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

src/AutoMapper.Collection.EntityFramework/AutoMapper.Collection.EntityFramework.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
</ItemGroup>
2020

2121
<ItemGroup>
22+
<PackageReference Include="AutoMapper.Extensions.ExpressionMapping" Version="1.0.0" />
2223
<PackageReference Include="EntityFramework" Version="6.1.3" />
2324
</ItemGroup>
2425

src/AutoMapper.Collection.EntityFramework/Extensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections;
33
using System.Collections.Generic;
44
using System.Data.Entity;
5-
using AutoMapper.QueryableExtensions.Impl;
5+
using AutoMapper.Extensions.ExpressionMapping.Impl;
66

77
namespace AutoMapper.EntityFramework
88
{

src/AutoMapper.Collection.LinqToSQL/AutoMapper.Collection.LinqToSQL.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
<ProjectReference Include="..\AutoMapper.Collection\AutoMapper.Collection.csproj" />
1919
</ItemGroup>
2020

21+
<ItemGroup>
22+
<PackageReference Include="AutoMapper.Extensions.ExpressionMapping" Version="1.0.0" />
23+
</ItemGroup>
24+
2125
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
2226
<Reference Include="System.Data" />
2327
<Reference Include="System.Data.Linq" />

src/AutoMapper.Collection.LinqToSQL/PersistenceExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections;
33
using System.Collections.Generic;
44
using System.Data.Linq;
5-
using AutoMapper.QueryableExtensions.Impl;
5+
using AutoMapper.Extensions.ExpressionMapping.Impl;
66

77
namespace AutoMapper.Collection.LinqToSQL
88
{

src/AutoMapper.Collection/AutoMapper.Collection.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>Collection Add/Remove/Update support for AutoMapper. AutoMapper.Collection adds EqualityComparison Expressions for TypeMaps to determine if Source and Destination type are equivalent to each other when mapping collections.</Description>
55
<Authors>Tyler Carlson</Authors>
6-
<TargetFrameworks>net45;netstandard1.1;netstandard1.3</TargetFrameworks>
6+
<TargetFrameworks>netstandard2.0;netstandard1.3;net45</TargetFrameworks>
77
<AssemblyName>AutoMapper.Collection</AssemblyName>
88
<PackageId>AutoMapper.Collection</PackageId>
99
<PackageIconUrl>https://s3.amazonaws.com/automapper/icon.png</PackageIconUrl>
@@ -16,7 +16,7 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="AutoMapper" Version="6.2.1" />
19+
<PackageReference Include="AutoMapper" Version="7.0.0" />
2020
</ItemGroup>
2121

2222
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">

0 commit comments

Comments
 (0)