34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<LangVersion>8.0</LangVersion>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<RootNamespace>Encompass</RootNamespace>
|
|
<PackageId>EncompassECS.Framework</PackageId>
|
|
<Version>0.20.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 />
|
|
<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>
|
|
<AssemblyName>EncompassECS.Framework</AssemblyName>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE">
|
|
<Pack>True</Pack>
|
|
<PackagePath />
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="MoonTools.Core.Graph" Version="1.0.0" />
|
|
<PackageReference Include="MoonTools.FastCollections" Version="1.0.0" />
|
|
<PackageReference Include="System.Collections.Immutable" Version="1.7.0" />
|
|
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.0" />
|
|
</ItemGroup>
|
|
</Project>
|