diff --git a/bitwarden-mobile.sln b/bitwarden-mobile.sln index eea1b3135..f97d6f4e8 100644 --- a/bitwarden-mobile.sln +++ b/bitwarden-mobile.sln @@ -9,7 +9,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "iOS", "src\iOS\iOS.csproj", EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "App", "src\App\App.csproj", "{EE44C6A1-2A85-45FE-8D9B-BF1D5F88809C}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lib", "src\Lib\Lib.csproj", "{4B8A8C41-9820-4341-974C-41E65B7F4366}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Core", "src\Core\Core.csproj", "{4B8A8C41-9820-4341-974C-41E65B7F4366}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/src/App/App.csproj b/src/App/App.csproj index 790493f40..d28f8056d 100644 --- a/src/App/App.csproj +++ b/src/App/App.csproj @@ -1,4 +1,4 @@ - + netstandard2.0 @@ -16,6 +16,6 @@ - + \ No newline at end of file diff --git a/src/Lib/Class1.cs b/src/Core/Class1.cs similarity index 75% rename from src/Lib/Class1.cs rename to src/Core/Class1.cs index 20f71ab1a..339029672 100644 --- a/src/Lib/Class1.cs +++ b/src/Core/Class1.cs @@ -1,6 +1,6 @@ using System; -namespace Bit.Lib +namespace Bit.Core { public class Class1 { diff --git a/src/Lib/Lib.csproj b/src/Core/Core.csproj similarity index 77% rename from src/Lib/Lib.csproj rename to src/Core/Core.csproj index fd1aa340a..9debb9d66 100644 --- a/src/Lib/Lib.csproj +++ b/src/Core/Core.csproj @@ -2,8 +2,8 @@ netstandard2.0 - Bit.Lib - BitwardenLib + Bit.Core + BitwardenCore