diff --git a/Emby.Server.Implementations/Emby.Server.Implementations.csproj b/Emby.Server.Implementations/Emby.Server.Implementations.csproj
index 567c9b99e..18e357679 100644
--- a/Emby.Server.Implementations/Emby.Server.Implementations.csproj
+++ b/Emby.Server.Implementations/Emby.Server.Implementations.csproj
@@ -115,6 +115,11 @@
+
+
+
+
+
diff --git a/MediaBrowser.Server.Implementations/Notifications/CoreNotificationTypes.cs b/Emby.Server.Implementations/Notifications/CoreNotificationTypes.cs
similarity index 99%
rename from MediaBrowser.Server.Implementations/Notifications/CoreNotificationTypes.cs
rename to Emby.Server.Implementations/Notifications/CoreNotificationTypes.cs
index 0f2629f58..f9fb98f85 100644
--- a/MediaBrowser.Server.Implementations/Notifications/CoreNotificationTypes.cs
+++ b/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
{
diff --git a/MediaBrowser.Server.Implementations/Notifications/IConfigurableNotificationService.cs b/Emby.Server.Implementations/Notifications/IConfigurableNotificationService.cs
similarity index 70%
rename from MediaBrowser.Server.Implementations/Notifications/IConfigurableNotificationService.cs
rename to Emby.Server.Implementations/Notifications/IConfigurableNotificationService.cs
index cdfd0f640..d74667c48 100644
--- a/MediaBrowser.Server.Implementations/Notifications/IConfigurableNotificationService.cs
+++ b/Emby.Server.Implementations/Notifications/IConfigurableNotificationService.cs
@@ -1,4 +1,4 @@
-namespace MediaBrowser.Server.Implementations.Notifications
+namespace Emby.Server.Implementations.Notifications
{
public interface IConfigurableNotificationService
{
diff --git a/MediaBrowser.Server.Implementations/Notifications/InternalNotificationService.cs b/Emby.Server.Implementations/Notifications/InternalNotificationService.cs
similarity index 96%
rename from MediaBrowser.Server.Implementations/Notifications/InternalNotificationService.cs
rename to Emby.Server.Implementations/Notifications/InternalNotificationService.cs
index 4a625f0fb..61c564f18 100644
--- a/MediaBrowser.Server.Implementations/Notifications/InternalNotificationService.cs
+++ b/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
{
diff --git a/MediaBrowser.Server.Implementations/Notifications/NotificationConfigurationFactory.cs b/Emby.Server.Implementations/Notifications/NotificationConfigurationFactory.cs
similarity index 90%
rename from MediaBrowser.Server.Implementations/Notifications/NotificationConfigurationFactory.cs
rename to Emby.Server.Implementations/Notifications/NotificationConfigurationFactory.cs
index a336eba0e..a7c5b1233 100644
--- a/MediaBrowser.Server.Implementations/Notifications/NotificationConfigurationFactory.cs
+++ b/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
{
diff --git a/MediaBrowser.Server.Implementations/Notifications/NotificationManager.cs b/Emby.Server.Implementations/Notifications/NotificationManager.cs
similarity index 99%
rename from MediaBrowser.Server.Implementations/Notifications/NotificationManager.cs
rename to Emby.Server.Implementations/Notifications/NotificationManager.cs
index f19ff8a5f..db7980497 100644
--- a/MediaBrowser.Server.Implementations/Notifications/NotificationManager.cs
+++ b/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
{
diff --git a/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj b/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj
index 3fb3ca883..95285d604 100644
--- a/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj
+++ b/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj
@@ -212,7 +212,6 @@
-
@@ -230,10 +229,6 @@
-
-
-
-
diff --git a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs
index 7c8945ff2..294e780cc 100644
--- a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs
+++ b/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;