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

27 lines
1.1 KiB
XML
Raw Normal View History

2019-06-19 18:19:18 +00:00
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Encompass</RootNamespace>
<PackageId>EncompassECS.Framework</PackageId>
2019-08-02 00:05:53 +00:00
<Version>0.12.0-rc9</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-07-13 00:40:00 +00:00
<PackageLicenseUrl></PackageLicenseUrl>
2019-06-19 18:19:18 +00:00
<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>
2019-06-20 06:22:47 +00:00
<AssemblyName>EncompassECS.Framework</AssemblyName>
2019-07-13 00:40:00 +00:00
<PackageLicenseFile>LICENSE</PackageLicenseFile>
2019-06-19 18:19:18 +00:00
</PropertyGroup>
2019-07-13 00:40:00 +00:00
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
2019-06-20 19:39:43 +00:00
</Project>