Skip to content

Commit

Permalink
Fixed compatibility issue with Newtonsoft.Json >= 10.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
scale-tone committed Oct 29, 2017
1 parent a6c0a55 commit 40b57de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ public static class GeneralUtils
{
DateParseHandling = DateParseHandling.None,
TypeNameHandling = TypeNameHandling.All,
// this is required for normal .Net
// ContractResolver = new DefaultContractResolver { IgnoreSerializableInterface = true }
ContractResolver = new DefaultContractResolver { IgnoreSerializableInterface = true }
};
#endif

Expand Down
8 changes: 4 additions & 4 deletions Sources/Linq2DynamoDb.DataContext.Caching.Redis/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
"description": "Implements caching in Redis (including AWS ElastiCache implementation) for Linq2DynamoDb.DataContext.",
"copyright": "Copyright © 2017",
"authors": [ "linq2dynamodb" ],
"version": "2.2.0-*",
"version": "2.2.1-*",
"packOptions": {
"owners": [ "linq2dynamodb" ],
"projectUrl": "https://github.com/scale-tone/linq2dynamodb/",
"iconUrl": "https://secure.gravatar.com/avatar/83392a88365261125361fa6ec95a3294",
"repository": { "url": "https://github.com/scale-tone/linq2dynamodb/" },
"summary": "Implements caching in Redis for Linq2DynamoDb.DataContext.",
"releaseNotes": "Fixed nuget references.",
"releaseNotes": "Fixed compatibility issue with Newtonsoft.Json >= 10.0.1.",
"tags": [ "Linq2DynamoDb", "AWS", "DynamoDb", "caching", "Redis" ]
},
"dependencies": {
"Linq2DynamoDb.DataContext": "2.2.0-*",
"Linq2DynamoDb.DataContext": "2.3.0-*",
"StackExchange.Redis": "1.2.0"
},
"frameworks": {
Expand All @@ -27,7 +27,7 @@
"imports": "dnxcore50",
"dependencies": {
"NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1"
"Newtonsoft.Json": "10.0.1"
}
}
}
Expand Down

0 comments on commit 40b57de

Please sign in to comment.