Remove obsolete InputOutputStream transport, now that the Stream transport is implemented

This commit is contained in:
SteveSandersonMS
2016-06-01 17:03:05 +01:00
parent 50ee405656
commit f2e89fd3bc
5 changed files with 1 additions and 112 deletions

View File

@@ -41,8 +41,6 @@ namespace Microsoft.AspNetCore.NodeServices
return new HttpNodeInstance(options.ProjectPath, /* port */ 0, watchFileExtensions);
case NodeHostingModel.Socket:
return new SocketNodeInstance(options.ProjectPath, watchFileExtensions);
case NodeHostingModel.InputOutputStream:
return new InputOutputStreamNodeInstance(options.ProjectPath);
default:
throw new ArgumentException("Unknown hosting model: " + options.HostingModel);
}