From a88f79937291495ee4be1ace818c7d1170d545cb Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 27 Mar 2019 21:36:28 -0400 Subject: [PATCH] rename lib to core --- bitwarden-mobile.sln | 2 +- src/App/App.csproj | 4 ++-- src/{Lib => Core}/Class1.cs | 2 +- src/{Lib/Lib.csproj => Core/Core.csproj} | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) rename src/{Lib => Core}/Class1.cs (75%) rename src/{Lib/Lib.csproj => Core/Core.csproj} (77%) 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