Fix references to socket APIs, and target the lowest net standard versions possible

This commit is contained in:
SteveSandersonMS
2016-06-01 18:04:40 +01:00
parent 931ba118e1
commit 311733b113
9 changed files with 45 additions and 9 deletions

View File

@@ -15,7 +15,10 @@
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Net.Http": "4.0.0.0"
"System.Net.Http": "4.0.0-*"
},
"dependencies": {
"Microsoft.Tpl.Dataflow": "4.5.24"
}
},
"netstandard1.3": {
@@ -27,8 +30,11 @@
"dependencies": {
"System.Console": "4.0.0-*",
"System.Diagnostics.Process": "4.1.0-*",
"System.IO.Pipes": "4.0.0-*",
"System.Net.Http": "4.0.1-*",
"System.Text.RegularExpressions": "4.0.12-*"
"System.Net.Sockets": "4.1.0-*",
"System.Text.RegularExpressions": "4.0.12-*",
"System.Threading.Tasks.Dataflow": "4.5.25-*"
}
}
},