Remove WebListener and WebSockets from sample due to dependencies.
This commit is contained in:
parent
1fc591921b
commit
1e9c6007a9
|
|
@ -1,3 +1,3 @@
|
||||||
|
|
||||||
Server = Microsoft.AspNet.Server.WebListener
|
Server = Kestrel
|
||||||
Server.Urls = http://localhost:5000/
|
Server.Urls = http://localhost:5000/
|
||||||
|
|
|
||||||
|
|
@ -11,8 +11,6 @@ namespace SampleApp
|
||||||
{
|
{
|
||||||
public void Configure(IApplicationBuilder app)
|
public void Configure(IApplicationBuilder app)
|
||||||
{
|
{
|
||||||
app.UseWebSockets();
|
|
||||||
|
|
||||||
app.Run(async context =>
|
app.Run(async context =>
|
||||||
{
|
{
|
||||||
Console.WriteLine("{0} {1}{2}{3}",
|
Console.WriteLine("{0} {1}{2}{3}",
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,7 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Kestrel": "1.0.0-*",
|
"Kestrel": "1.0.0-*"
|
||||||
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
|
|
||||||
"Microsoft.AspNet.WebSockets.Server": "1.0.0-*"
|
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"aspnet50": { },
|
"aspnet50": { },
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue