Skip to content

Commit

Permalink
Fixing issue w/ incorrectly configured dependencies & bumping version #
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-87 committed Mar 31, 2016
1 parent 4dd6fac commit c3fa7f4
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/Dapper.FluentColumnMapping/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.1-*",
"title": "Dapper.FluentColumnMapping",
"summary": "Fluent Object-Column Mappings for use with Dapper",
"description": "Fluent Object-Column Mappings for use with Dapper\r\n\r\nNOTE: This is not a part of the official Dapper project.",
Expand All @@ -10,19 +10,23 @@
"projectUrl": "https://github.com/alexander-87/Dapper.FluentColumnMapping",
"licenseUrl": "https://opensource.org/licenses/MIT",
"frameworks": {
"net451": { },
"net451": {
"dependencies": {
"Dapper": "1.42.0"
}
},
"dotnet5.4": {
"dependencies": {
"Microsoft.CSharp": "4.0.1-beta-23516",
"System.Collections": "4.0.11-beta-23516",
"System.Linq": "4.0.1-beta-23516",
"System.Runtime": "4.0.21-beta-23516",
"System.Threading": "4.0.11-beta-23516"
"System.Threading": "4.0.11-beta-23516",
"System.Reflection.TypeExtensions": "4.1.0-beta-23516",
"Dapper": "1.50.0-beta8"
}
}
},
"dependencies": {
"Dapper": "1.50.0-beta8",
"System.Reflection.TypeExtensions": "4.1.0-beta-23516"
}
}

0 comments on commit c3fa7f4

Please sign in to comment.