rearrange project
parent
ac78525e71
commit
8501b0670b
|
@ -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
|
||||
|
|
|
@ -1,38 +1,38 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
<RootNamespace>Encompass</RootNamespace>
|
||||
<PackageId>EncompassECS.Framework</PackageId>
|
||||
<Version>0.1.0</Version>
|
||||
<Authors>Evan Hemsley</Authors>
|
||||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
||||
<Company>Moonside Games</Company>
|
||||
<Product>Encompass ECS</Product>
|
||||
<PackageProjectUrl>https://github.com/encompass-ecs</PackageProjectUrl>
|
||||
<PackageLicenseUrl>https://lynnesbian.space/csl/plain/</PackageLicenseUrl>
|
||||
<Copyright>Evan Hemsley 2019</Copyright>
|
||||
<Description>Encompass is an engine-agnostic Hyper ECS framework to help you code games, or other kinds of simulations.</Description>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="encompass-cs.sln" />
|
||||
<Content Include="Entity.cs" />
|
||||
<Content Include="World.cs" />
|
||||
<Content Include="EntityManager.cs" />
|
||||
<Content Include="ComponentManager.cs" />
|
||||
<Content Include="WorldBuilder.cs" />
|
||||
<Content Include="Engine.cs" />
|
||||
<Content Include="attributes\Mutates.cs" />
|
||||
<Content Include="exceptions\IllegalComponentMutationException.cs" />
|
||||
<Content Include="graph\DirectedGraph.cs" />
|
||||
<Content Include="IComponent.cs" />
|
||||
<Content Include="IMessage.cs" />
|
||||
<Content Include="MessageManager.cs" />
|
||||
<Content Include="attributes\Emits.cs" />
|
||||
<Content Include="exceptions\IllegalMessageEmitException.cs" />
|
||||
<Content Include="exceptions\IllegalMessageReadException.cs" />
|
||||
<Content Include="exceptions\EngineCycleException.cs" />
|
||||
<Content Include="exceptions\EngineMutationConflictException.cs" />
|
||||
<Content Include="attributes\Reads.cs" />
|
||||
</ItemGroup>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
<RootNamespace>Encompass</RootNamespace>
|
||||
<PackageId>EncompassECS.Framework</PackageId>
|
||||
<Version>0.1.0</Version>
|
||||
<Authors>Evan Hemsley</Authors>
|
||||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
||||
<Company>Moonside Games</Company>
|
||||
<Product>Encompass ECS</Product>
|
||||
<PackageProjectUrl>https://github.com/encompass-ecs</PackageProjectUrl>
|
||||
<PackageLicenseUrl>https://lynnesbian.space/csl/plain/</PackageLicenseUrl>
|
||||
<Copyright>Evan Hemsley 2019</Copyright>
|
||||
<Description>Encompass is an engine-agnostic Hyper ECS framework to help you code games, or other kinds of simulations.</Description>
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Entity.cs" />
|
||||
<Content Include="World.cs" />
|
||||
<Content Include="EntityManager.cs" />
|
||||
<Content Include="ComponentManager.cs" />
|
||||
<Content Include="WorldBuilder.cs" />
|
||||
<Content Include="Engine.cs" />
|
||||
<Content Include="attributes\Mutates.cs" />
|
||||
<Content Include="exceptions\IllegalComponentMutationException.cs" />
|
||||
<Content Include="graph\DirectedGraph.cs" />
|
||||
<Content Include="IComponent.cs" />
|
||||
<Content Include="IMessage.cs" />
|
||||
<Content Include="MessageManager.cs" />
|
||||
<Content Include="attributes\Emits.cs" />
|
||||
<Content Include="exceptions\IllegalMessageEmitException.cs" />
|
||||
<Content Include="exceptions\IllegalMessageReadException.cs" />
|
||||
<Content Include="exceptions\EngineCycleException.cs" />
|
||||
<Content Include="exceptions\EngineMutationConflictException.cs" />
|
||||
<Content Include="attributes\Reads.cs" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -9,12 +9,12 @@
|
|||
<PackageReference Include="nunit" Version="3.11.0" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="3.11.0" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
|
||||
<Content Include="EntityTest.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\src\encompass-cs.csproj" />
|
||||
<ProjectReference Include="..\encompass-cs\encompass-cs.csproj" />
|
||||
<Content Include="EngineTest.cs" />
|
||||
<Content Include="DirectedGraphTest.cs" />
|
||||
<Content Include="WorldBuilderTest.cs" />
|
||||
<Content Include="EntityTest.cs" />
|
||||
</ItemGroup>
|
||||
</Project>
|
Loading…
Reference in New Issue