<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>10</LangVersion>
<TargetFrameworks>net6.0;netstandard2.1</TargetFrameworks>
<Description>NosSmooth Game library handling the current game state by responding to packets.</Description>
<RepositoryUrl>https://github.com/Rutherther/NosSmooth/</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<Folder Include="Apis" />
<Folder Include="Events\Players" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Data\NosSmooth.Data.Abstractions\NosSmooth.Data.Abstractions.csproj" />
<ProjectReference Include="..\NosSmooth.Core\NosSmooth.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="6.0.0" />
<PackageReference Include="OneOf" Version="3.0.205" />
</ItemGroup>
</Project>