Correct project dependencies
- use latest `System.Net.Http`, not hard-coded version - add imports for the latest CLI - see aspnet/FileSystem@4a9a0fd for the inspiration
This commit is contained in:
parent
9c9543dde4
commit
7c7a4a905e
|
|
@ -9,6 +9,7 @@
|
||||||
"Microsoft.AspNetCore.Routing.Extensions": "1.0.0-*",
|
"Microsoft.AspNetCore.Routing.Extensions": "1.0.0-*",
|
||||||
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
|
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
|
||||||
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
|
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
|
||||||
|
"Microsoft.NETCore.Platforms": "1.0.1-*",
|
||||||
"Newtonsoft.Json": "7.0.1"
|
"Newtonsoft.Json": "7.0.1"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -22,7 +23,9 @@
|
||||||
|
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"dnx451": { },
|
"dnx451": { },
|
||||||
"dnxcore50": { }
|
"dnxcore50": {
|
||||||
|
"imports": "portable-net451+win8"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"publishExclude": [
|
"publishExclude": [
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"AntiforgerySample": "1.0.0-*",
|
"AntiforgerySample": "1.0.0-*",
|
||||||
"Microsoft.AspNetCore.TestHost": "1.0.0-*",
|
"Microsoft.AspNetCore.TestHost": "1.0.0-*",
|
||||||
"Microsoft.AspNetCore.Testing": "1.0.0-*"
|
"Microsoft.AspNetCore.Testing": "1.0.0-*",
|
||||||
|
"Microsoft.NETCore.Platforms": "1.0.1-*"
|
||||||
},
|
},
|
||||||
"testRunner": "xunit",
|
"testRunner": "xunit",
|
||||||
"commands": {
|
"commands": {
|
||||||
|
|
@ -12,15 +13,19 @@
|
||||||
"dnx451": {
|
"dnx451": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Moq": "4.2.1312.1622",
|
"Moq": "4.2.1312.1622",
|
||||||
"System.Net.Http": "4.0.1-rc2-23621",
|
|
||||||
"xunit.runner.console": "2.1.0"
|
"xunit.runner.console": "2.1.0"
|
||||||
|
},
|
||||||
|
"frameworkAssemblies": {
|
||||||
|
"System.Net.Http": ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dnxcore50": {
|
"dnxcore50": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"moq.netcore": "4.4.0-beta8",
|
"moq.netcore": "4.4.0-beta8",
|
||||||
|
"System.Net.Http": "4.0.1-*",
|
||||||
"xunit.runner.aspnet": "2.0.0-aspnet-*"
|
"xunit.runner.aspnet": "2.0.0-aspnet-*"
|
||||||
}
|
},
|
||||||
|
"imports": "portable-net451+win8"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@
|
||||||
"Microsoft.AspNetCore.Http": "1.0.0-*",
|
"Microsoft.AspNetCore.Http": "1.0.0-*",
|
||||||
"Microsoft.Extensions.DependencyInjection": "1.0.0-*",
|
"Microsoft.Extensions.DependencyInjection": "1.0.0-*",
|
||||||
"Microsoft.Extensions.WebEncoders": "1.0.0-*",
|
"Microsoft.Extensions.WebEncoders": "1.0.0-*",
|
||||||
|
"Microsoft.NETCore.Platforms": "1.0.1-*",
|
||||||
"xunit": "2.1.0-*"
|
"xunit": "2.1.0-*"
|
||||||
},
|
},
|
||||||
"testRunner": "xunit",
|
"testRunner": "xunit",
|
||||||
|
|
@ -28,7 +29,8 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"moq.netcore": "4.4.0-beta8",
|
"moq.netcore": "4.4.0-beta8",
|
||||||
"xunit.runner.aspnet": "2.0.0-aspnet-*"
|
"xunit.runner.aspnet": "2.0.0-aspnet-*"
|
||||||
}
|
},
|
||||||
|
"imports": "portable-net451+win8"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue