Skip to content

Commit 6b2b286

Browse files
committed
Update 5.0.0 release
1 parent 8e5563d commit 6b2b286

3 files changed

Lines changed: 13 additions & 11 deletions

File tree

src/AutoMapper.Collection-Signed/project.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,17 @@
1818
},
1919

2020
"dependencies": {
21-
"AutoMapper": "5.0.0-beta-01111"
21+
"AutoMapper": "5.0.0"
2222
},
2323

2424
"frameworks": {
2525
"net45": {
26+
"dependencies": {
27+
}
2628
},
2729
"netstandard1.1": {
2830
"dependencies": {
29-
"NETStandard.Library": "1.5.0-rc2-24027",
30-
"System.Linq.Expressions": "4.0.11-rc2-24027"
31+
"System.Threading": "4.0.11"
3132
},
3233
"imports": [
3334
"portable-net45+win8+dnxcore50",
@@ -36,9 +37,8 @@
3637
},
3738
"netstandard1.3": {
3839
"dependencies": {
39-
"NETStandard.Library": "1.5.0-rc2-24027",
40-
"System.Linq.Expressions": "4.0.11-rc2-24027"
41-
}
40+
"System.Threading": "4.0.11"
41+
}
4242
}
4343
}
4444
}

src/AutoMapper.Collection.EntityFramework/GenerateEntityFrameworkPrimaryKeyEquivilentExpressions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ public class GenerateEntityFrameworkPrimaryKeyEquivilentExpressions<TDatabaseCon
1515
/// Generate EquivilencyExpressions based on EnityFramework's primary key
1616
/// </summary>
1717
/// <param name="mapper">IMapper used to find TypeMap between classes</param>
18-
public GenerateEntityFrameworkPrimaryKeyEquivilentExpressions(IConfigurationProvider configurationProvider)
19-
: base(new GenerateEntityFrameworkPrimaryKeyPropertyMaps<TDatabaseContext>(configurationProvider))
18+
public GenerateEntityFrameworkPrimaryKeyEquivilentExpressions(IMapper mapper)
19+
: base(new GenerateEntityFrameworkPrimaryKeyPropertyMaps<TDatabaseContext>(mapper.ConfigurationProvider))
2020
{
2121
}
2222

src/AutoMapper.Collection/project.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,17 @@
1010
},
1111

1212
"dependencies": {
13-
"AutoMapper": "5.0.0-beta-01111"
13+
"AutoMapper": "5.0.0"
1414
},
1515

1616
"frameworks": {
1717
"net45": {
18+
"dependencies": {
19+
}
1820
},
1921
"netstandard1.1": {
2022
"dependencies": {
21-
"System.Linq.Expressions": "4.0.11-rc2-24027"
23+
"System.Threading": "4.0.11"
2224
},
2325
"imports": [
2426
"portable-net45+win8+dnxcore50",
@@ -27,7 +29,7 @@
2729
},
2830
"netstandard1.3": {
2931
"dependencies": {
30-
"System.Linq.Expressions": "4.0.11-rc2-24027"
32+
"System.Threading": "4.0.11"
3133
}
3234
}
3335
}

0 commit comments

Comments
 (0)