encompass-cs/src/encompass-cs.csproj

21 lines
764 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Encompass</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Content Include="encompass-cs.sln" />
<Content Include="Entity.cs" />
<Content Include="World.cs" />
<Content Include="EntityManager.cs" />
<Content Include="ComponentManager.cs" />
2019-06-15 00:03:56 +00:00
<Content Include="WorldBuilder.cs" />
2019-06-15 00:51:06 +00:00
<Content Include="Engine.cs" />
2019-06-15 07:39:08 +00:00
<Content Include="attributes\Mutates.cs" />
<Content Include="exceptions\IllegalComponentMutationException.cs" />
<Content Include="graph\DirectedGraph.cs" />
2019-06-16 01:00:16 +00:00
<Content Include="IComponent.cs" />
</ItemGroup>
2019-06-16 01:00:16 +00:00
</Project>