mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-10-31 21:00:51 +01:00
35 lines
No EOL
1.4 KiB
XML
35 lines
No EOL
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Authors>Ellpeck</Authors>
|
|
<Description>Simple data and network handling for MLEM Library for Extending MonoGame</Description>
|
|
<PackageTags>monogame ellpeck mlem utility extensions data network serialize</PackageTags>
|
|
<PackageProjectUrl>https://mlem.ellpeck.de/</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/Ellpeck/MLEM</RepositoryUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageIcon>Logo.png</PackageIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<ProjectReference Include="..\MLEM\MLEM.csproj" />
|
|
|
|
<PackageReference Include="Lidgren.Network" Version="1.0.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.0.1641">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="../Media/Logo.png" Pack="true" PackagePath="" />
|
|
</ItemGroup>
|
|
</Project> |