From 342c4c44f6fa2053acec1c7271d796f9e0f98265 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Sat, 10 Feb 2018 12:44:55 -0800 Subject: [PATCH] Change namespace to avoid conflict --- src/Microsoft.AspNetCore.Sockets.Abstractions/DuplexPipe.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.AspNetCore.Sockets.Abstractions/DuplexPipe.cs b/src/Microsoft.AspNetCore.Sockets.Abstractions/DuplexPipe.cs index d751a1c8b4..8cb25722f0 100644 --- a/src/Microsoft.AspNetCore.Sockets.Abstractions/DuplexPipe.cs +++ b/src/Microsoft.AspNetCore.Sockets.Abstractions/DuplexPipe.cs @@ -1,7 +1,9 @@ // Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -namespace System.IO.Pipelines +using System.IO.Pipelines; + +namespace Microsoft.AspNetCore.Sockets { public class DuplexPipe : IDuplexPipe {