new target frameworks

main
Paul Schneider 8 years ago
parent a89730e31b
commit 473bc93504
4 changed files with 3593 additions and 43 deletions

@ -37,10 +37,15 @@
} }
}, },
"net46": {
"frameworkAssemblies": {
"System.ComponentModel.DataAnnotations": "4.0.0"
}
},
"net451": { "net451": {
"frameworkAssemblies": { "frameworkAssemblies": {
"System.ComponentModel.DataAnnotations": "4.0.0" "System.ComponentModel.DataAnnotations": "4.0.0"
} }
} }
} }
} }

@ -13,6 +13,17 @@
} }
} }
}, },
".NETFramework,Version=v4.6": {
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/net45/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/net45/Newtonsoft.Json.dll": {}
}
}
},
".NETFramework,Version=v4.5.1": { ".NETFramework,Version=v4.5.1": {
"Newtonsoft.Json/9.0.1": { "Newtonsoft.Json/9.0.1": {
"type": "package", "type": "package",
@ -46,6 +57,28 @@
} }
} }
}, },
".NETFramework,Version=v4.6/debian.9-x86": {
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/net45/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/net45/Newtonsoft.Json.dll": {}
}
}
},
".NETFramework,Version=v4.6/debian.9-x64": {
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/net45/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/net45/Newtonsoft.Json.dll": {}
}
}
},
".NETFramework,Version=v4.5.1/debian.9-x86": { ".NETFramework,Version=v4.5.1/debian.9-x86": {
"Newtonsoft.Json/9.0.1": { "Newtonsoft.Json/9.0.1": {
"type": "package", "type": "package",
@ -102,6 +135,9 @@
"DNX,Version=v4.5.1": [ "DNX,Version=v4.5.1": [
"fx/System.ComponentModel.DataAnnotations >= 4.0.0" "fx/System.ComponentModel.DataAnnotations >= 4.0.0"
], ],
".NETFramework,Version=v4.6": [
"fx/System.ComponentModel.DataAnnotations >= 4.0.0"
],
".NETFramework,Version=v4.5.1": [ ".NETFramework,Version=v4.5.1": [
"fx/System.ComponentModel.DataAnnotations >= 4.0.0" "fx/System.ComponentModel.DataAnnotations >= 4.0.0"
] ]

@ -75,7 +75,6 @@
"System.Net": "4.0.0.0", "System.Net": "4.0.0.0",
"System.Net.Http": "4.0.0", "System.Net.Http": "4.0.0",
"System.Xml": "4.0.0" "System.Xml": "4.0.0"
} }
}, },
"net451": { "net451": {
@ -87,6 +86,16 @@
"System.Xml": "4.0.0", "System.Xml": "4.0.0",
"System": "4.0.0" "System": "4.0.0"
} }
},
"net46": {
"frameworkAssemblies": {
"System.ComponentModel.DataAnnotations": "4.0.0",
"System.Json": "4.0.0",
"System.Net": "4.0.0.0",
"System.Net.Http": "4.0.0",
"System.Xml": "4.0.0",
"System": "4.0.0"
}
} }
}, },
"commands": { "commands": {

File diff suppressed because it is too large Load Diff
Loading…