Skip to content

Commit

Permalink
Portable build dependencies fix to workaround issue with package inst…
Browse files Browse the repository at this point in the history
…allation from .net 4.6.1 projects #1
  • Loading branch information
VitaliyMF committed Aug 1, 2016
1 parent f14038c commit 04f506e
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions src/NReco.LambdaParser/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "NReco.LambdaParser",
"version": "1.0.2",
"version": "1.0.3",
"authors": [ "Vitalii Fedorchenko" ],
"copyright": "Copyright (c) 2013-2016 Vitalii Fedorchenko",
"description": "Runtime parser for string expressions (formulas, method calls etc). Builds LINQ expression tree and compiles it to lambda delegate, supports dynamically typed variables.",
Expand All @@ -20,30 +20,30 @@
},
"frameworks": {
".NETPortable,Version=v4.5,Profile=Profile259": {
"frameworkAssemblies": {
"System": "",
"System.Collections": "",
"System.Core": "",
"System.IO": "",
"System.Reflection": "",
"System.Linq": "",
"System.Linq.Expressions": "",
"System.Runtime": "",
"System.Resources.ResourceManager": "",
"System.Reflection.Extensions": "",
"System.Globalization": "",
"System.Runtime.Extensions": "",
"System.Threading": ""
}
"frameworkAssemblies": {
"System": { "type": "build" },
"System.Collections": { "type": "build" },
"System.Core": { "type": "build" },
"System.IO": { "type": "build" },
"System.Reflection": { "type": "build" },
"System.Linq": { "type": "build" },
"System.Linq.Expressions": { "type": "build" },
"System.Runtime": { "type": "build" },
"System.Resources.ResourceManager": { "type": "build" },
"System.Reflection.Extensions": { "type": "build" },
"System.Globalization": { "type": "build" },
"System.Runtime.Extensions": { "type": "build" },
"System.Threading": { "type": "build" }
}
},
".NETPortable,Version=v4.0,Profile=Profile328": {
"buildOptions": {
"define": [ "NET40" ]
},
"frameworkAssemblies": {
"mscorlib": "",
"System.Core": "",
"System": ""
"mscorlib": { "type": "build" },
"System.Core": { "type": "build" },
"System": { "type": "build" }
}
},
"netstandard1.3": {
Expand Down

0 comments on commit 04f506e

Please sign in to comment.