Update ASP.NET 5 versions for ASP.NET Core.

See https://github.com/aspnet/Announcements/issues/144 for more information.
This commit is contained in:
N. Taylor Mullen 2016-01-22 12:28:27 -08:00
parent a83445441a
commit 1aff2e9cda
8 changed files with 45 additions and 43 deletions

View File

@ -1,7 +1,7 @@
{ {
"dependencies": { "dependencies": {
"Microsoft.Net.Http.Server": "1.0.0-*", "Microsoft.Net.Http.Server": "0.1.0-*",
"Microsoft.Net.WebSockets.Server": "1.0.0-*" "Microsoft.Net.WebSockets.Server": "0.1.0-*"
}, },
"commands": { "commands": {
"sample": "HelloWorld" "sample": "HelloWorld"

View File

@ -1,7 +1,7 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"dependencies": { "dependencies": {
"Microsoft.AspNetCore.Server.WebListener": "1.0.0-*", "Microsoft.AspNetCore.Server.WebListener": "0.1.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*" "Microsoft.Extensions.Logging.Console": "1.0.0-*"
}, },
"compilationOptions": { "compilationOptions": {

View File

@ -1,12 +1,14 @@
{ {
"dependencies": { "dependencies": {
"Microsoft.AspNetCore.Server.WebListener": "1.0.0-*", "Microsoft.AspNetCore.Server.WebListener": "0.1.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*" "Microsoft.Extensions.Logging.Console": "1.0.0-*"
}, },
"compilationOptions": { "compilationOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"commands": { "web": "SelfHostServer" }, "commands": {
"web": "SelfHostServer"
},
"frameworks": { "frameworks": {
"dnx451": {}, "dnx451": {},
"dnxcore50": {} "dnxcore50": {}

View File

@ -1,10 +1,10 @@
{ {
"version": "1.0.0-*", "version": "0.1.0-*",
"description": "ASP.NET 5 self-host web server.", "description": "ASP.NET 5 self-host web server.",
"dependencies": { "dependencies": {
"Microsoft.AspNetCore.Hosting": "1.0.0-*", "Microsoft.AspNetCore.Hosting": "1.0.0-*",
"Microsoft.Net.Http.Headers": "1.0.0-*", "Microsoft.Net.Http.Headers": "1.0.0-*",
"Microsoft.Net.Http.Server": "1.0.0-*" "Microsoft.Net.Http.Server": "0.1.0-*"
}, },
"compilationOptions": { "compilationOptions": {
"allowUnsafe": true, "allowUnsafe": true,

View File

@ -1,5 +1,5 @@
{ {
"version": "1.0.0-*", "version": "0.1.0-*",
"description": "Implementation of WebListener, a successor to HttpListener. It is used in the WebListener server package.", "description": "Implementation of WebListener, a successor to HttpListener. It is used in the WebListener server package.",
"dependencies": { "dependencies": {
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*", "Microsoft.Extensions.Logging.Abstractions": "1.0.0-*",

View File

@ -1,8 +1,8 @@
{ {
"version": "1.0.0-*", "version": "0.1.0-*",
"description": "Implementation of WebSocket abstract base class. Used by WebListener.", "description": "Implementation of WebSocket abstract base class. Used by WebListener.",
"dependencies": { "dependencies": {
"Microsoft.Net.Http.Server": "1.0.0-*" "Microsoft.Net.Http.Server": "0.1.0-*"
}, },
"compilationOptions": { "compilationOptions": {
"allowUnsafe": true, "allowUnsafe": true,

View File

@ -4,7 +4,7 @@
"test": "xunit.runner.aspnet" "test": "xunit.runner.aspnet"
}, },
"dependencies": { "dependencies": {
"Microsoft.AspNetCore.Server.WebListener": "1.0.0-*", "Microsoft.AspNetCore.Server.WebListener": "0.1.0-*",
"Microsoft.AspNetCore.Testing": "1.0.0-*" "Microsoft.AspNetCore.Testing": "1.0.0-*"
}, },
"frameworks": { "frameworks": {

View File

@ -4,8 +4,8 @@
"test": "xunit.runner.aspnet" "test": "xunit.runner.aspnet"
}, },
"dependencies": { "dependencies": {
"Microsoft.Net.Http.Server": "1.0.0-*", "Microsoft.Net.Http.Server": "0.1.0-*",
"Microsoft.Net.WebSockets.Server": "1.0.0-*", "Microsoft.Net.WebSockets.Server": "0.1.0-*",
"Microsoft.AspNetCore.Testing": "1.0.0-*", "Microsoft.AspNetCore.Testing": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*" "xunit.runner.aspnet": "2.0.0-aspnet-*"
}, },