Browse Source

move notification classes

Luke Pulverenti 8 years ago
parent
commit
0d5d91b4c4

+ 5 - 0
Emby.Server.Implementations/Emby.Server.Implementations.csproj

@@ -115,6 +115,11 @@
     <Compile Include="Library\Validators\YearsPostScanTask.cs" />
     <Compile Include="Logging\PatternsLogger.cs" />
     <Compile Include="News\NewsService.cs" />
+    <Compile Include="Notifications\CoreNotificationTypes.cs" />
+    <Compile Include="Notifications\IConfigurableNotificationService.cs" />
+    <Compile Include="Notifications\InternalNotificationService.cs" />
+    <Compile Include="Notifications\NotificationConfigurationFactory.cs" />
+    <Compile Include="Notifications\NotificationManager.cs" />
     <Compile Include="Notifications\Notifications.cs" />
     <Compile Include="Notifications\WebSocketNotifier.cs" />
     <Compile Include="Persistence\CleanDatabaseScheduledTask.cs" />

+ 1 - 1
MediaBrowser.Server.Implementations/Notifications/CoreNotificationTypes.cs → Emby.Server.Implementations/Notifications/CoreNotificationTypes.cs

@@ -6,7 +6,7 @@ using System.Collections.Generic;
 using System.Linq;
 using MediaBrowser.Model.Globalization;
 
-namespace MediaBrowser.Server.Implementations.Notifications
+namespace Emby.Server.Implementations.Notifications
 {
     public class CoreNotificationTypes : INotificationTypeFactory
     {

+ 1 - 1
MediaBrowser.Server.Implementations/Notifications/IConfigurableNotificationService.cs → Emby.Server.Implementations/Notifications/IConfigurableNotificationService.cs

@@ -1,4 +1,4 @@
-namespace MediaBrowser.Server.Implementations.Notifications
+namespace Emby.Server.Implementations.Notifications
 {
     public interface IConfigurableNotificationService
     {

+ 1 - 1
MediaBrowser.Server.Implementations/Notifications/InternalNotificationService.cs → Emby.Server.Implementations/Notifications/InternalNotificationService.cs

@@ -5,7 +5,7 @@ using System.Threading;
 using System.Threading.Tasks;
 using System;
 
-namespace MediaBrowser.Server.Implementations.Notifications
+namespace Emby.Server.Implementations.Notifications
 {
     public class InternalNotificationService : INotificationService, IConfigurableNotificationService
     {

+ 1 - 1
MediaBrowser.Server.Implementations/Notifications/NotificationConfigurationFactory.cs → Emby.Server.Implementations/Notifications/NotificationConfigurationFactory.cs

@@ -2,7 +2,7 @@
 using MediaBrowser.Model.Notifications;
 using System.Collections.Generic;
 
-namespace MediaBrowser.Server.Implementations.Notifications
+namespace Emby.Server.Implementations.Notifications
 {
     public class NotificationConfigurationFactory : IConfigurationFactory
     {

+ 1 - 1
MediaBrowser.Server.Implementations/Notifications/NotificationManager.cs → Emby.Server.Implementations/Notifications/NotificationManager.cs

@@ -13,7 +13,7 @@ using System.Threading;
 using System.Threading.Tasks;
 using MediaBrowser.Model.Extensions;
 
-namespace MediaBrowser.Server.Implementations.Notifications
+namespace Emby.Server.Implementations.Notifications
 {
     public class NotificationManager : INotificationManager
     {

+ 0 - 5
MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj

@@ -212,7 +212,6 @@
     <Compile Include="Logging\PatternsLogger.cs" />
     <Compile Include="MediaEncoder\EncodingManager.cs" />
     <Compile Include="News\NewsEntryPoint.cs" />
-    <Compile Include="Notifications\IConfigurableNotificationService.cs" />
     <Compile Include="Persistence\BaseSqliteRepository.cs" />
     <Compile Include="Persistence\DataExtensions.cs" />
     <Compile Include="Persistence\IDbConnector.cs" />
@@ -230,10 +229,6 @@
     <Compile Include="TextEncoding\TextEncoding.cs" />
     <Compile Include="Threading\PeriodicTimer.cs" />
     <Compile Include="TV\SeriesPostScanTask.cs" />
-    <Compile Include="Notifications\CoreNotificationTypes.cs" />
-    <Compile Include="Notifications\InternalNotificationService.cs" />
-    <Compile Include="Notifications\NotificationConfigurationFactory.cs" />
-    <Compile Include="Notifications\NotificationManager.cs" />
     <Compile Include="Persistence\SqliteFileOrganizationRepository.cs" />
     <Compile Include="Notifications\SqliteNotificationsRepository.cs" />
     <Compile Include="Persistence\TypeMapper.cs" />

+ 1 - 0
MediaBrowser.Server.Startup.Common/ApplicationHost.cs

@@ -107,6 +107,7 @@ using Emby.Server.Implementations.Devices;
 using Emby.Server.Implementations.Dto;
 using Emby.Server.Implementations.FileOrganization;
 using Emby.Server.Implementations.Library;
+using Emby.Server.Implementations.Notifications;
 using Emby.Server.Implementations.Persistence;
 using Emby.Server.Implementations.Playlists;
 using Emby.Server.Implementations.TV;