diff --git a/src/App/App.csproj b/src/App/App.csproj index 6042f36ea..719f6c0c0 100644 --- a/src/App/App.csproj +++ b/src/App/App.csproj @@ -12,6 +12,7 @@ + diff --git a/src/Core/Services/MobileStorageService.cs b/src/App/Services/MobileStorageService.cs similarity index 95% rename from src/Core/Services/MobileStorageService.cs rename to src/App/Services/MobileStorageService.cs index 3bf1b77e0..c74eb52c4 100644 --- a/src/Core/Services/MobileStorageService.cs +++ b/src/App/Services/MobileStorageService.cs @@ -1,8 +1,9 @@ -using Bit.Core.Abstractions; +using Bit.Core; +using Bit.Core.Abstractions; using System.Collections.Generic; using System.Threading.Tasks; -namespace Bit.Core.Services +namespace Bit.App.Services { public class MobileStorageService : IStorageService { diff --git a/src/Core/Services/PreferencesStorageService.cs b/src/App/Services/PreferencesStorageService.cs similarity index 99% rename from src/Core/Services/PreferencesStorageService.cs rename to src/App/Services/PreferencesStorageService.cs index 3cf7d397e..f458cbdb8 100644 --- a/src/Core/Services/PreferencesStorageService.cs +++ b/src/App/Services/PreferencesStorageService.cs @@ -4,7 +4,7 @@ using Newtonsoft.Json.Serialization; using System; using System.Threading.Tasks; -namespace Bit.Core.Services +namespace Bit.App.Services { public class PreferencesStorageService : IStorageService { diff --git a/src/Core/Services/SecureStorageService.cs b/src/App/Services/SecureStorageService.cs similarity index 98% rename from src/Core/Services/SecureStorageService.cs rename to src/App/Services/SecureStorageService.cs index a79c5a33c..09434e021 100644 --- a/src/Core/Services/SecureStorageService.cs +++ b/src/App/Services/SecureStorageService.cs @@ -3,7 +3,7 @@ using Newtonsoft.Json; using Newtonsoft.Json.Serialization; using System.Threading.Tasks; -namespace Bit.Core.Services +namespace Bit.App.Services { public class SecureStorageService : IStorageService { diff --git a/src/Core/Core.csproj b/src/Core/Core.csproj index 40a82c9af..e34bf8278 100644 --- a/src/Core/Core.csproj +++ b/src/Core/Core.csproj @@ -15,7 +15,6 @@ -