encompass-cs/encompass-cs/encompass-cs.csproj

36 lines
1.5 KiB
XML
Raw Normal View History

2019-12-22 01:58:07 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2019-06-19 18:19:18 +00:00
<PropertyGroup>
2020-03-20 21:13:26 +00:00
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>8.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2019-06-19 18:19:18 +00:00
<RootNamespace>Encompass</RootNamespace>
<PackageId>EncompassECS.Framework</PackageId>
2020-11-16 07:24:37 +00:00
<Version>0.23.0</Version>
2019-06-19 18:19:18 +00:00
<Authors>Evan Hemsley</Authors>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Company>Moonside Games</Company>
<Product>Encompass ECS</Product>
<PackageProjectUrl>https://github.com/encompass-ecs</PackageProjectUrl>
2019-12-06 03:55:17 +00:00
<PackageLicenseUrl />
<Copyright>Evan Hemsley 2020</Copyright>
<Description>Encompass is an engine-agnostic MECS framework to help you code games, or other kinds of simulations.</Description>
2019-06-19 18:19:18 +00:00
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2019-06-20 06:22:47 +00:00
<AssemblyName>EncompassECS.Framework</AssemblyName>
2019-07-13 00:40:00 +00:00
<PackageLicenseFile>LICENSE</PackageLicenseFile>
2020-11-23 00:53:29 +00:00
<Platforms>x64</Platforms>
2019-06-19 18:19:18 +00:00
</PropertyGroup>
2019-07-13 00:40:00 +00:00
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
2019-12-06 03:55:17 +00:00
<PackagePath />
2019-07-13 00:40:00 +00:00
</None>
</ItemGroup>
<ItemGroup>
2019-12-06 03:55:17 +00:00
<PackageReference Include="MoonTools.Core.Graph" Version="1.0.0" />
2019-12-29 05:39:35 +00:00
<PackageReference Include="MoonTools.FastCollections" Version="1.0.0" />
<PackageReference Include="System.Collections.Immutable" Version="1.7.0" />
2020-11-23 00:53:29 +00:00
<PackageReference Include="System.Memory" Version="4.5.3" />
2020-03-20 21:13:26 +00:00
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.0" />
</ItemGroup>
2020-03-18 21:17:35 +00:00
</Project>