Fix NuGet downgrade warning

Works around warning where a P2P reference is explicitly listed in the project. For e.g.

warn :  SampleApp (>= 1.1.0) -> Microsoft.AspNetCore.Server.Kestrel.Https (>= 1.2.0) -> Microsoft.AspNetCore.Server.Kestrel
warn :  SampleApp (>= 1.1.0) -> Microsoft.AspNetCore.Server.Kestrel (>= 1.2.0)
This commit is contained in:
Pranav K 2016-12-22 17:02:35 -08:00
parent 81a8ba0347
commit c72605f43a
3 changed files with 0 additions and 3 deletions

View File

@ -1,7 +1,6 @@
{
"version": "1.1.0-*",
"dependencies": {
"Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*",
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.2.0-*",
"Microsoft.Extensions.Logging.Console": "1.2.0-*"
},

View File

@ -3,7 +3,6 @@
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.AspNetCore.Http.Abstractions": "1.2.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*",
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.2.0-*",
"Microsoft.AspNetCore.Testing": "1.2.0-*",
"Microsoft.Extensions.Logging.Testing": "1.2.0-*",

View File

@ -2,7 +2,6 @@
"version": "1.1.0-*",
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*",
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.2.0-*",
"Microsoft.AspNetCore.Testing": "1.2.0-*",
"Moq": "4.6.36-*",