Skip to content

Commit 7fc09fb

Browse files
committed
Update project.json to use an explicit System.Security.Claims dependency for dnxcore50
1 parent cddc834 commit 7fc09fb

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

generators/app/templates/project.json

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,26 @@
88
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.html",
99

1010
"dependencies": {
11-
"AspNet.Security.OAuth.Extensions": { "type": "build", "version": "1.0.0-*" },
11+
"AspNet.Security.OAuth.Extensions": {
12+
"type": "build",
13+
"version": "1.0.0-*"
14+
},
15+
1216
"Microsoft.AspNet.Authentication.OAuth": "1.0.0-*",
13-
"Microsoft.Framework.NotNullAttribute.Internal": { "type": "build", "version": "1.0.0-*" }
17+
18+
"Microsoft.Framework.NotNullAttribute.Internal": {
19+
"type": "build",
20+
"version": "1.0.0-*"
21+
}
1422
},
1523

1624
"frameworks": {
1725
"dnx451": { },
18-
"dnxcore50": { }
26+
27+
"dnxcore50": {
28+
"dependencies": {
29+
"System.Security.Claims": "4.0.1-*"
30+
}
31+
}
1932
}
2033
}

0 commit comments

Comments
 (0)