2019-12-20 15:03:33 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2020-05-21 12:20:40 +02:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2019-12-20 15:03:33 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Authors>Ellpeck</Authors>
|
2020-04-06 01:42:52 +02:00
|
|
|
|
<Description>Simple data and network handling for (M)LEM (L)ibrary by (E)llpeck for (M)onoGame</Description>
|
2019-12-20 15:03:33 +01:00
|
|
|
|
<PackageTags>monogame ellpeck mlem utility extensions data network serialize</PackageTags>
|
2020-05-21 02:22:55 +02:00
|
|
|
|
<PackageProjectUrl>https://mlem.ellpeck.de/</PackageProjectUrl>
|
2019-12-20 15:03:33 +01:00
|
|
|
|
<RepositoryUrl>https://github.com/Ellpeck/MLEM</RepositoryUrl>
|
|
|
|
|
<PackageLicenseUrl>https://github.com/Ellpeck/MLEM/blob/master/LICENSE</PackageLicenseUrl>
|
2020-04-05 01:35:17 +02:00
|
|
|
|
<PackageIconUrl>https://raw.githubusercontent.com/Ellpeck/MLEM/master/Logo.png</PackageIconUrl>
|
2019-12-20 15:03:33 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-02-26 23:04:17 +01:00
|
|
|
|
<PackageReference Include="Lidgren.Network" Version="1.0.2">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2019-12-20 15:03:33 +01:00
|
|
|
|
<PackageReference Include="MonoGame.Framework.Portable" Version="3.7.1.189">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
2020-02-26 23:04:17 +01:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.2">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2019-12-20 15:03:33 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\MLEM\MLEM.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|