Skip to content

Commit 928f769

Browse files
authored
Merge pull request #182 from bitschubse/master
Upgrade to AutoMapper 13.0
2 parents 66d79c9 + 8da34e2 commit 928f769

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

Directory.Build.props

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,4 @@
88
<EffortVersion>2.2.1</EffortVersion>
99
</PropertyGroup>
1010

11-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net461' ">
12-
<EFVersion>6.1.3</EFVersion>
13-
</PropertyGroup>
14-
15-
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.1' or '$(TargetFramework)' == 'netcoreapp3.0' ">
16-
<EFVersion>6.3.0</EFVersion>
17-
</PropertyGroup>
18-
1911
</Project>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>Collection updating support for EntityFramework with AutoMapper. Extends DBSet&lt;T&gt; with Persist&lt;TDto&gt;().InsertUpdate(dto) and Persist&lt;TDto&gt;().Delete(dto). Will find the matching object and will Insert/Update/Delete.</Description>
55
<Authors>Tyler Carlson</Authors>
6-
<TargetFrameworks>netstandard2.1</TargetFrameworks>
6+
<TargetFrameworks>net6.0</TargetFrameworks>
77
<AssemblyName>AutoMapper.Collection.EntityFramework</AssemblyName>
88
<PackageId>AutoMapper.Collection.EntityFramework</PackageId>
99
<PackageIcon>icon.png</PackageIcon>
@@ -29,7 +29,7 @@
2929

3030
<ItemGroup>
3131
<PackageReference Include="AutoMapper.Extensions.ExpressionMapping" Version="1.0.0" />
32-
<PackageReference Include="EntityFramework" Version="$(EfVersion)" />
32+
<PackageReference Include="EntityFramework" Version="6.3.0" />
3333
<PackageReference Include="MinVer" Version="2.3.1">
3434
<PrivateAssets>all</PrivateAssets>
3535
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

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>netstandard2.1</TargetFrameworks>
6+
<TargetFrameworks>net6.0</TargetFrameworks>
77
<AssemblyName>AutoMapper.Collection</AssemblyName>
88
<PackageId>AutoMapper.Collection</PackageId>
99
<PackageIcon>icon.png</PackageIcon>
@@ -24,7 +24,7 @@
2424
</ItemGroup>
2525

2626
<ItemGroup>
27-
<PackageReference Include="AutoMapper" Version="[12.0.0, 13.0.0)" />
27+
<PackageReference Include="AutoMapper" Version="[13.0.0, 14.0.0)" />
2828
<PackageReference Include="MinVer" Version="2.3.1">
2929
<PrivateAssets>all</PrivateAssets>
3030
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>9.0.0</VersionPrefix>
3+
<VersionPrefix>10.0.0</VersionPrefix>
44
</PropertyGroup>
55
</Project>

0 commit comments

Comments
 (0)