Skip to content

Commit

Permalink
Move constants to own common project
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaioru committed Oct 12, 2023
1 parent 7a9ed64 commit 6965a68
Show file tree
Hide file tree
Showing 16 changed files with 19 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Edelstein.sln
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Edelstein.Protocol.Services
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Edelstein.Common.Services.Social", "src\common\Edelstein.Common.Services.Social\Edelstein.Common.Services.Social.csproj", "{3FA5F4D2-519A-438D-B7AB-CF1D52C5A7D8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Edelstein.Common.Constants", "src\common\Edelstein.Common.Constants\Edelstein.Common.Constants.csproj", "{EFAF05A4-B54F-4B30-96C6-A7CDC2C2A81A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -137,6 +139,7 @@ Global
{D7A9F029-E2A7-4D4E-A153-54C3A322F482} = {52AE6DEF-E54C-47DC-85F3-8AF3C6FCD504}
{0731AA3B-FE03-4456-BD86-C7D6412B40B5} = {7F8DD283-A64C-40EC-98F2-84FA38716C28}
{3FA5F4D2-519A-438D-B7AB-CF1D52C5A7D8} = {52AE6DEF-E54C-47DC-85F3-8AF3C6FCD504}
{EFAF05A4-B54F-4B30-96C6-A7CDC2C2A81A} = {52AE6DEF-E54C-47DC-85F3-8AF3C6FCD504}
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{23073F7B-2195-482E-B3E8-DBCB6BEB587A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
Expand Down Expand Up @@ -267,5 +270,9 @@ Global
{3FA5F4D2-519A-438D-B7AB-CF1D52C5A7D8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3FA5F4D2-519A-438D-B7AB-CF1D52C5A7D8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3FA5F4D2-519A-438D-B7AB-CF1D52C5A7D8}.Release|Any CPU.Build.0 = Release|Any CPU
{EFAF05A4-B54F-4B30-96C6-A7CDC2C2A81A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EFAF05A4-B54F-4B30-96C6-A7CDC2C2A81A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EFAF05A4-B54F-4B30-96C6-A7CDC2C2A81A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EFAF05A4-B54F-4B30-96C6-A7CDC2C2A81A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\Common.targets"/>

<ItemGroup>
<ProjectReference Include="..\..\protocol\Edelstein.Protocol.Gameplay\Edelstein.Protocol.Gameplay.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<ItemGroup>
<ProjectReference Include="..\..\protocol\Edelstein.Protocol.Gameplay.Game\Edelstein.Protocol.Gameplay.Game.csproj" />
<ProjectReference Include="..\..\protocol\Edelstein.Protocol.Scripting\Edelstein.Protocol.Scripting.csproj" />
<ProjectReference Include="..\Edelstein.Common.Constants\Edelstein.Common.Constants.csproj" />
<ProjectReference Include="..\Edelstein.Common.Gameplay\Edelstein.Common.Gameplay.csproj" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<ProjectReference Include="..\..\protocol\Edelstein.Protocol.Gameplay\Edelstein.Protocol.Gameplay.csproj" />
<ProjectReference Include="..\..\protocol\Edelstein.Protocol.Services.Server\Edelstein.Protocol.Services.Server.csproj" />
<ProjectReference Include="..\..\protocol\Edelstein.Protocol.Services.Social\Edelstein.Protocol.Services.Social.csproj" />
<ProjectReference Include="..\Edelstein.Common.Constants\Edelstein.Common.Constants.csproj" />
<ProjectReference Include="..\Edelstein.Common.Utilities\Edelstein.Common.Utilities.csproj" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\Plugin.targets" />

<ItemGroup>
<ProjectReference Include="..\..\common\Edelstein.Common.Gameplay\Edelstein.Common.Gameplay.csproj" />
<ProjectReference Include="..\..\common\Edelstein.Common.Constants\Edelstein.Common.Constants.csproj" />
<ProjectReference Include="..\..\common\Edelstein.Common.Utilities\Edelstein.Common.Utilities.csproj" />
<ProjectReference Include="..\..\protocol\Edelstein.Protocol.Plugin.Game\Edelstein.Protocol.Plugin.Game.csproj" />
<ProjectReference Include="..\..\protocol\Edelstein.Protocol.Plugin.Login\Edelstein.Protocol.Plugin.Login.csproj" />
Expand Down

0 comments on commit 6965a68

Please sign in to comment.