encompass-cs/src/encompass-cs.csproj

28 lines
1.2 KiB
XML

<?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" />
<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>