Fixing namespace

This commit is contained in:
Pawel Kadluczka 2016-11-05 22:20:23 -07:00 committed by moozzyk
parent 41c4211c6b
commit 08cd20f1a0
9 changed files with 10 additions and 11 deletions

View File

@ -3,7 +3,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
namespace PersisitentConnection namespace SocialWeather
{ {
public class FormatterResolver public class FormatterResolver
{ {

View File

@ -4,7 +4,7 @@ using System.IO;
using System.Linq; using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PersisitentConnection namespace SocialWeather
{ {
public interface IStreamFormatter<T> public interface IStreamFormatter<T>
{ {

View File

@ -2,7 +2,7 @@
using System.Threading.Tasks; using System.Threading.Tasks;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace PersisitentConnection namespace SocialWeather
{ {
public class JsonStreamFormatter<T> : IStreamFormatter<T> public class JsonStreamFormatter<T> : IStreamFormatter<T>
{ {

View File

@ -1,11 +1,10 @@
 using System;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks; using System.Threading.Tasks;
using Channels; using Channels;
using Microsoft.AspNetCore.Sockets; using Microsoft.AspNetCore.Sockets;
namespace PersisitentConnection namespace SocialWeather
{ {
public class PersistentConnectionLifeTimeManager public class PersistentConnectionLifeTimeManager
{ {

View File

@ -5,7 +5,7 @@ using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Hosting;
namespace PersisitentConnection namespace SocialWeather
{ {
public class Program public class Program
{ {

View File

@ -2,7 +2,7 @@
using System.IO; using System.IO;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PersisitentConnection namespace SocialWeather
{ {
public class ProtobufWeatherStreamFormatter : IStreamFormatter<WeatherReport> public class ProtobufWeatherStreamFormatter : IStreamFormatter<WeatherReport>
{ {

View File

@ -3,7 +3,7 @@ using Channels;
using Microsoft.AspNetCore.Sockets; using Microsoft.AspNetCore.Sockets;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
namespace PersisitentConnection namespace SocialWeather
{ {
public class SocialWeatherEndPoint : EndPoint public class SocialWeatherEndPoint : EndPoint
{ {

View File

@ -4,7 +4,7 @@ using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
namespace PersisitentConnection namespace SocialWeather
{ {
public class Startup public class Startup
{ {

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace PersisitentConnection namespace SocialWeather
{ {
public enum Weather { Sunny, MostlySunny, PartlySunny, PartlyCloudy, MostlyCloudy, Cloudy } public enum Weather { Sunny, MostlySunny, PartlySunny, PartlyCloudy, MostlyCloudy, Cloudy }