From 8501b0670b66075df6e7857977c790eb70f57bcd Mon Sep 17 00:00:00 2001 From: Evan Hemsley <2342303+ehemsley@users.noreply.github.com> Date: Wed, 19 Jun 2019 11:19:18 -0700 Subject: [PATCH] rearrange project --- encompass-cs.sln | 13 ++-- {src => encompass-cs}/.gitignore | 0 {src => encompass-cs}/ComponentManager.cs | 0 {src => encompass-cs}/Engine.cs | 0 {src => encompass-cs}/Entity.cs | 0 {src => encompass-cs}/EntityManager.cs | 0 {src => encompass-cs}/IComponent.cs | 0 {src => encompass-cs}/IMessage.cs | 0 {src => encompass-cs}/MessageManager.cs | 0 {src => encompass-cs}/World.cs | 0 {src => encompass-cs}/WorldBuilder.cs | 0 {src => encompass-cs}/attributes/Emits.cs | 0 {src => encompass-cs}/attributes/Mutates.cs | 0 {src => encompass-cs}/attributes/Reads.cs | 0 {src => encompass-cs}/encompass-cs.csproj | 74 +++++++++---------- .../exceptions/EngineCycleException.cs | 0 .../EngineMutationConflictException.cs | 0 .../IllegalComponentMutationException.cs | 0 .../exceptions/IllegalMessageEmitException.cs | 0 .../exceptions/IllegalMessageReadException.cs | 0 {src => encompass-cs}/graph/DirectedGraph.cs | 0 test/test.csproj | 4 +- 22 files changed, 47 insertions(+), 44 deletions(-) rename {src => encompass-cs}/.gitignore (100%) rename {src => encompass-cs}/ComponentManager.cs (100%) rename {src => encompass-cs}/Engine.cs (100%) rename {src => encompass-cs}/Entity.cs (100%) rename {src => encompass-cs}/EntityManager.cs (100%) rename {src => encompass-cs}/IComponent.cs (100%) rename {src => encompass-cs}/IMessage.cs (100%) rename {src => encompass-cs}/MessageManager.cs (100%) rename {src => encompass-cs}/World.cs (100%) rename {src => encompass-cs}/WorldBuilder.cs (100%) rename {src => encompass-cs}/attributes/Emits.cs (100%) rename {src => encompass-cs}/attributes/Mutates.cs (100%) rename {src => encompass-cs}/attributes/Reads.cs (100%) rename {src => encompass-cs}/encompass-cs.csproj (95%) rename {src => encompass-cs}/exceptions/EngineCycleException.cs (100%) rename {src => encompass-cs}/exceptions/EngineMutationConflictException.cs (100%) rename {src => encompass-cs}/exceptions/IllegalComponentMutationException.cs (100%) rename {src => encompass-cs}/exceptions/IllegalMessageEmitException.cs (100%) rename {src => encompass-cs}/exceptions/IllegalMessageReadException.cs (100%) rename {src => encompass-cs}/graph/DirectedGraph.cs (100%) diff --git a/encompass-cs.sln b/encompass-cs.sln index c4708ac..a217305 100644 --- a/encompass-cs.sln +++ b/encompass-cs.sln @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.26124.0 MinimumVisualStudioVersion = 15.0.26124.0 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "encompass-cs", "src\encompass-cs.csproj", "{B862FC25-0740-4CEA-BC53-3C5F43DCD985}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "encompass-cs", "encompass-cs\encompass-cs.csproj", "{B862FC25-0740-4CEA-BC53-3C5F43DCD985}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test", "test\test.csproj", "{23D6C29C-A310-4D3E-8455-8D0B8CA1FC06}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "test", "test\test.csproj", "{23D6C29C-A310-4D3E-8455-8D0B8CA1FC06}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -16,9 +16,6 @@ Global Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {B862FC25-0740-4CEA-BC53-3C5F43DCD985}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {B862FC25-0740-4CEA-BC53-3C5F43DCD985}.Debug|Any CPU.Build.0 = Debug|Any CPU @@ -45,4 +42,10 @@ Global {23D6C29C-A310-4D3E-8455-8D0B8CA1FC06}.Release|x86.ActiveCfg = Release|Any CPU {23D6C29C-A310-4D3E-8455-8D0B8CA1FC06}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {245F6C1B-676C-424E-80D9-518029E7B594} + EndGlobalSection EndGlobal diff --git a/src/.gitignore b/encompass-cs/.gitignore similarity index 100% rename from src/.gitignore rename to encompass-cs/.gitignore diff --git a/src/ComponentManager.cs b/encompass-cs/ComponentManager.cs similarity index 100% rename from src/ComponentManager.cs rename to encompass-cs/ComponentManager.cs diff --git a/src/Engine.cs b/encompass-cs/Engine.cs similarity index 100% rename from src/Engine.cs rename to encompass-cs/Engine.cs diff --git a/src/Entity.cs b/encompass-cs/Entity.cs similarity index 100% rename from src/Entity.cs rename to encompass-cs/Entity.cs diff --git a/src/EntityManager.cs b/encompass-cs/EntityManager.cs similarity index 100% rename from src/EntityManager.cs rename to encompass-cs/EntityManager.cs diff --git a/src/IComponent.cs b/encompass-cs/IComponent.cs similarity index 100% rename from src/IComponent.cs rename to encompass-cs/IComponent.cs diff --git a/src/IMessage.cs b/encompass-cs/IMessage.cs similarity index 100% rename from src/IMessage.cs rename to encompass-cs/IMessage.cs diff --git a/src/MessageManager.cs b/encompass-cs/MessageManager.cs similarity index 100% rename from src/MessageManager.cs rename to encompass-cs/MessageManager.cs diff --git a/src/World.cs b/encompass-cs/World.cs similarity index 100% rename from src/World.cs rename to encompass-cs/World.cs diff --git a/src/WorldBuilder.cs b/encompass-cs/WorldBuilder.cs similarity index 100% rename from src/WorldBuilder.cs rename to encompass-cs/WorldBuilder.cs diff --git a/src/attributes/Emits.cs b/encompass-cs/attributes/Emits.cs similarity index 100% rename from src/attributes/Emits.cs rename to encompass-cs/attributes/Emits.cs diff --git a/src/attributes/Mutates.cs b/encompass-cs/attributes/Mutates.cs similarity index 100% rename from src/attributes/Mutates.cs rename to encompass-cs/attributes/Mutates.cs diff --git a/src/attributes/Reads.cs b/encompass-cs/attributes/Reads.cs similarity index 100% rename from src/attributes/Reads.cs rename to encompass-cs/attributes/Reads.cs diff --git a/src/encompass-cs.csproj b/encompass-cs/encompass-cs.csproj similarity index 95% rename from src/encompass-cs.csproj rename to encompass-cs/encompass-cs.csproj index 09d2e7d..6e91e76 100644 --- a/src/encompass-cs.csproj +++ b/encompass-cs/encompass-cs.csproj @@ -1,38 +1,38 @@ - - - - netstandard2.0 - Encompass - EncompassECS.Framework - 0.1.0 - Evan Hemsley - true - Moonside Games - Encompass ECS - https://github.com/encompass-ecs - https://lynnesbian.space/csl/plain/ - Evan Hemsley 2019 - Encompass is an engine-agnostic Hyper ECS framework to help you code games, or other kinds of simulations. - - - - - - - - - - - - - - - - - - - - - - + + + + netstandard2.0 + Encompass + EncompassECS.Framework + 0.1.0 + Evan Hemsley + true + Moonside Games + Encompass ECS + https://github.com/encompass-ecs + https://lynnesbian.space/csl/plain/ + Evan Hemsley 2019 + Encompass is an engine-agnostic Hyper ECS framework to help you code games, or other kinds of simulations. + true + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/exceptions/EngineCycleException.cs b/encompass-cs/exceptions/EngineCycleException.cs similarity index 100% rename from src/exceptions/EngineCycleException.cs rename to encompass-cs/exceptions/EngineCycleException.cs diff --git a/src/exceptions/EngineMutationConflictException.cs b/encompass-cs/exceptions/EngineMutationConflictException.cs similarity index 100% rename from src/exceptions/EngineMutationConflictException.cs rename to encompass-cs/exceptions/EngineMutationConflictException.cs diff --git a/src/exceptions/IllegalComponentMutationException.cs b/encompass-cs/exceptions/IllegalComponentMutationException.cs similarity index 100% rename from src/exceptions/IllegalComponentMutationException.cs rename to encompass-cs/exceptions/IllegalComponentMutationException.cs diff --git a/src/exceptions/IllegalMessageEmitException.cs b/encompass-cs/exceptions/IllegalMessageEmitException.cs similarity index 100% rename from src/exceptions/IllegalMessageEmitException.cs rename to encompass-cs/exceptions/IllegalMessageEmitException.cs diff --git a/src/exceptions/IllegalMessageReadException.cs b/encompass-cs/exceptions/IllegalMessageReadException.cs similarity index 100% rename from src/exceptions/IllegalMessageReadException.cs rename to encompass-cs/exceptions/IllegalMessageReadException.cs diff --git a/src/graph/DirectedGraph.cs b/encompass-cs/graph/DirectedGraph.cs similarity index 100% rename from src/graph/DirectedGraph.cs rename to encompass-cs/graph/DirectedGraph.cs diff --git a/test/test.csproj b/test/test.csproj index a294604..72809a8 100644 --- a/test/test.csproj +++ b/test/test.csproj @@ -9,12 +9,12 @@ - - + + \ No newline at end of file