Added required packages for K

This commit is contained in:
David Fowler 2014-03-07 02:17:04 -08:00
parent 09cc1964e7
commit 2dfdfafaa6
6 changed files with 59 additions and 11 deletions

View File

@ -2,7 +2,18 @@
"version": "0.1-alpha-*",
"dependencies": {},
"configurations": {
"net45": { },
"k10" : { }
"net45": {},
"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"
}
}
}
}

View File

@ -2,7 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
#if NET45
using System.Reflection.Emit;
#endif
using System.Runtime.CompilerServices;
namespace Microsoft.AspNet.FeatureModel.Implementation

View File

@ -2,7 +2,17 @@
"version": "0.1-alpha-*",
"dependencies": {},
"configurations": {
"net45": { },
"k10" : { }
"net45": {},
"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"
}
}
}
}

View File

@ -1,4 +1,6 @@
#if NET45
using System.Net;
#endif
namespace Microsoft.AspNet.HttpFeature
{

View File

@ -1,7 +1,15 @@
{
"version": "0.1-alpha-*",
"configurations": {
"net45": { },
"k10" : { }
"net45": {},
"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"
}
}
}
}

View File

@ -1,12 +1,27 @@
{
"version": "0.1-alpha-*",
"dependencies": {
"Microsoft.AspNet.FeatureModel" : "",
"Microsoft.AspNet.Abstractions" : "",
"Microsoft.AspNet.HttpFeature" : ""
"Microsoft.AspNet.FeatureModel": "",
"Microsoft.AspNet.Abstractions": "",
"Microsoft.AspNet.HttpFeature": ""
},
"configurations": {
"net45": { },
"k10" : { }
"net45": {},
"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"
}
}
}
}