diff --git a/samples/SocialWeather/FormatterResolver.cs b/samples/SocialWeather/FormatterResolver.cs index f49d52cf43..d867a2cced 100644 --- a/samples/SocialWeather/FormatterResolver.cs +++ b/samples/SocialWeather/FormatterResolver.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; using Microsoft.Extensions.DependencyInjection; -namespace PersisitentConnection +namespace SocialWeather { public class FormatterResolver { diff --git a/samples/SocialWeather/IStreamFormatter.cs b/samples/SocialWeather/IStreamFormatter.cs index bdabddf04a..e2c1c8f7a6 100644 --- a/samples/SocialWeather/IStreamFormatter.cs +++ b/samples/SocialWeather/IStreamFormatter.cs @@ -4,7 +4,7 @@ using System.IO; using System.Linq; using System.Threading.Tasks; -namespace PersisitentConnection +namespace SocialWeather { public interface IStreamFormatter { diff --git a/samples/SocialWeather/JSonStreamFormatter.cs b/samples/SocialWeather/JSonStreamFormatter.cs index d517b97995..a6a1566fb1 100644 --- a/samples/SocialWeather/JSonStreamFormatter.cs +++ b/samples/SocialWeather/JSonStreamFormatter.cs @@ -2,7 +2,7 @@ using System.Threading.Tasks; using Newtonsoft.Json; -namespace PersisitentConnection +namespace SocialWeather { public class JsonStreamFormatter : IStreamFormatter { diff --git a/samples/SocialWeather/PersistentConnectionLifeTimeManager.cs b/samples/SocialWeather/PersistentConnectionLifeTimeManager.cs index 041a87f6e5..3962658e72 100644 --- a/samples/SocialWeather/PersistentConnectionLifeTimeManager.cs +++ b/samples/SocialWeather/PersistentConnectionLifeTimeManager.cs @@ -1,11 +1,10 @@ - -using System; +using System; using System.Collections.Generic; using System.Threading.Tasks; using Channels; using Microsoft.AspNetCore.Sockets; -namespace PersisitentConnection +namespace SocialWeather { public class PersistentConnectionLifeTimeManager { diff --git a/samples/SocialWeather/Program.cs b/samples/SocialWeather/Program.cs index e41cbe962e..b82ba17d02 100644 --- a/samples/SocialWeather/Program.cs +++ b/samples/SocialWeather/Program.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Hosting; -namespace PersisitentConnection +namespace SocialWeather { public class Program { diff --git a/samples/SocialWeather/ProtobufWeatherStreamFormatter.cs b/samples/SocialWeather/ProtobufWeatherStreamFormatter.cs index 4a9c535252..b93d6a5021 100644 --- a/samples/SocialWeather/ProtobufWeatherStreamFormatter.cs +++ b/samples/SocialWeather/ProtobufWeatherStreamFormatter.cs @@ -2,7 +2,7 @@ using System.IO; using System.Threading.Tasks; -namespace PersisitentConnection +namespace SocialWeather { public class ProtobufWeatherStreamFormatter : IStreamFormatter { diff --git a/samples/SocialWeather/SocialWeatherEndPoint.cs b/samples/SocialWeather/SocialWeatherEndPoint.cs index 5b53dba9db..c37cfd7a29 100644 --- a/samples/SocialWeather/SocialWeatherEndPoint.cs +++ b/samples/SocialWeather/SocialWeatherEndPoint.cs @@ -3,7 +3,7 @@ using Channels; using Microsoft.AspNetCore.Sockets; using Microsoft.Extensions.Logging; -namespace PersisitentConnection +namespace SocialWeather { public class SocialWeatherEndPoint : EndPoint { diff --git a/samples/SocialWeather/Startup.cs b/samples/SocialWeather/Startup.cs index 775fd588a9..51bd818956 100644 --- a/samples/SocialWeather/Startup.cs +++ b/samples/SocialWeather/Startup.cs @@ -4,7 +4,7 @@ using Microsoft.AspNetCore.Http; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; -namespace PersisitentConnection +namespace SocialWeather { public class Startup { diff --git a/samples/SocialWeather/WeatherReport.cs b/samples/SocialWeather/WeatherReport.cs index 7ed069af6b..366630698f 100644 --- a/samples/SocialWeather/WeatherReport.cs +++ b/samples/SocialWeather/WeatherReport.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -namespace PersisitentConnection +namespace SocialWeather { public enum Weather { Sunny, MostlySunny, PartlySunny, PartlyCloudy, MostlyCloudy, Cloudy }