Remove unused dependency

- The authorization stack doesn't depend on AspNetCore at all really
This commit is contained in:
David Fowler 2016-01-24 23:57:17 -08:00
parent 3780a47528
commit a1aeb4313e
1 changed files with 6 additions and 3 deletions

View File

@ -10,12 +10,15 @@
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.AspNetCore.Http.Features": "1.0.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*",
"Microsoft.Extensions.Options": "1.0.0-*"
},
"frameworks": {
"net451": {},
"dotnet5.4": {}
"net451": { },
"dotnet5.4": {
"dependencies": {
"System.Security.Claims": "4.0.1-*"
}
}
}
}