From 81ddada76b0aaba37250e3311cf8e93478ead843 Mon Sep 17 00:00:00 2001 From: moozzyk Date: Mon, 7 Nov 2016 13:16:23 -0800 Subject: [PATCH] Moving Pipe formatter to a subfolder --- samples/SocialWeather/{ => Pipe}/PipeWeatherStreamFormatter.cs | 2 +- samples/SocialWeather/Startup.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) rename samples/SocialWeather/{ => Pipe}/PipeWeatherStreamFormatter.cs (98%) diff --git a/samples/SocialWeather/PipeWeatherStreamFormatter.cs b/samples/SocialWeather/Pipe/PipeWeatherStreamFormatter.cs similarity index 98% rename from samples/SocialWeather/PipeWeatherStreamFormatter.cs rename to samples/SocialWeather/Pipe/PipeWeatherStreamFormatter.cs index ee57f17404..72c9733a7d 100644 --- a/samples/SocialWeather/PipeWeatherStreamFormatter.cs +++ b/samples/SocialWeather/Pipe/PipeWeatherStreamFormatter.cs @@ -3,7 +3,7 @@ using System.IO; using System.Text; using System.Threading.Tasks; -namespace SocialWeather +namespace SocialWeather.Pipe { public class PipeWeatherStreamFormatter : IStreamFormatter { diff --git a/samples/SocialWeather/Startup.cs b/samples/SocialWeather/Startup.cs index 4b539789f1..b5cbdd02ff 100644 --- a/samples/SocialWeather/Startup.cs +++ b/samples/SocialWeather/Startup.cs @@ -3,6 +3,7 @@ using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; +using SocialWeather.Pipe; using SocialWeather.Protobuf; namespace SocialWeather