2019-08-06 14:26:51 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2020-05-21 12:20:40 +02:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2019-08-06 14:26:51 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Authors>Ellpeck</Authors>
|
2021-02-27 16:58:36 +01:00
|
|
|
|
<Description>MLEM Library for Extending MonoGame extension that ties in with MonoGame.Extended and other MonoGame libraries</Description>
|
2019-08-06 14:26:51 +02:00
|
|
|
|
<PackageTags>monogame ellpeck mlem utility extensions monogame.extended extended</PackageTags>
|
2020-05-21 02:22:55 +02:00
|
|
|
|
<PackageProjectUrl>https://mlem.ellpeck.de/</PackageProjectUrl>
|
2019-08-06 14:26:51 +02:00
|
|
|
|
<RepositoryUrl>https://github.com/Ellpeck/MLEM</RepositoryUrl>
|
2021-04-22 19:59:35 +02:00
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
|
<PackageIcon>Logo.png</PackageIcon>
|
2019-08-06 14:26:51 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-04-22 19:59:35 +02:00
|
|
|
|
<ProjectReference Include="..\MLEM\MLEM.csproj" />
|
|
|
|
|
|
2020-10-07 06:45:34 +02:00
|
|
|
|
<PackageReference Include="MonoGame.Extended" Version="3.8.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2020-10-07 06:28:18 +02:00
|
|
|
|
<PackageReference Include="MonoGame.Extended.Tiled" Version="3.8.0">
|
2020-02-26 23:04:17 +01:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2021-02-27 16:58:36 +01:00
|
|
|
|
<PackageReference Include="FontStashSharp.MonoGame" Version="0.9.2">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2021-04-22 19:26:07 +02:00
|
|
|
|
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.0.1641">
|
2019-08-06 15:33:45 +02:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2019-08-06 14:26:51 +02:00
|
|
|
|
</ItemGroup>
|
2019-08-06 16:33:49 +02:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-04-22 19:59:35 +02:00
|
|
|
|
<None Include="../Media/Logo.png" Pack="true" PackagePath=""/>
|
2019-08-06 16:33:49 +02:00
|
|
|
|
</ItemGroup>
|
2019-08-06 14:26:51 +02:00
|
|
|
|
</Project>
|