Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit aac0ce1

Browse files
committed
Updated to use the new target framework in project.json
1 parent 1aed739 commit aac0ce1

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

src/Microsoft.AspNet.FeatureModel/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
{
1+
{
22
"version": "1.0.0-*",
33
"dependencies": {},
44
"frameworks": {
55
"net45": {},
6-
"k10": {
6+
"aspnetcore50": {
77
"dependencies": {
88
"System.Collections": "4.0.10.0",
99
"System.Linq": "4.0.0.0",

src/Microsoft.AspNet.Http.Extensions/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
{
1+
{
22
"version": "1.0.0-*",
33
"dependencies": {
44
"Microsoft.AspNet.Http": ""
55
},
66
"frameworks" : {
77
"net45" : {
88
},
9-
"k10" : {
9+
"aspnetcore50" : {
1010
"dependencies": {
1111
"System.Runtime": "4.0.20.0"
1212
}

src/Microsoft.AspNet.Http/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"dependencies": {},
44
"frameworks": {
55
"net45": {},
6-
"k10": {
6+
"aspnetcore50": {
77
"dependencies": {
88
"Microsoft.Net.WebSocketAbstractions": "1.0.0-*",
99
"System.Collections": "4.0.10.0",

src/Microsoft.AspNet.HttpFeature/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"version": "1.0.0-*",
33
"frameworks": {
44
"net45": {},
5-
"k10": {
5+
"aspnetcore50": {
66
"dependencies": {
77
"Microsoft.Net.WebSocketAbstractions": "1.0.0-*",
88
"System.IO": "4.0.10.0",

src/Microsoft.AspNet.Owin/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"frameworks": {
1010
"net45": { },
11-
"k10": {
11+
"aspnetcore50": {
1212
"dependencies": {
1313
"System.Collections": "4.0.10.0",
1414
"System.ComponentModel": "4.0.0.0",

src/Microsoft.AspNet.PipelineCore/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"frameworks": {
1111
"net45": {},
12-
"k10": {
12+
"aspnetcore50": {
1313
"dependencies": {
1414
"Microsoft.Net.WebSocketAbstractions": "1.0.0-*",
1515
"System.Collections": "4.0.10.0",

src/Microsoft.AspNet.WebUtilities/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
{
1+
{
22
"version": "1.0.0-*",
33
"dependencies": {
44
"Microsoft.AspNet.Http": "1.0.0-*"
55
},
66
"frameworks": {
77
"net45": {},
8-
"k10": {
8+
"aspnetcore50": {
99
"dependencies": {
1010
"System.Runtime": "4.0.20.0"
1111
}

test/Microsoft.AspNet.FeatureModel.Tests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"dependencies": {
33
"Microsoft.AspNet.FeatureModel": "",
44
"Microsoft.AspNet.Http": "",

test/Microsoft.AspNet.Http.Extensions.Tests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"dependencies": {
33
"Microsoft.AspNet.Http": "",
44
"Microsoft.AspNet.Http.Extensions": "",

test/Microsoft.AspNet.Http.Tests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"dependencies": {
33
"Microsoft.AspNet.Http": "",
44
"Microsoft.AspNet.HttpFeature": "",

test/Microsoft.AspNet.Owin.Tests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"dependencies": {
33
"Microsoft.AspNet.FeatureModel": "",
44
"Microsoft.AspNet.Http": "",

test/Microsoft.AspNet.PipelineCore.Tests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"dependencies": {
33
"Microsoft.AspNet.FeatureModel": "",
44
"Microsoft.AspNet.Http": "",

test/Microsoft.AspNet.WebUtilities.Tests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"dependencies": {
33
"Microsoft.AspNet.Http": "",
44
"Microsoft.AspNet.WebUtilities": "",

0 commit comments

Comments
 (0)