From 9b131ea7d3f9e1af1cc74d20183ebb7ee58bc5a5 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Sat, 27 May 2017 18:58:17 -0700 Subject: [PATCH] Remove unused usings --- .../Webpack/WebpackDevMiddleware.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/Microsoft.AspNetCore.SpaServices/Webpack/WebpackDevMiddleware.cs b/src/Microsoft.AspNetCore.SpaServices/Webpack/WebpackDevMiddleware.cs index fa9be00..8afd7b6 100644 --- a/src/Microsoft.AspNetCore.SpaServices/Webpack/WebpackDevMiddleware.cs +++ b/src/Microsoft.AspNetCore.SpaServices/Webpack/WebpackDevMiddleware.cs @@ -1,14 +1,9 @@ using System; using System.IO; using System.Threading; -using System.Threading.Tasks; using Microsoft.AspNetCore.NodeServices; using Microsoft.AspNetCore.SpaServices.Webpack; -using Microsoft.AspNetCore.Builder; -using Microsoft.AspNetCore.Hosting; -using Microsoft.Extensions.PlatformAbstractions; using Newtonsoft.Json; -using Microsoft.AspNetCore.Http; namespace Microsoft.AspNetCore.Builder { @@ -54,7 +49,7 @@ namespace Microsoft.AspNetCore.Builder // middleware). And since this is a dev-time-only feature, it doesn't matter if the default transport isn't // as fast as some theoretical future alternative. var nodeServicesOptions = new NodeServicesOptions(appBuilder.ApplicationServices); - nodeServicesOptions.WatchFileExtensions = new string[] {}; // Don't watch anything + nodeServicesOptions.WatchFileExtensions = new string[] { }; // Don't watch anything if (!string.IsNullOrEmpty(options.ProjectPath)) { nodeServicesOptions.ProjectPath = options.ProjectPath;