Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit 9b131ea

Browse files
committed
Remove unused usings
1 parent 75fd215 commit 9b131ea

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/Microsoft.AspNetCore.SpaServices/Webpack/WebpackDevMiddleware.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
using System;
22
using System.IO;
33
using System.Threading;
4-
using System.Threading.Tasks;
54
using Microsoft.AspNetCore.NodeServices;
65
using Microsoft.AspNetCore.SpaServices.Webpack;
7-
using Microsoft.AspNetCore.Builder;
8-
using Microsoft.AspNetCore.Hosting;
9-
using Microsoft.Extensions.PlatformAbstractions;
106
using Newtonsoft.Json;
11-
using Microsoft.AspNetCore.Http;
127

138
namespace Microsoft.AspNetCore.Builder
149
{
@@ -54,7 +49,7 @@ public static void UseWebpackDevMiddleware(
5449
// middleware). And since this is a dev-time-only feature, it doesn't matter if the default transport isn't
5550
// as fast as some theoretical future alternative.
5651
var nodeServicesOptions = new NodeServicesOptions(appBuilder.ApplicationServices);
57-
nodeServicesOptions.WatchFileExtensions = new string[] {}; // Don't watch anything
52+
nodeServicesOptions.WatchFileExtensions = new string[] { }; // Don't watch anything
5853
if (!string.IsNullOrEmpty(options.ProjectPath))
5954
{
6055
nodeServicesOptions.ProjectPath = options.ProjectPath;

0 commit comments

Comments
 (0)