Added required packages for K
This commit is contained in:
parent
09cc1964e7
commit
2dfdfafaa6
|
|
@ -2,7 +2,18 @@
|
||||||
"version": "0.1-alpha-*",
|
"version": "0.1-alpha-*",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"net45": { },
|
"net45": {},
|
||||||
"k10" : { }
|
"k10": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.ComponentModel": "4.0.0.0",
|
||||||
|
"System.Diagnostics.Tools": "4.0.0.0",
|
||||||
|
"System.IO": "4.0.0.0",
|
||||||
|
"System.Linq": "4.0.0.0",
|
||||||
|
"System.Runtime": "4.0.20.0",
|
||||||
|
"System.Runtime.Extensions": "4.0.10.0",
|
||||||
|
"System.Runtime.InteropServices": "4.0.10.0",
|
||||||
|
"System.Threading.Tasks": "4.0.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -2,7 +2,9 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
#if NET45
|
||||||
using System.Reflection.Emit;
|
using System.Reflection.Emit;
|
||||||
|
#endif
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
namespace Microsoft.AspNet.FeatureModel.Implementation
|
namespace Microsoft.AspNet.FeatureModel.Implementation
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,17 @@
|
||||||
"version": "0.1-alpha-*",
|
"version": "0.1-alpha-*",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"net45": { },
|
"net45": {},
|
||||||
"k10" : { }
|
"k10": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.Collections": "4.0.0.0",
|
||||||
|
"System.Linq": "4.0.0.0",
|
||||||
|
"System.Reflection": "4.0.10.0",
|
||||||
|
"System.Reflection.Compatibility": "4.0.0.0",
|
||||||
|
"System.Runtime": "4.0.20.0",
|
||||||
|
"System.Runtime.InteropServices": "4.0.10.0",
|
||||||
|
"System.Threading": "4.0.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,4 +1,6 @@
|
||||||
|
#if NET45
|
||||||
using System.Net;
|
using System.Net;
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace Microsoft.AspNet.HttpFeature
|
namespace Microsoft.AspNet.HttpFeature
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,15 @@
|
||||||
{
|
{
|
||||||
"version": "0.1-alpha-*",
|
"version": "0.1-alpha-*",
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"net45": { },
|
"net45": {},
|
||||||
"k10" : { }
|
"k10": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.IO": "4.0.0.0",
|
||||||
|
"System.Runtime": "4.0.20.0",
|
||||||
|
"System.Runtime.InteropServices": "4.0.10.0",
|
||||||
|
"System.Security.Principal": "4.0.0.0",
|
||||||
|
"System.Threading.Tasks": "4.0.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,12 +1,27 @@
|
||||||
{
|
{
|
||||||
"version": "0.1-alpha-*",
|
"version": "0.1-alpha-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.AspNet.FeatureModel" : "",
|
"Microsoft.AspNet.FeatureModel": "",
|
||||||
"Microsoft.AspNet.Abstractions" : "",
|
"Microsoft.AspNet.Abstractions": "",
|
||||||
"Microsoft.AspNet.HttpFeature" : ""
|
"Microsoft.AspNet.HttpFeature": ""
|
||||||
},
|
},
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"net45": { },
|
"net45": {},
|
||||||
"k10" : { }
|
"k10": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.Collections": "4.0.0.0",
|
||||||
|
"System.ComponentModel": "4.0.0.0",
|
||||||
|
"System.Diagnostics.Debug": "4.0.10.0",
|
||||||
|
"System.Diagnostics.Tools": "4.0.0.0",
|
||||||
|
"System.Globalization": "4.0.10.0",
|
||||||
|
"System.IO": "4.0.0.0",
|
||||||
|
"System.Linq": "4.0.0.0",
|
||||||
|
"System.Runtime": "4.0.20.0",
|
||||||
|
"System.Runtime.Extensions": "4.0.10.0",
|
||||||
|
"System.Runtime.InteropServices": "4.0.10.0",
|
||||||
|
"System.Text.Encoding": "4.0.10.0",
|
||||||
|
"System.Threading.Tasks": "4.0.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue