Remove WebListener and WebSockets from sample due to dependencies.

This commit is contained in:
Chris Ross 2014-10-27 10:36:42 -07:00
parent 1fc591921b
commit 1e9c6007a9
3 changed files with 2 additions and 6 deletions

View File

@ -1,3 +1,3 @@

Server = Microsoft.AspNet.Server.WebListener
Server = Kestrel
Server.Urls = http://localhost:5000/

View File

@ -11,8 +11,6 @@ namespace SampleApp
{
public void Configure(IApplicationBuilder app)
{
app.UseWebSockets();
app.Run(async context =>
{
Console.WriteLine("{0} {1}{2}{3}",

View File

@ -1,9 +1,7 @@
{
"version": "1.0.0-*",
"dependencies": {
"Kestrel": "1.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
"Microsoft.AspNet.WebSockets.Server": "1.0.0-*"
"Kestrel": "1.0.0-*"
},
"frameworks": {
"aspnet50": { },