diff --git a/.gitignore b/.gitignore index d84a951..9cce489 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,6 @@ /Server/bin/Debug /Server/obj/Debug /.vs/RedpilledOuttaCucktown/v15 +/Common/bin/Debug +/.vs/ServerProject/v15/Server/sqlite3 +/Common/obj/Debug diff --git a/RedpilledOuttaCucktown/AES.cs b/Common/AES.cs similarity index 100% rename from RedpilledOuttaCucktown/AES.cs rename to Common/AES.cs diff --git a/RedpilledOuttaCucktown/App.config b/Common/App.config similarity index 100% rename from RedpilledOuttaCucktown/App.config rename to Common/App.config diff --git a/RedpilledOuttaCucktown/Common.csproj b/Common/Common.csproj similarity index 100% rename from RedpilledOuttaCucktown/Common.csproj rename to Common/Common.csproj diff --git a/RedpilledOuttaCucktown/KDF.cs b/Common/KDF.cs similarity index 100% rename from RedpilledOuttaCucktown/KDF.cs rename to Common/KDF.cs diff --git a/RedpilledOuttaCucktown/Maths.cs b/Common/Maths.cs similarity index 100% rename from RedpilledOuttaCucktown/Maths.cs rename to Common/Maths.cs diff --git a/RedpilledOuttaCucktown/Net.cs b/Common/Net.cs similarity index 100% rename from RedpilledOuttaCucktown/Net.cs rename to Common/Net.cs diff --git a/RedpilledOuttaCucktown/Padding.cs b/Common/Padding.cs similarity index 100% rename from RedpilledOuttaCucktown/Padding.cs rename to Common/Padding.cs diff --git a/RedpilledOuttaCucktown/Properties/AssemblyInfo.cs b/Common/Properties/AssemblyInfo.cs similarity index 100% rename from RedpilledOuttaCucktown/Properties/AssemblyInfo.cs rename to Common/Properties/AssemblyInfo.cs diff --git a/RedpilledOuttaCucktown/RSA.cs b/Common/RSA.cs similarity index 100% rename from RedpilledOuttaCucktown/RSA.cs rename to Common/RSA.cs diff --git a/RedpilledOuttaCucktown/SHA.cs b/Common/SHA.cs similarity index 100% rename from RedpilledOuttaCucktown/SHA.cs rename to Common/SHA.cs diff --git a/RedpilledOuttaCucktown/Support.cs b/Common/Support.cs similarity index 100% rename from RedpilledOuttaCucktown/Support.cs rename to Common/Support.cs diff --git a/RedpilledOuttaCucktown.sln b/ServerProject.sln similarity index 92% rename from RedpilledOuttaCucktown.sln rename to ServerProject.sln index 325ee1d..c9f310c 100644 --- a/RedpilledOuttaCucktown.sln +++ b/ServerProject.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.27130.2020 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common", "RedpilledOuttaCucktown\Common.csproj", "{216005DE-C35B-4CD3-8D27-0A49DEEDE62C}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common", "Common\Common.csproj", "{216005DE-C35B-4CD3-8D27-0A49DEEDE62C}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server", "Server\Server.csproj", "{4C426072-E087-431B-A8BC-4BA675C6D06A}" EndProject