does this really work

This commit is contained in:
Tommy Parnell
2016-11-14 15:00:21 -05:00
parent 176659d0cb
commit b4c3914e73
3 changed files with 18 additions and 6 deletions

View File

@@ -9,7 +9,8 @@
},
"frameworks": {
"net462": {},
"net462": {
},
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {

View File

@@ -78,7 +78,7 @@ namespace System
return bld;
}
#if netstandard15
#if (netstandard15)
public static UriBuilder WithSerializedObject(this UriBuilder bld, object serialize)
{

View File

@@ -16,9 +16,6 @@
"extension"
]
},
"dependencies": {
"NETStandard.Library": "1.6.0"
},
"authors": [
"Tommy Parnell"
],
@@ -26,12 +23,26 @@
"netstandard1.3": {
"buildOptions": {
"define": [ "netstandard13" ]
}
},
"dependencies": {
"NETStandard.Library": "1.6.0"
}
},
"netstandard1.5": {
"dependencies": {
"NETStandard.Library": "1.6.0"
},
"buildOptions": {
"define": [ "netstandard15" ]
}
},
"net45":{
"buildOptions": {
"define": [ "netstandard15" ]
},
"frameworkAssemblies": {
"System.Runtime":"4.0.0"
}
}
}
}