From 9e3ee500201d9cd01fffc7f9415922a1b028b506 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 9 Apr 2019 17:10:56 -0400 Subject: [PATCH] move some xamarin specific services to app proj --- src/App/App.csproj | 1 + src/{Core => App}/Services/MobileStorageService.cs | 5 +++-- src/{Core => App}/Services/PreferencesStorageService.cs | 2 +- src/{Core => App}/Services/SecureStorageService.cs | 2 +- src/Core/Core.csproj | 1 - 5 files changed, 6 insertions(+), 5 deletions(-) rename src/{Core => App}/Services/MobileStorageService.cs (95%) rename src/{Core => App}/Services/PreferencesStorageService.cs (99%) rename src/{Core => App}/Services/SecureStorageService.cs (98%) 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 @@ -