Skip to content

Commit 2dfdfaf

Browse files
committed
Added required packages for K
1 parent 09cc196 commit 2dfdfaf

File tree

6 files changed

+59
-11
lines changed

6 files changed

+59
-11
lines changed

src/Microsoft.AspNet.Abstractions/project.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,18 @@
22
"version": "0.1-alpha-*",
33
"dependencies": {},
44
"configurations": {
5-
"net45": { },
6-
"k10" : { }
5+
"net45": {},
6+
"k10": {
7+
"dependencies": {
8+
"System.ComponentModel": "4.0.0.0",
9+
"System.Diagnostics.Tools": "4.0.0.0",
10+
"System.IO": "4.0.0.0",
11+
"System.Linq": "4.0.0.0",
12+
"System.Runtime": "4.0.20.0",
13+
"System.Runtime.Extensions": "4.0.10.0",
14+
"System.Runtime.InteropServices": "4.0.10.0",
15+
"System.Threading.Tasks": "4.0.0.0"
16+
}
17+
}
718
}
819
}

src/Microsoft.AspNet.FeatureModel/Implementation/Converter.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
using System.Collections.Generic;
33
using System.Linq;
44
using System.Reflection;
5+
#if NET45
56
using System.Reflection.Emit;
7+
#endif
68
using System.Runtime.CompilerServices;
79

810
namespace Microsoft.AspNet.FeatureModel.Implementation

src/Microsoft.AspNet.FeatureModel/project.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,17 @@
22
"version": "0.1-alpha-*",
33
"dependencies": {},
44
"configurations": {
5-
"net45": { },
6-
"k10" : { }
5+
"net45": {},
6+
"k10": {
7+
"dependencies": {
8+
"System.Collections": "4.0.0.0",
9+
"System.Linq": "4.0.0.0",
10+
"System.Reflection": "4.0.10.0",
11+
"System.Reflection.Compatibility": "4.0.0.0",
12+
"System.Runtime": "4.0.20.0",
13+
"System.Runtime.InteropServices": "4.0.10.0",
14+
"System.Threading": "4.0.0.0"
15+
}
16+
}
717
}
818
}

src/Microsoft.AspNet.HttpFeature/IHttpConnection.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
#if NET45
12
using System.Net;
3+
#endif
24

35
namespace Microsoft.AspNet.HttpFeature
46
{
Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
{
22
"version": "0.1-alpha-*",
33
"configurations": {
4-
"net45": { },
5-
"k10" : { }
4+
"net45": {},
5+
"k10": {
6+
"dependencies": {
7+
"System.IO": "4.0.0.0",
8+
"System.Runtime": "4.0.20.0",
9+
"System.Runtime.InteropServices": "4.0.10.0",
10+
"System.Security.Principal": "4.0.0.0",
11+
"System.Threading.Tasks": "4.0.0.0"
12+
}
13+
}
614
}
715
}
Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,27 @@
11
{
22
"version": "0.1-alpha-*",
33
"dependencies": {
4-
"Microsoft.AspNet.FeatureModel" : "",
5-
"Microsoft.AspNet.Abstractions" : "",
6-
"Microsoft.AspNet.HttpFeature" : ""
4+
"Microsoft.AspNet.FeatureModel": "",
5+
"Microsoft.AspNet.Abstractions": "",
6+
"Microsoft.AspNet.HttpFeature": ""
77
},
88
"configurations": {
9-
"net45": { },
10-
"k10" : { }
9+
"net45": {},
10+
"k10": {
11+
"dependencies": {
12+
"System.Collections": "4.0.0.0",
13+
"System.ComponentModel": "4.0.0.0",
14+
"System.Diagnostics.Debug": "4.0.10.0",
15+
"System.Diagnostics.Tools": "4.0.0.0",
16+
"System.Globalization": "4.0.10.0",
17+
"System.IO": "4.0.0.0",
18+
"System.Linq": "4.0.0.0",
19+
"System.Runtime": "4.0.20.0",
20+
"System.Runtime.Extensions": "4.0.10.0",
21+
"System.Runtime.InteropServices": "4.0.10.0",
22+
"System.Text.Encoding": "4.0.10.0",
23+
"System.Threading.Tasks": "4.0.0.0"
24+
}
25+
}
1126
}
1227
}

0 commit comments

Comments
 (0)